diff --git a/mods/default/crafting.lua b/mods/default/crafting.lua index 3ae613c68..3a82e4dc2 100644 --- a/mods/default/crafting.lua +++ b/mods/default/crafting.lua @@ -637,7 +637,7 @@ minetest.register_craft({ minetest.register_craft({ type = 'shapeless', output = 'default:book', - recipe = { 'default:paper', 'default:paper', 'default:paper', 'mobs:leather', + recipe = { 'default:paper', 'default:paper', 'default:paper', 'mcl_mobitems:leather', } }) diff --git a/mods/default/tools.lua b/mods/default/tools.lua index 597aa5663..ce4c5e84b 100644 --- a/mods/default/tools.lua +++ b/mods/default/tools.lua @@ -338,11 +338,11 @@ minetest.register_tool("default:pole", { -- TODO: Damaged itemname = "default:pole" elseif r <= 22 then - itemname = "mobs:leather" + itemname = "mcl_mobitems:leather" elseif r <= 32 then itemname = "3d_armor:boots_leather" elseif r <= 42 then - itemname = "mobs:rotten_flesh" + itemname = "mcl_mobitems:rotten_flesh" elseif r <= 47 then itemname = "default:stick" elseif r <= 52 then @@ -372,7 +372,7 @@ minetest.register_tool("default:pole", { -- TODO: Enchanted and damaged itemname = "default:pole" elseif r == 4 then - itemname = "mobs:spider_eye" + itemname = "mcl_mobitems:spider_eye" -- TODO itemname = "mobs:naming_tag" elseif r == 5 then itemname = "flowers:dandelion" diff --git a/mods/mcl_mobitems/init.lua b/mods/mcl_mobitems/init.lua new file mode 100644 index 000000000..43a35d607 --- /dev/null +++ b/mods/mcl_mobitems/init.lua @@ -0,0 +1,247 @@ +-- TODO: Add special status effects for raw flesh + +minetest.register_craftitem("mcl_mobitems:rotten_flesh", { + description = "Rotten Flesh", + inventory_image = "mcl_mobitems_rotten_flesh.png", + wield_image = "mcl_mobitems_rotten_flesh.png", + -- TODO: Raise to 4 + on_use = minetest.item_eat(1), + groups = { food = 2, eatable = 1 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:mutton", { + description = "Raw Mutton", + inventory_image = "mcl_mobitems_mutton_raw.png", + wield_image = "mcl_mobitems_mutton_raw.png", + on_use = minetest.item_eat(2), + groups = { food = 2, eatable = 2 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:cooked_mutton", { + description = "Cooked Mutton", + inventory_image = "mcl_mobitems_mutton_cooked.png", + wield_image = "mcl_mobitems_mutton_cooked.png", + on_use = minetest.item_eat(6), + groups = { food = 2, eatable = 6 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:beef", { + description = "Raw Beef", + inventory_image = "mcl_mobitems_beef_raw.png", + wield_image = "mcl_mobitems_beef_raw.png", + on_use = minetest.item_eat(3), + groups = { food = 2, eatable = 3 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:cooked_beef", { + description = "Steak", + inventory_image = "mcl_mobitems_beef_cooked.png", + wield_image = "mcl_mobitems_beef_cooked.png", + on_use = minetest.item_eat(8), + groups = { food = 2, eatable = 8 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:chicken", { + description = "Raw Chicken", + inventory_image = "mcl_mobitems_chicken_raw.png", + wield_image = "mcl_mobitems_chicken_raw.png", + on_use = minetest.item_eat(2), + groups = { food = 2, eatable = 2 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:cooked_chicken", { + description = "Cooked Chicken", + inventory_image = "mcl_mobitems_chicken_cooked.png", + wield_image = "mcl_mobitems_chicken_cooked.png", + on_use = minetest.item_eat(6), + groups = { food = 2, eatable = 6 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:porkchop", { + description = "Raw Porkchop", + inventory_image = "mcl_mobitems_porkchop_raw.png", + wield_image = "mcl_mobitems_porkchop.png", + on_use = minetest.item_eat(3), + groups = { food = 2, eatable = 3 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:cooked_porkchop", { + description = "Cooked Porkchop", + inventory_image = "mcl_mobitems_porkchop_cooked.png", + wield_image = "mcl_mobitems_porkchop_cooked.png", + on_use = minetest.item_eat(8), + groups = { food = 2, eatable = 8 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:rabbit", { + description = "Raw Rabbit", + inventory_image = "mcl_mobitems_rabbit_raw.png", + wield_image = "mcl_mobitems_rabbit_raw.png", + on_use = minetest.item_eat(3), + groups = { food = 2, eatable = 3 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:cooked_rabbit", { + description = "Cooked Rabbit", + inventory_image = "mcl_mobitems_rabbit_cooked.png", + wield_image = "mcl_mobitems_rabbit_cooked.png", + on_use = minetest.item_eat(5), + groups = { food = 2, eatable = 5 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:spider_eye", { + description = "Spider Eye", + inventory_image = "mcl_mobitems_spider_eye.png", + wield_image = "mcl_mobitems_spider_eye.png", + on_use = minetest.item_eat(2), + groups = { food = 2, eatable = 2 }, + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:blaze_rod", { + description = "Blaze Rod", + wield_image = "mcl_mobitems_blaze_rod.png", + inventory_image = "mcl_mobitems_blaze_rod.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:blaze_powder", { + description = "Blaze Powder", + wield_image = "mcl_mobitems_blaze_powder.png", + inventory_image = "mcl_mobitems_blaze_powder.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:magma_cream", { + description = "Magma Cream", + wield_image = "mcl_mobitems_magma_cream.png", + inventory_image = "mcl_mobitems_magma_cream.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:ghast_tear", { + description = "Ghast Tear", + wield_image = "mcl_mobitems_ghast_tear.png", + inventory_image = "mcl_mobitems_ghast_tear.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:nether_star", { + description = "Nether Star", + wield_image = "mcl_mobitems_nether_star.png", + inventory_image = "mcl_mobitems_nether_star.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:leather", { + description = "Leather", + wield_image = "mcl_mobitems_leather.png", + inventory_image = "mcl_mobitems_leather.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:feather", { + description = "Feather", + wield_image = "mcl_mobitems_feather.png", + inventory_image = "mcl_mobitems_feather.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:rabbit_hide", { + description = "Rabbit Hide", + wield_image = "mcl_mobitems_rabbit_hide.png", + inventory_image = "mcl_mobitems_rabbit_hide.png", + stack_max = 64, +}) + +minetest.register_craftitem("mcl_mobitems:rabbit_foot", { + description = "Rabbit's Foot", + wield_image = "mcl_mobitems_rabbit_foot.png", + inventory_image = "mcl_mobitems_rabbit_foot.png", + stack_max = 64, +}) + +----------- +-- Crafting +----------- + +minetest.register_craft({ + output = "mcl_mobitems:leather", + recipe = { + { "mcl_mobitems:rabbit_hide", "mcl_mobitems:rabbit_hide" }, + { "mcl_mobitems:rabbit_hide", "mcl_mobitems:rabbit_hide" }, + } +}) + +minetest.register_craft({ + output = "mcl_mobitems:blaze_powder 2", + recipe = {{"mcl_mobitems:blaze_rod"}}, +}) + +minetest.register_craft({ + type = "shapeless", + output = "mcl_mobitems:magma_cream", + recipe = {"mcl_mobitems:blaze_powder", "mesecons_materials:glue"}, +}) + +minetest.register_craft({ + type = "cooking", + output = "mcl_mobitems:cooked_mutton", + recipe = "mcl_mobitems:mutton", + cooktime = 10, +}) + +minetest.register_craft({ + type = "cooking", + output = "mcl_mobitems:cooked_rabbit", + recipe = "mcl_mobitems:rabbit", + cooktime = 10, +}) + +minetest.register_craft({ + type = "cooking", + output = "mcl_mobitems:cooked_chicken", + recipe = "mcl_mobitems:chicken", + cooktime = 10, +}) + +minetest.register_craft({ + type = "cooking", + output = "mcl_mobitems:cooked_beef", + recipe = "mcl_mobitems:beef", + cooktime = 10, +}) + +minetest.register_craft({ + type = "fuel", + recipe = "mcl_mobitems:blaze_rod", + burntime = 120, +}) + +-- Temporary helper recipes +-- TODO: Remove them +minetest.register_craft({ + type = "shapeless", + output = "mcl_mobitems:leather", + recipe = { "default:paper", "default:paper" }, +}) +minetest.register_craft({ + output = "mcl_mobitems:feather 3", + recipe = { + { "flowers:oxeye_daisy" }, + { "flowers:oxeye_daisy" }, + } +}) + + diff --git a/mods/mcl_mobitems/mod.conf b/mods/mcl_mobitems/mod.conf new file mode 100644 index 000000000..bd534323a --- /dev/null +++ b/mods/mcl_mobitems/mod.conf @@ -0,0 +1 @@ +name = mcl_mobitems diff --git a/mods/mobs/textures/mobs_beef_cooked.png b/mods/mcl_mobitems/textures/mcl_mobitems_beef_cooked.png similarity index 100% rename from mods/mobs/textures/mobs_beef_cooked.png rename to mods/mcl_mobitems/textures/mcl_mobitems_beef_cooked.png diff --git a/mods/mobs/textures/mobs_beef_raw.png b/mods/mcl_mobitems/textures/mcl_mobitems_beef_raw.png similarity index 100% rename from mods/mobs/textures/mobs_beef_raw.png rename to mods/mcl_mobitems/textures/mcl_mobitems_beef_raw.png diff --git a/mods/mobs/textures/mobs_blaze_powder.png b/mods/mcl_mobitems/textures/mcl_mobitems_blaze_powder.png similarity index 100% rename from mods/mobs/textures/mobs_blaze_powder.png rename to mods/mcl_mobitems/textures/mcl_mobitems_blaze_powder.png diff --git a/mods/mobs/textures/mobs_blaze_rod.png b/mods/mcl_mobitems/textures/mcl_mobitems_blaze_rod.png similarity index 100% rename from mods/mobs/textures/mobs_blaze_rod.png rename to mods/mcl_mobitems/textures/mcl_mobitems_blaze_rod.png diff --git a/mods/mobs/textures/mobs_bullet.png b/mods/mcl_mobitems/textures/mcl_mobitems_bullet.png similarity index 100% rename from mods/mobs/textures/mobs_bullet.png rename to mods/mcl_mobitems/textures/mcl_mobitems_bullet.png diff --git a/mods/mobs/textures/mobs_chicken_cooked.png b/mods/mcl_mobitems/textures/mcl_mobitems_chicken_cooked.png similarity index 100% rename from mods/mobs/textures/mobs_chicken_cooked.png rename to mods/mcl_mobitems/textures/mcl_mobitems_chicken_cooked.png diff --git a/mods/mobs/textures/mobs_chicken_raw.png b/mods/mcl_mobitems/textures/mcl_mobitems_chicken_raw.png similarity index 100% rename from mods/mobs/textures/mobs_chicken_raw.png rename to mods/mcl_mobitems/textures/mcl_mobitems_chicken_raw.png diff --git a/mods/mobs/textures/mobs_feather.png b/mods/mcl_mobitems/textures/mcl_mobitems_feather.png similarity index 100% rename from mods/mobs/textures/mobs_feather.png rename to mods/mcl_mobitems/textures/mcl_mobitems_feather.png diff --git a/mods/mobs/textures/mobs_fireball.png b/mods/mcl_mobitems/textures/mcl_mobitems_fireball.png similarity index 100% rename from mods/mobs/textures/mobs_fireball.png rename to mods/mcl_mobitems/textures/mcl_mobitems_fireball.png diff --git a/mods/mobs/textures/mobs_ghast_tear.png b/mods/mcl_mobitems/textures/mcl_mobitems_ghast_tear.png similarity index 100% rename from mods/mobs/textures/mobs_ghast_tear.png rename to mods/mcl_mobitems/textures/mcl_mobitems_ghast_tear.png diff --git a/mods/mobs/textures/mobs_leather.png b/mods/mcl_mobitems/textures/mcl_mobitems_leather.png similarity index 100% rename from mods/mobs/textures/mobs_leather.png rename to mods/mcl_mobitems/textures/mcl_mobitems_leather.png diff --git a/mods/mobs/textures/mobs_magma_cream.png b/mods/mcl_mobitems/textures/mcl_mobitems_magma_cream.png similarity index 100% rename from mods/mobs/textures/mobs_magma_cream.png rename to mods/mcl_mobitems/textures/mcl_mobitems_magma_cream.png diff --git a/mods/mobs/textures/mutton_cooked.png b/mods/mcl_mobitems/textures/mcl_mobitems_mutton_cooked.png similarity index 100% rename from mods/mobs/textures/mutton_cooked.png rename to mods/mcl_mobitems/textures/mcl_mobitems_mutton_cooked.png diff --git a/mods/mobs/textures/mutton_raw.png b/mods/mcl_mobitems/textures/mcl_mobitems_mutton_raw.png similarity index 100% rename from mods/mobs/textures/mutton_raw.png rename to mods/mcl_mobitems/textures/mcl_mobitems_mutton_raw.png diff --git a/mods/mobs/textures/mobs_nether_star.png b/mods/mcl_mobitems/textures/mcl_mobitems_nether_star.png similarity index 100% rename from mods/mobs/textures/mobs_nether_star.png rename to mods/mcl_mobitems/textures/mcl_mobitems_nether_star.png diff --git a/mods/mobs/textures/mobs_porkchop_cooked.png b/mods/mcl_mobitems/textures/mcl_mobitems_porkchop_cooked.png similarity index 100% rename from mods/mobs/textures/mobs_porkchop_cooked.png rename to mods/mcl_mobitems/textures/mcl_mobitems_porkchop_cooked.png diff --git a/mods/mobs/textures/mobs_porkchop_raw.png b/mods/mcl_mobitems/textures/mcl_mobitems_porkchop_raw.png similarity index 100% rename from mods/mobs/textures/mobs_porkchop_raw.png rename to mods/mcl_mobitems/textures/mcl_mobitems_porkchop_raw.png diff --git a/mods/mobs/textures/mobs_rabbit_cooked.png b/mods/mcl_mobitems/textures/mcl_mobitems_rabbit_cooked.png similarity index 100% rename from mods/mobs/textures/mobs_rabbit_cooked.png rename to mods/mcl_mobitems/textures/mcl_mobitems_rabbit_cooked.png diff --git a/mods/mobs/textures/mobs_rabbit_foot.png b/mods/mcl_mobitems/textures/mcl_mobitems_rabbit_foot.png similarity index 100% rename from mods/mobs/textures/mobs_rabbit_foot.png rename to mods/mcl_mobitems/textures/mcl_mobitems_rabbit_foot.png diff --git a/mods/mobs/textures/mobs_rabbit_hide.png b/mods/mcl_mobitems/textures/mcl_mobitems_rabbit_hide.png similarity index 100% rename from mods/mobs/textures/mobs_rabbit_hide.png rename to mods/mcl_mobitems/textures/mcl_mobitems_rabbit_hide.png diff --git a/mods/mobs/textures/mobs_rabbit_raw.png b/mods/mcl_mobitems/textures/mcl_mobitems_rabbit_raw.png similarity index 100% rename from mods/mobs/textures/mobs_rabbit_raw.png rename to mods/mcl_mobitems/textures/mcl_mobitems_rabbit_raw.png diff --git a/mods/mobs/textures/rotten_flesh.png b/mods/mcl_mobitems/textures/mcl_mobitems_rotten_flesh.png similarity index 100% rename from mods/mobs/textures/rotten_flesh.png rename to mods/mcl_mobitems/textures/mcl_mobitems_rotten_flesh.png diff --git a/mods/mobs/textures/spider_eye.png b/mods/mcl_mobitems/textures/mcl_mobitems_spider_eye.png similarity index 100% rename from mods/mobs/textures/spider_eye.png rename to mods/mcl_mobitems/textures/mcl_mobitems_spider_eye.png diff --git a/mods/mobs/README.txt b/mods/mobs/README.txt deleted file mode 100644 index a74e6ff0b..000000000 --- a/mods/mobs/README.txt +++ /dev/null @@ -1,42 +0,0 @@ -=== MOBS-MOD for MINETEST-C55 === -by PilzAdam - -Inroduction: -This mod adds some basic hostile and friendly mobs to the game. - -How to install: -Unzip the archive an place it in minetest-base-directory/mods/minetest/ -if you have a windows client or a linux run-in-place client. If you have -a linux system-wide instalation place it in ~/.minetest/mods/minetest/. -If you want to install this mod only in one world create the folder -worldmods/ in your worlddirectory. -For further information or help see: -http://wiki.minetest.com/wiki/Installing_Mods - -How to use the mod: -See https://github.com/PilzAdam/mobs/wiki - -For developers: -The API documentation is moved to https://github.com/PilzAdam/mobs/wiki/API - -License: -Sourcecode: WTFPL (see below) -Grahpics: WTFPL (see below) -Models: WTFPL (by Pavel_S, see below) - -See also: -http://minetest.net/ - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - Version 2, December 2004 - - Copyright (C) 2004 Sam Hocevar - - Everyone is permitted to copy and distribute verbatim or modified - copies of this license document, and changing it is allowed as long - as the name is changed. - - DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/mods/mobs/api.lua b/mods/mobs/api.lua index a21a52888..2da4761ed 100644 --- a/mods/mobs/api.lua +++ b/mods/mobs/api.lua @@ -1,1050 +1,3141 @@ -mobs = {} -function mobs:register_mob(name, def) - minetest.register_entity(name, { - hp_max = def.hp_max, - physical = true, - collisionbox = def.collisionbox, - collide_with_objects = def.collide_with_objects, - visual = def.visual, - visual_size = def.visual_size, - mesh = def.mesh, - textures = def.textures, - makes_footstep_sound = def.makes_footstep_sound, - view_range = def.view_range, - walk_velocity = def.walk_velocity, - run_velocity = def.run_velocity, - damage = def.damage, - light_damage = def.light_damage, - water_damage = def.water_damage, - lava_damage = def.lava_damage, - disable_fall_damage = def.disable_fall_damage, - drops = def.drops, - armor = def.armor, - drawtype = def.drawtype, - on_rightclick = def.on_rightclick, - type = def.type, - hostile_type = def.hostile_type or 1, - attack_type = def.attack_type, - arrow = def.arrow, - shoot_interval = def.shoot_interval, - sounds = def.sounds or nil, - animation = def.animation, - randomsound = def.randomsound, - hit= def.hit, - follow = def.follow, - jump = def.jump or true, - exp_min = def.exp_min or 0, - exp_max = def.exp_max or 0, - walk_chance = def.walk_chance or 10, - attacks_monsters = def.attacks_monsters or false, - group_attack = def.group_attack or false, - step = def.step or 0, - fov = def.fov or 120, - passive = def.passive or false, - recovery_time = def.recovery_time or 0.5, - knock_back = def.knock_back or 2, - pause_timer = def.pause_timer or 30, - rewards = def.rewards or nil, - animaltype = def.animaltype, - stimer = 0, - canfight = 0, - timer = 0, - affolated_timer = 0; - blinktimer = 0, - blinkstatus = true, - env_damage_timer = 0, -- only if state = "attack" - attack = {player = nil, dist = nil}, - state = "stand", - v_start = false, - have_been_hit = 0, - old_y = nil, - lifetimer = 600, - tamed = false, - - do_attack = function(self, player, dist) - if self.state ~= "attack" then - if self.sounds ~= nil and self.sounds.war_cry then - if math.random(0,100) < 90 then - minetest.sound_play(self.sounds.war_cry,{ object = self.object }) - end +-- Mobs Api (1st December 2016) + +mobs = {} +mobs.mod = "redo" + +-- Intllib +local S +if minetest.get_modpath("intllib") then + S = intllib.Getter() +else + S = function(s, a, ...) + if a == nil then + return s + end + a = {a, ...} + return s:gsub("(@?)@(%(?)(%d+)(%)?)", + function(e, o, n, c) + if e == "" then + return a[tonumber(n)] .. (o == "" and c or "") + else + return "@" .. o .. n .. c end - self.state = "attack" - self.attack.player = player - self.attack.dist = dist + end) + end +end +mobs.intllib = S + +-- Invisibility mod check +mobs.invis = {} +if rawget(_G, "invisibility") then + mobs.invis = invisibility +end + +-- Load settings +local damage_enabled = minetest.setting_getbool("enable_damage") +local peaceful_only = minetest.setting_getbool("only_peaceful_mobs") +local disable_blood = minetest.setting_getbool("mobs_disable_blood") +local creative = minetest.setting_getbool("creative_mode") +local spawn_protected = tonumber(minetest.setting_get("mobs_spawn_protected")) or 1 +local remove_far = minetest.setting_getbool("remove_far_mobs") +local difficulty = tonumber(minetest.setting_get("mob_difficulty")) or 1.0 + +-- pathfinding settings +local enable_pathfinding = true +local stuck_timeout = 3 -- how long before mob gets stuck in place and starts searching +local stuck_path_timeout = 10 -- how long will mob follow path before giving up + +-- localize functions +local pi = math.pi +local square = math.sqrt +local sin = math.sin +local cos = math.cos +local abs = math.abs +local min = math.min +local max = math.max +local atann = math.atan +local random = math.random +local floor = math.floor +local atan = function(x) + + if x ~= x then + --error("atan bassed NaN") + --print ("atan based NaN") + return 0 + else + return atann(x) + end +end + +do_attack = function(self, player) + + if self.state ~= "attack" then + + if random(0,100) < 90 + and self.sounds.war_cry then + + minetest.sound_play(self.sounds.war_cry, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + self.state = "attack" + self.attack = player + end +end + +set_velocity = function(self, v) + + local yaw = self.object:getyaw() + self.rotate or 0 + + self.object:setvelocity({ + x = sin(yaw) * -v, + y = self.object:getvelocity().y, + z = cos(yaw) * v + }) +end + +get_velocity = function(self) + + local v = self.object:getvelocity() + + return (v.x * v.x + v.z * v.z) ^ 0.5 +end + +set_animation = function(self, type) + + if not self.animation then + return + end + + self.animation.current = self.animation.current or "" + + self.animation.speed_normal = self.animation.speed_normal or 15 + + if type == "stand" + and self.animation.current ~= "stand" then + + if self.animation.stand_start + and self.animation.stand_end then + + self.object:set_animation({ + x = self.animation.stand_start, + y = self.animation.stand_end}, + (self.animation.speed_stand or self.animation.speed_normal), 0) + + self.animation.current = "stand" + end + + elseif type == "walk" + and self.animation.current ~= "walk" then + + if self.animation.walk_start + and self.animation.walk_end then + + self.object:set_animation({ + x = self.animation.walk_start, + y = self.animation.walk_end}, + (self.animation.speed_walk or self.animation.speed_normal), 0) + + self.animation.current = "walk" + end + + elseif type == "run" + and self.animation.current ~= "run" then + + if self.animation.run_start + and self.animation.run_end then + + self.object:set_animation({ + x = self.animation.run_start, + y = self.animation.run_end}, + (self.animation.speed_run or self.animation.speed_normal), 0) + + self.animation.current = "run" + end + + elseif type == "punch" + and self.animation.current ~= "punch" then + + if self.animation.punch_start + and self.animation.punch_end then + + self.object:set_animation({ + x = self.animation.punch_start, + y = self.animation.punch_end}, + (self.animation.speed_punch or self.animation.speed_normal), 0) + + self.animation.current = "punch" + end + elseif type == "punch2" + and self.animation.current ~= "punch2" then + + if self.animation.punch2_start + and self.animation.punch2_end then + + self.object:set_animation({ + x = self.animation.punch2_start, + y = self.animation.punch2_end}, + (self.animation.speed_punch2 or self.animation.speed_normal), 0) + + self.animation.current = "punch2" + end + elseif type == "shoot" + and self.animation.current ~= "shoot" then + + if self.animation.shoot_start + and self.animation.shoot_end then + + self.object:set_animation({ + x = self.animation.shoot_start, + y = self.animation.shoot_end}, + (self.animation.speed_shoot or self.animation.speed_normal), 0) + + self.animation.current = "shoot" + end + end +end + +-- check line of sight for walkers and swimmers alike +function line_of_sight_water(self, pos1, pos2, stepsize) + + local s, pos_w = minetest.line_of_sight(pos1, pos2, stepsize) + + -- normal walking and flying mobs can see you through air + if s == true then + return true + end + + -- swimming mobs can see you through water + if s == false + and self.fly + and self.fly_in == "default:water_source" then + + local nod = minetest.get_node(pos_w).name + + if nod == "default:water_source" + or nod == "default:water_flowing" then + + return true + end + + -- just incase we have a special node for flying/swimming mobs + elseif s == false + and self.fly + and self.fly_in then + + local nod = minetest.get_node(pos_w).name + + if nod == self.fly_in then + return true + end + end + + return false + +end + +-- particle effects +function effect(pos, amount, texture, min_size, max_size, radius, gravity) + + radius = radius or 2 + min_size = min_size or 0.5 + max_size = max_size or 1 + gravity = gravity or -10 + + minetest.add_particlespawner({ + amount = amount, + time = 0.25, + minpos = pos, + maxpos = pos, + minvel = {x = -radius, y = -radius, z = -radius}, + maxvel = {x = radius, y = radius, z = radius}, + minacc = {x = 0, y = gravity, z = 0}, + maxacc = {x = 0, y = gravity, z = 0}, + minexptime = 0.1, + maxexptime = 1, + minsize = min_size, + maxsize = max_size, + texture = texture, + }) +end + +-- update nametag colour +function update_tag(self) + + local col = "#00FF00" + local qua = self.hp_max / 4 + + if self.health <= floor(qua * 3) then + col = "#FFFF00" + end + + if self.health <= floor(qua * 2) then + col = "#FF6600" + end + + if self.health <= floor(qua) then + col = "#FF0000" + end + + self.object:set_properties({ + nametag = self.nametag, + nametag_color = col + }) + +end + +-- check if mob is dead or only hurt +function check_for_death(self) + + -- has health actually changed? + if self.health == self.old_health then + return + end + + self.old_health = self.health + + -- still got some health? play hurt sound + if self.health > 0 then + + if self.sounds.damage then + + minetest.sound_play(self.sounds.damage, { + object = self.object, + gain = 1.0, + max_hear_distance = self.sounds.distance + }) + end + + -- make sure health isn't higher than max + if self.health > self.hp_max then + self.health = self.hp_max + end + + -- backup nametag so we can show health stats + if not self.nametag2 then + self.nametag2 = self.nametag or "" + end + + self.htimer = 2 + + self.nametag = "health: " .. self.health .. " of " .. self.hp_max + + update_tag(self) + + return false + end + + -- drop items when dead + local obj + local pos = self.object:getpos() + + for n = 1, #self.drops do + + if random(1, self.drops[n].chance) == 1 then + + obj = minetest.add_item(pos, + ItemStack(self.drops[n].name .. " " + .. random(self.drops[n].min, self.drops[n].max))) + + if obj then + + obj:setvelocity({ + x = random(-10, 10) / 9, + y = 5, + z = random(-10, 10) / 9, + }) end - end, - set_affolated = function(self) - local yaw = self.object:getyaw() - self.affolated_timer = math.random(1,4) - self.set_velocity(self, self.run_velocity + math.random(-10,10)) - end, - - set_velocity = function(self, v) - local yaw = self.object:getyaw() - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - local x = math.sin(yaw) * -v - local z = math.cos(yaw) * v - self.object:setvelocity({x =x, y = self.object:getvelocity().y, z =z}) - end, - - give_hit = function(self) - self.hit = self.hit - if self.hit == 1 then - self.object:settexturemod("") - self.hit = 0 - else - self.object:settexturemod("^[brighten") - self.hit = 1 - end - end, - - get_velocity = function(self) - local v = self.object:getvelocity() - return (v.x^2 + v.z^2)^(0.5) - end, - - in_fov = function(self,pos) - local yaw = self.object:getyaw() - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - local vx = math.sin(yaw) - local vz = math.cos(yaw) - local ds = math.sqrt(vx^2 + vz^2) - local ps = math.sqrt(pos.x^2 + pos.z^2) - local d = { x = vx / ds, z = vz / ds } - local p = { x = pos.x / ps, z = pos.z / ps } - - local an = ( d.x * p.x ) + ( d.z * p.z ) - - a = math.deg( math.acos( an ) ) - - if a > ( self.fov / 2 ) then - return false - else + end + end + + -- play death sound + if self.sounds.death then + + minetest.sound_play(self.sounds.death, { + object = self.object, + gain = 1.0, + max_hear_distance = self.sounds.distance + }) + end + + -- execute custom death function + if self.on_die then + + self.on_die(self, pos) + self.object:remove() + + return true + end + + -- default death function + self.object:remove() + + effect(pos, 20, "tnt_smoke.png") + + return true +end + +-- check if within physical map limits (-30911 to 30927) +function within_limits(pos, radius) + + if (pos.x - radius) > -30913 + and (pos.x + radius) < 30928 + and (pos.y - radius) > -30913 + and (pos.y + radius) < 30928 + and (pos.z - radius) > -30913 + and (pos.z + radius) < 30928 then + return true -- within limits + end + + return false -- beyond limits +end + +-- is mob facing a cliff +local function is_at_cliff(self) + + if self.fear_height == 0 then -- 0 for no falling protection! + return false + end + + local yaw = self.object:getyaw() + local dir_x = -sin(yaw) * (self.collisionbox[4] + 0.5) + local dir_z = cos(yaw) * (self.collisionbox[4] + 0.5) + local pos = self.object:getpos() + local ypos = pos.y + self.collisionbox[2] -- just above floor + + if minetest.line_of_sight( + {x = pos.x + dir_x, y = ypos, z = pos.z + dir_z}, + {x = pos.x + dir_x, y = ypos - self.fear_height, z = pos.z + dir_z} + , 1) then + + return true + end + + return false +end + +-- get node but use fallback for nil or unknown +local function node_ok(pos, fallback) + + fallback = fallback or "default:dirt" + + local node = minetest.get_node_or_nil(pos) + + if not node then + return minetest.registered_nodes[fallback] + end + + if minetest.registered_nodes[node.name] then + return node + end + + return minetest.registered_nodes[fallback] +end + +-- environmental damage (water, lava, fire, light) +do_env_damage = function(self) + + -- feed/tame text timer (so mob 'full' messages dont spam chat) + if self.htimer > 0 then + self.htimer = self.htimer - 1 + end + + -- reset nametag after showing health stats + if self.htimer < 1 and self.nametag2 then + + self.nametag = self.nametag2 + self.nametag2 = nil + + update_tag(self) + end + + local pos = self.object:getpos() + + self.time_of_day = minetest.get_timeofday() + + -- remove mob if beyond map limits + if not within_limits(pos, 0) then + self.object:remove() + return + end + + -- daylight above ground + if self.light_damage ~= 0 + and pos.y > 0 + and self.time_of_day > 0.2 + and self.time_of_day < 0.8 + and (minetest.get_node_light(pos) or 0) > 12 then + + self.health = self.health - self.light_damage + + effect(pos, 5, "tnt_smoke.png") + end + + -- what is mob standing in? + pos.y = pos.y + self.collisionbox[2] + 0.1 -- foot level + self.standing_in = node_ok(pos, "air").name + --print ("standing in " .. self.standing_in) + + if self.water_damage ~= 0 + or self.lava_damage ~= 0 then + + local nodef = minetest.registered_nodes[self.standing_in] + + pos.y = pos.y + 1 + + -- water + if self.water_damage ~= 0 + and nodef.groups.water then + + self.health = self.health - self.water_damage + + effect(pos, 5, "bubble.png") + end + + -- lava or fire + if self.lava_damage ~= 0 + and (nodef.groups.lava + or self.standing_in == "fire:basic_flame" + or self.standing_in == "fire:permanent_flame") then + + self.health = self.health - self.lava_damage + + effect(pos, 5, "fire_basic_flame.png") + end + end + + check_for_death(self) +end + +-- jump if facing a solid node (not fences or gates) +do_jump = function(self) + + if self.fly + or self.child then + return + end + + local pos = self.object:getpos() + + -- what is mob standing on? + pos.y = pos.y + self.collisionbox[2] - 0.2 + + local nod = node_ok(pos) + +--print ("standing on:", nod.name, pos.y) + + if minetest.registered_nodes[nod.name].walkable == false then + return + end + + -- where is front + local yaw = self.object:getyaw() + local dir_x = -sin(yaw) * (self.collisionbox[4] + 0.5) + local dir_z = cos(yaw) * (self.collisionbox[4] + 0.5) + + -- what is in front of mob? + local nod = node_ok({ + x = pos.x + dir_x, + y = pos.y + 0.5, + z = pos.z + dir_z + }) + + -- thin blocks that do not need to be jumped + if nod.name == "default:snow" then + return + end + +--print ("in front:", nod.name, pos.y + 0.5) + + if (minetest.registered_items[nod.name].walkable + and not nod.name:find("fence") + and not nod.name:find("gate")) + or self.walk_chance == 0 then + + local v = self.object:getvelocity() + + v.y = self.jump_height + 1 + + self.object:setvelocity(v) + + if self.sounds.jump then + + minetest.sound_play(self.sounds.jump, { + object = self.object, + gain = 1.0, + max_hear_distance = self.sounds.distance + }) + end + end +end + +-- this is a faster way to calculate distance +local get_distance = function(a, b) + + local x, y, z = a.x - b.x, a.y - b.y, a.z - b.z + + return square(x * x + y * y + z * z) +end + +-- blast damage to entities nearby (modified from TNT mod) +function entity_physics(pos, radius) + + radius = radius * 2 + + local objs = minetest.get_objects_inside_radius(pos, radius) + local obj_pos, dist + + for n = 1, #objs do + + obj_pos = objs[n]:getpos() + + dist = get_distance(pos, obj_pos) + if dist < 1 then dist = 1 end + + local damage = floor((4 / dist) * radius) + local ent = objs[n]:get_luaentity() + + if objs[n]:is_player() then + objs[n]:set_hp(objs[n]:get_hp() - damage) + + else --if ent.health then + + objs[n]:punch(objs[n], 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = damage}, + }, nil) + + end + end +end + +-- should mob follow what I'm holding ? +function follow_holding(self, clicker) + + if mobs.invis[clicker:get_player_name()] then + return false + end + + local item = clicker:get_wielded_item() + local t = type(self.follow) + + -- single item + if t == "string" + and item:get_name() == self.follow then + return true + + -- multiple items + elseif t == "table" then + + for no = 1, #self.follow do + + if self.follow[no] == item:get_name() then return true end - end, - - set_animation = function(self, type) - if not self.animation then + end + end + + return false +end + +-- find two animals of same type and breed if nearby and horny +local function breed(self) + + -- child takes 240 seconds before growing into adult + if self.child == true then + + self.hornytimer = self.hornytimer + 1 + + if self.hornytimer > 240 then + + self.child = false + self.hornytimer = 0 + + self.object:set_properties({ + textures = self.base_texture, + mesh = self.base_mesh, + visual_size = self.base_size, + collisionbox = self.base_colbox, + }) + + -- jump when fully grown so not to fall into ground + self.object:setvelocity({ + x = 0, + y = self.jump_height, + z = 0 + }) + end + + return + end + + -- horny animal can mate for 40 seconds, + -- afterwards horny animal cannot mate again for 200 seconds + if self.horny == true + and self.hornytimer < 240 then + + self.hornytimer = self.hornytimer + 1 + + if self.hornytimer >= 240 then + self.hornytimer = 0 + self.horny = false + end + end + + -- find another same animal who is also horny and mate if close enough + if self.horny == true + and self.hornytimer <= 40 then + + local pos = self.object:getpos() + + effect({x = pos.x, y = pos.y + 1, z = pos.z}, 8, "heart.png", 3, 4, 1, 0.1) + + local objs = minetest.get_objects_inside_radius(pos, 3) + local num = 0 + local ent = nil + + for n = 1, #objs do + + ent = objs[n]:get_luaentity() + + -- check for same animal with different colour + local canmate = false + + if ent then + + if ent.name == self.name then + canmate = true + else + local entname = string.split(ent.name,":") + local selfname = string.split(self.name,":") + + if entname[1] == selfname[1] then + entname = string.split(entname[2],"_") + selfname = string.split(selfname[2],"_") + + if entname[1] == selfname[1] then + canmate = true + end + end + end + end + + if ent + and canmate == true + and ent.horny == true + and ent.hornytimer <= 40 then + num = num + 1 + end + + -- found your mate? then have a baby + if num > 1 then + + self.hornytimer = 41 + ent.hornytimer = 41 + + -- spawn baby + minetest.after(5, function() + + local mob = minetest.add_entity(pos, self.name) + local ent2 = mob:get_luaentity() + local textures = self.base_texture + + if self.child_texture then + textures = self.child_texture[1] + end + + mob:set_properties({ + textures = textures, + visual_size = { + x = self.base_size.x * .5, + y = self.base_size.y * .5, + }, + collisionbox = { + self.base_colbox[1] * .5, + self.base_colbox[2] * .5, + self.base_colbox[3] * .5, + self.base_colbox[4] * .5, + self.base_colbox[5] * .5, + self.base_colbox[6] * .5, + }, + }) + ent2.child = true + ent2.tamed = true + ent2.owner = self.owner + end) + + num = 0 + + break + end + end + end +end + +-- find and replace what mob is looking for (grass, wheat etc.) +function replace(self, pos) + + if self.replace_rate + and self.child == false + and random(1, self.replace_rate) == 1 then + + local pos = self.object:getpos() + + pos.y = pos.y + self.replace_offset + +-- print ("replace node = ".. minetest.get_node(pos).name, pos.y) + + if self.replace_what + and self.replace_with + and self.object:getvelocity().y == 0 + and #minetest.find_nodes_in_area(pos, pos, self.replace_what) > 0 then + + minetest.set_node(pos, {name = self.replace_with}) + + -- when cow/sheep eats grass, replace wool and milk + if self.gotten == true then + self.gotten = false + self.object:set_properties(self) + end + end + end +end + +-- check if daytime and also if mob is docile during daylight hours +function day_docile(self) + + if self.docile_by_day == false then + + return false + + elseif self.docile_by_day == true + and self.time_of_day > 0.2 + and self.time_of_day < 0.8 then + + return true + end +end + +-- path finding and smart mob routine by rnd +function smart_mobs(self, s, p, dist, dtime) + + local s1 = self.path.lastpos + + -- is it becoming stuck? + if abs(s1.x - s.x) + abs(s1.z - s.z) < 1.5 then + self.path.stuck_timer = self.path.stuck_timer + dtime + else + self.path.stuck_timer = 0 + end + + self.path.lastpos = {x = s.x, y = s.y, z = s.z} + + -- im stuck, search for path + if (self.path.stuck_timer > stuck_timeout and not self.path.following) + or (self.path.stuck_timer > stuck_path_timeout + and self.path.following) then + + self.path.stuck_timer = 0 + + -- lets try find a path, first take care of positions + -- since pathfinder is very sensitive + local sheight = self.collisionbox[5] - self.collisionbox[2] + + -- round position to center of node to avoid stuck in walls + -- also adjust height for player models! + s.x = floor(s.x + 0.5) + s.y = floor(s.y + 0.5) - sheight + s.z = floor(s.z + 0.5) + + local ssight, sground = minetest.line_of_sight(s, { + x = s.x, y = s.y - 4, z = s.z}, 1) + + -- determine node above ground + if not ssight then + s.y = sground.y + 1 + end + + local p1 = self.attack:getpos() + + p1.x = floor(p1.x + 0.5) + p1.y = floor(p1.y + 0.5) + p1.z = floor(p1.z + 0.5) + + self.path.way = minetest.find_path(s, p1, 16, 2, 6, "Dijkstra") --"A*_noprefetch") + + -- attempt to unstick mob that is "daydreaming" + self.object:setpos({ + x = s.x + 0.1 * (random() * 2 - 1), + y = s.y + 1, + z = s.z + 0.1 * (random() * 2 - 1) + }) + + self.state = "" + do_attack(self, self.attack) + + -- no path found, try something else + if not self.path.way then + + self.path.following = false + + -- lets make way by digging/building if not accessible + if self.pathfinding == 2 then + + -- add block and remove one block above so + -- there is room to jump if needed + if s.y < p1.y then + + if not minetest.is_protected(s, "") then + minetest.set_node(s, {name = "default:dirt"}) + end + + local sheight = math.ceil(self.collisionbox[5]) + 1 + + -- assume mob is 2 blocks high so it digs above its head + s.y = s.y + sheight + + if not minetest.is_protected(s, "") then + + local node1 = minetest.get_node(s).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.set_node(s, {name = "air"}) + minetest.add_item(s, ItemStack(node1)) + end + end + + s.y = s.y - sheight + self.object:setpos({x = s.x, y = s.y + 2, z = s.z}) + + else -- dig 2 blocks to make door toward player direction + + local yaw1 = self.object:getyaw() + pi / 2 + + local p1 = { + x = s.x + cos(yaw1), + y = s.y, + z = s.z + sin(yaw1) + } + + if not minetest.is_protected(p1, "") then + + local node1 = minetest.get_node(p1).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.add_item(p1, ItemStack(node1)) + minetest.set_node(p1, {name = "air"}) + end + + p1.y = p1.y + 1 + node1 = minetest.get_node(p1).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.add_item(p1, ItemStack(node1)) + minetest.set_node(p1, {name = "air"}) + end + + end + end + end + + -- will try again in 2 second + self.path.stuck_timer = stuck_timeout - 2 + + -- frustration! cant find the damn path :( + if self.sounds.random then + + minetest.sound_play(self.sounds.random, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + else + + -- yay i found path + if self.sounds.attack then + + set_velocity(self, self.walk_velocity) + + minetest.sound_play(self.sounds.attack, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + -- follow path now that it has it + self.path.following = true + end + end +end + +-- specific attacks +local specific_attack = function(list, what) + + -- no list so attack default (player, animals etc.) + if list == nil then + return true + end + + -- is found entity on list to attack? + for no = 1, #list do + + if list[no] == what then + return true + end + end + + return false +end + +-- monster find someone to attack +local monster_attack = function(self) + + if self.type ~= "monster" + or not damage_enabled + or self.state == "attack" + or day_docile(self) then + return + end + + local s = self.object:getpos() + local p, sp, dist + local player, obj, min_player + local type, name = "", "" + local min_dist = self.view_range + 1 + local objs = minetest.get_objects_inside_radius(s, self.view_range) + + for n = 1, #objs do + + if objs[n]:is_player() then + + if mobs.invis[ objs[n]:get_player_name() ] then + + type = "" + else + player = objs[n] + type = "player" + name = "player" + end + else + obj = objs[n]:get_luaentity() + + if obj then + player = obj.object + type = obj.type + name = obj.name or "" + end + end + + -- find specific mob to attack, failing that attack player/npc/animal + if specific_attack(self.specific_attack, name) + and (type == "player" or type == "npc" + or (type == "animal" and self.attack_animals == true)) then + + s = self.object:getpos() + p = player:getpos() + sp = s + + -- aim higher to make looking up hills more realistic + p.y = p.y + 1 + sp.y = sp.y + 1 + + dist = get_distance(p, s) + + if dist < self.view_range then + -- field of view check goes here + + -- choose closest player to attack + if line_of_sight_water(self, sp, p, 2) == true + and dist < min_dist then + min_dist = dist + min_player = player + end + end + end + end + + -- attack player + if min_player then + do_attack(self, min_player) + end +end + +-- npc, find closest monster to attack +local npc_attack = function(self) + + if self.type ~= "npc" + or not self.attacks_monsters + or self.state == "attack" then + return + end + + local s = self.object:getpos() + local min_dist = self.view_range + 1 + local obj, min_player = nil, nil + local objs = minetest.get_objects_inside_radius(s, self.view_range) + + for n = 1, #objs do + + obj = objs[n]:get_luaentity() + + if obj + and obj.type == "monster" then + + p = obj.object:getpos() + + dist = get_distance(p, s) + + if dist < min_dist then + min_dist = dist + min_player = obj.object + end + end + end + + if min_player then + do_attack(self, min_player) + end +end + +-- follow player if owner or holding item, if fish outta water then flop +local follow_flop = function(self) + + -- find player to follow + if (self.follow ~= "" + or self.order == "follow") + and not self.following + and self.state ~= "attack" + and self.state ~= "runaway" then + + local s = self.object:getpos() + local players = minetest.get_connected_players() + + for n = 1, #players do + + if get_distance(players[n]:getpos(), s) < self.view_range + and not mobs.invis[ players[n]:get_player_name() ] then + + self.following = players[n] + + break + end + end + end + + if self.type == "npc" + and self.order == "follow" + and self.state ~= "attack" + and self.owner ~= "" then + + -- npc stop following player if not owner + if self.following + and self.owner + and self.owner ~= self.following:get_player_name() then + self.following = nil + end + else + -- stop following player if not holding specific item + if self.following + and self.following:is_player() + and follow_holding(self, self.following) == false then + self.following = nil + end + + end + + -- follow that thing + if self.following then + + local s = self.object:getpos() + local p + + if self.following:is_player() then + + p = self.following:getpos() + + elseif self.following.object then + + p = self.following.object:getpos() + end + + if p then + + local dist = get_distance(p, s) + + -- dont follow if out of range + if dist > self.view_range then + self.following = nil + else + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + local yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + + -- anyone but standing npc's can move along + if dist > self.reach + and self.order ~= "stand" then + + if (self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0) + or (self.object:getvelocity().y == 0 + and self.jump_chance > 0) then + + do_jump(self) + end + + set_velocity(self, self.walk_velocity) + + if self.walk_chance ~= 0 then + set_animation(self, "walk") + end + else + set_velocity(self, 0) + set_animation(self, "stand") + end + return end - if not self.animation.current then - self.animation.current = "" - end - if type == "die" and self.animation.current ~= "die" then - if self.animation.stand_start - and self.animation.stand_end - and self.animation.speed_normal - then - self.object:set_animation( - {x = self.animation.stand_start,y = self.animation.stand_end}, - self.animation.speed_normal, 0 - ) - self.animation.current = "die" - end - elseif type == "stand" and self.animation.current ~= "stand" then - if - self.animation.stand_start - and self.animation.stand_end - and self.animation.speed_normal - then - self.object:set_animation( - {x = self.animation.stand_start,y = self.animation.stand_end}, - self.animation.speed_normal, 0 - ) - self.animation.current = "stand" - end - elseif type == "walk" and self.animation.current ~= "walk" then - if - self.animation.walk_start - and self.animation.walk_end - and self.animation.speed_normal - then - self.object:set_animation( - {x = self.animation.walk_start,y = self.animation.walk_end}, - self.animation.speed_normal, 0 - ) - self.animation.current = "walk" - end - elseif type == "run" and self.animation.current ~= "run" then - if - self.animation.run_start - and self.animation.run_end - and self.animation.speed_run - then - if self.animation.run_start ~= nil then - self.object:set_animation( - {x = self.animation.run_start,y = self.animation.run_end}, - self.animation.speed_run, 0 - ) - else - self.object:set_animation( - {x = self.animation.walk_start,y = self.animation.walk_end}, - self.animation.speed_run, 0 - ) - end - self.animation.current = "run" - end - elseif type == "punch" and self.animation.current ~= "punch" then - if - self.animation.punch_start - and self.animation.punch_end - and self.animation.speed_normal - then - self.object:set_animation( - {x = self.animation.punch_start,y = self.animation.punch_end}, - self.animation.speed_normal, 0 - ) - self.animation.current = "punch" - end - end - end, - - on_step = function(self, dtime) - - if self.lifetimer < 600 and self.lifetimer > 590 and self.state == "stand" then - self.set_velocity(self, self.walk_velocity) - self.state = "walk" - self.set_animation(self, "walk") - self.pause_timer = 25; - elseif type == "animal" then - if math.random(1, 5) == 1 and self.pause_timer == 0 then - self.set_velocity(self, self.walk_velocity) - self.state = "walk" - self.set_animation(self, "walk") - else - self.set_velocity(self, 0) - self:set_animation("stand") - self.pause_timer = 25; - end - - end - - if self.pause_timer > 0 then - self.pause_timer = self.pause_timer - dtime - end - - if self.type == "monster" and minetest.setting_getbool("only_peaceful") then - self.object:remove() - end - - self.affolated_timer = self.affolated_timer - dtime - if self.affolated_timer <= 0 and self.type == "animal" then - for _,player in pairs(minetest.get_connected_players()) do - local s = self.object:getpos() - local p = player:getpos() - local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.8 - if self.view_range and dist < self.view_range then - self.set_velocity(self, self.walk_velocity) - self.state = "walk" - self.set_animation(self, "walk") - self.following = player + end + end + + -- water swimmers flop when on land + if self.fly + and self.fly_in == "default:water_source" + and self.standing_in ~= self.fly_in then + + self.state = "flop" + self.object:setvelocity({x = 0, y = -5, z = 0}) + + set_animation(self, "stand") + + return + end +end + +-- dogshoot attack switch and counter function +local dogswitch = function(self, dtime) + + -- switch mode not activated + if not self.dogshoot_switch + or not dtime then + return 0 + end + + self.dogshoot_count = self.dogshoot_count + dtime + + if self.dogshoot_count > self.dogshoot_count_max then + + self.dogshoot_count = 0 + + if self.dogshoot_switch == 1 then + self.dogshoot_switch = 2 + else + self.dogshoot_switch = 1 + end + end + + return self.dogshoot_switch +end + +-- execute current state (stand, walk, run, attacks) +local do_states = function(self, dtime) + + local yaw = 0 + + if self.state == "stand" then + + if random(1, 4) == 1 then + + local lp = nil + local s = self.object:getpos() + + if self.type == "npc" then + + local objs = minetest.get_objects_inside_radius(s, 3) + + for n = 1, #objs do + + if objs[n]:is_player() then + lp = objs[n]:getpos() break end end end - - if self.hostile_type == 1 then - self.canfight = 1 - elseif self.hostile_type == 2 then - local pos = self.object:getpos() - local n = minetest.get_node(pos) - if minetest.get_timeofday() > 0.2 and minetest.get_timeofday() < 0.8 and self.have_been_hit == 0 then - self.canfight = 0 - else - self.canfight = 1 - end - elseif self.hostile_type == 3 then - if self.have_been_hit == 0 then - self.canfight = 0 - else - self.canfight = 1 - end - end - -- FIND SOMEONE TO ATTACK - if self.type == "monster" and self.state ~= "attack" and self.canfight == 1 then - - local s = self.object:getpos() - local inradius = minetest.get_objects_inside_radius(s,self.view_range) - local player = nil - local type = nil - for _,oir in ipairs(inradius) do - if oir:is_player() then - player = oir - type = "player" - else - local obj = oir:get_luaentity() - if obj then - player = obj.object - type = obj.type - end - end - - if type == "player" or type == "npc" then - local s = self.object:getpos() - local p = player:getpos() - local sp = s - p.y = p.y - 1 - local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 - if dist < self.view_range and self.in_fov(self,p) then - self.do_attack(self,player,dist) - end - end - end - - end - - -- NPC FIND A MONSTER TO ATTACK - if self.type == "npc" and self.attacks_monsters and self.state ~= "attack" then - local s = self.object:getpos() - local inradius = minetest.get_objects_inside_radius(s,self.view_range) - for _, oir in pairs(inradius) do - local obj = oir:get_luaentity() - if obj then - if obj.type == "monster" then - -- attack monster - local p = obj.object:getpos() - local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 - self.do_attack(self,obj.object,dist) - break - end - end + -- look at any players nearby, otherwise turn randomly + if lp then + + local vec = { + x = lp.x - s.x, + y = lp.y - s.y, + z = lp.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if lp.x > s.x then + yaw = yaw + pi end + else + yaw = (random(0, 360) - 180) / 180 * pi end - - self.lifetimer = self.lifetimer - dtime - if self.lifetimer <= 0 and not self.tamed and self.type ~= "npc" then - local player_count = 0 - for _,obj in ipairs(minetest.get_objects_inside_radius(self.object:getpos(), 12)) do - if obj:is_player() then - player_count = player_count + 1 + + self.object:setyaw(yaw) + end + + set_velocity(self, 0) + set_animation(self, "stand") + + -- npc's ordered to stand stay standing + if self.type ~= "npc" + or self.order ~= "stand" then + + if self.walk_chance ~= 0 + and random(1, 100) <= self.walk_chance + and is_at_cliff(self) == false then + + set_velocity(self, self.walk_velocity) + self.state = "walk" + set_animation(self, "walk") + end + end + + elseif self.state == "walk" then + + local s = self.object:getpos() + local lp = nil + + -- is there something I need to avoid? + if self.water_damage > 0 + and self.lava_damage > 0 then + + lp = minetest.find_node_near(s, 1, {"group:water", "group:lava"}) + + elseif self.water_damage > 0 then + + lp = minetest.find_node_near(s, 1, {"group:water"}) + + elseif self.lava_damage > 0 then + + lp = minetest.find_node_near(s, 1, {"group:lava"}) + end + + -- if something then avoid + if lp then + + local vec = { + x = lp.x - s.x, + y = lp.y - s.y, + z = lp.z - s.z + } + + yaw = atan(vec.z / vec.x) + 3 * pi / 2 - self.rotate + + if lp.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + + -- otherwise randomly turn + elseif random(1, 100) <= 30 then + + local yaw = (random(0, 360) - 180) / 180 * pi + + self.object:setyaw(yaw) + end + + -- stand for great fall in front + local temp_is_cliff = is_at_cliff(self) + + -- jump when walking comes to a halt + if temp_is_cliff == false + and self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0 then + + do_jump(self) + end + + if temp_is_cliff + or random(1, 100) <= 30 then + + set_velocity(self, 0) + self.state = "stand" + set_animation(self, "stand") + else + set_velocity(self, self.walk_velocity) + set_animation(self, "walk") + end + + -- runaway when punched + elseif self.state == "runaway" then + + self.runaway_timer = self.runaway_timer + 1 + + -- stop after 5 seconds or when at cliff + if self.runaway_timer > 5 + or is_at_cliff(self) then + self.runaway_timer = 0 + set_velocity(self, 0) + self.state = "stand" + set_animation(self, "stand") + else + set_velocity(self, self.run_velocity) + set_animation(self, "walk") + end + + -- jump when walking comes to a halt + if self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0 then + + do_jump(self) + end + + -- attack routines (explode, dogfight, shoot, dogshoot) + elseif self.state == "attack" then + + -- calculate distance from mob and enemy + local s = self.object:getpos() + local p = self.attack:getpos() or s + local dist = get_distance(p, s) + + -- stop attacking if player or out of range + if dist > self.view_range + or not self.attack + or not self.attack:getpos() + or self.attack:get_hp() <= 0 + or (self.attack:is_player() and mobs.invis[ self.attack:get_player_name() ]) then + + --print(" ** stop attacking **", dist, self.view_range) + self.state = "stand" + set_velocity(self, 0) + set_animation(self, "stand") + self.attack = nil + self.v_start = false + self.timer = 0 + self.blinktimer = 0 + + return + end + + if self.attack_type == "explode" then + + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + yaw = atan(vec.z / vec.x) + pi / 2 - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + + if dist > self.reach then + + if not self.v_start then + + self.v_start = true + set_velocity(self, self.run_velocity) + self.timer = 0 + self.blinktimer = 0 + else + self.timer = 0 + self.blinktimer = 0 + + if get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0 then + + do_jump(self) end + + set_velocity(self, self.run_velocity) end - if player_count == 0 and self.state ~= "attack" then + + set_animation(self, "run") + else + set_velocity(self, 0) + set_animation(self, "punch") + + self.timer = self.timer + dtime + self.blinktimer = (self.blinktimer or 0) + dtime + + if self.blinktimer > 0.2 then + + self.blinktimer = 0 + + if self.blinkstatus then + self.object:settexturemod("") + else + self.object:settexturemod("^[brighten") + end + + self.blinkstatus = not self.blinkstatus + end + + if self.timer > 3 then + local pos = self.object:getpos() - local hp = self.object:get_hp() - minetest.log("action", "A mob with " .. tostring(hp) .. " HP despawned at " .. minetest.pos_to_string(pos) .. ".") + local radius = self.explosion_radius or 1 + + -- hurt player/mobs caught in blast area + entity_physics(pos, radius) + + -- dont damage anything if area protected or next to water + if minetest.find_node_near(pos, 1, {"group:water"}) + or minetest.is_protected(pos, "") then + + if self.sounds.explode then + + minetest.sound_play(self.sounds.explode, { + object = self.object, + gain = 1.0, + max_hear_distance = 16 + }) + end + + self.object:remove() + + effect(pos, 15, "tnt_smoke.png") + + return + end + + pos.y = pos.y - 1 + + mobs:explosion(pos, radius, 0, 1, self.sounds.explode) + self.object:remove() + return end end - - if self.object:getvelocity().y > 0.1 then - local yaw = self.object:getyaw() - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - local x = math.sin(yaw) * -2 - local z = math.cos(yaw) * 2 - if minetest.get_item_group(minetest.get_node(self.object:getpos()).name, "water") ~= 0 then - self.object:setacceleration({x = x, y = 1.5, z = z}) + + elseif self.attack_type == "dogfight" + or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 2) + or (self.attack_type == "dogshoot" and dist <= self.reach and dogswitch(self) == 0) then + + if self.fly + and dist > self.reach then + + local nod = node_ok(s) + local p1 = s + local me_y = floor(p1.y) + local p2 = p + local p_y = floor(p2.y + 1) + local v = self.object:getvelocity() + + if nod.name == self.fly_in then + + if me_y < p_y then + + self.object:setvelocity({ + x = v.x, + y = 1 * self.walk_velocity, + z = v.z + }) + + elseif me_y > p_y then + + self.object:setvelocity({ + x = v.x, + y = -1 * self.walk_velocity, + z = v.z + }) + end else - self.object:setacceleration({x = x, y = -10, z = z}) - end - else - if minetest.get_item_group(minetest.get_node(self.object:getpos()).name, "water") ~= 0 then - self.object:setacceleration({x = 0, y = 1.5, z = 0}) - else - self.object:setacceleration({x = 0, y = -10, z = 0}) - end - end - - - if self.disable_fall_damage and self.object:getvelocity().y == 0 then - if not self.old_y then - self.old_y = self.object:getpos().y - else - local d = self.old_y - self.object:getpos().y - if d > 5 then - local damage = d-5 - self.object:set_hp(self.object:get_hp()-damage) - minetest.sound_play("monster_damage", {object = self.object, gain = 0.25}) - if self.object:get_hp() == 0 then - minetest.sound_play("monster_death", {object = self.object, gain = 0.4}) - self.object:remove() - end - end - self.old_y = self.object:getpos().y - end - end - - self.timer = self.timer + dtime - if self.state ~= "attack" then - if self.timer < 1.0 then return end - self.timer = 0 - end - - if self.randomsound and math.random(1, 200) <= 1 then - minetest.sound_play(self.randomsound, {object = self.object}) - end - - local do_env_damage = function(self) - local pos = self.object:getpos() - local n = minetest.get_node(pos) - self.give_hit(self) - if self.light_damage and self.light_damage ~= 0 - and pos.y > 0 - and minetest.get_node_light(pos) - and minetest.get_node_light(pos) > 10 - and minetest.get_timeofday() > 0.2 - and minetest.get_timeofday() < 0.8 - then - self.object:set_hp(self.object:get_hp()-self.light_damage) - minetest.sound_play("zombie_sun_damage", {object = self.object, gain = 0.25}) - if self.object:get_hp() <= 0 then - minetest.sound_play("monster_death", {object = self.object, gain = 0.4}) - self.object:remove() + if me_y < p_y then + + self.object:setvelocity({ + x = v.x, + y = 0.01, + z = v.z + }) + + elseif me_y > p_y then + + self.object:setvelocity({ + x = v.x, + y = -0.01, + z = v.z + }) end end - - if self.water_damage and self.water_damage ~= 0 and - minetest.get_item_group(n.name, "water") ~= 0 - then - self.object:set_hp(self.object:get_hp()-self.water_damage) - minetest.sound_play("monster_damage", {object = self.object, gain = 0.25}) - if self.object:get_hp() <= 0 then - minetest.sound_play("monster_death", {object = self.object, gain = 0.4}) - self.object:remove() - end - end - - if self.lava_damage and self.lava_damage ~= 0 and - minetest.get_item_group(n.name, "lava") ~= 0 - then - self.object:set_hp(self.object:get_hp()-self.lava_damage) - minetest.sound_play("monster_damage", {object = self.object, gain = 0.25}) - if self.object:get_hp() <= 0 then - minetest.sound_play("monster_death", {object = self.object, gain = 0.4}) - self.object:remove() - end - end - self.give_hit(self) - end - - self.env_damage_timer = self.env_damage_timer + dtime - if self.state == "attack" and self.env_damage_timer > 1 then - self.env_damage_timer = 0 - do_env_damage(self) - elseif self.state ~= "attack" then - do_env_damage(self) + end - if self.follow ~= "" and not self.following then - for _,player in pairs(minetest.get_connected_players()) do - local s = self.object:getpos() - local p = player:getpos() - local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 - if self.view_range and dist < self.view_range then - self.following = player - break + -- rnd: new movement direction + if self.path.following + and self.path.way + and self.attack_type ~= "dogshoot" then + + -- no paths longer than 50 + if #self.path.way > 50 + or dist < self.reach then + self.path.following = false + return + end + + local p1 = self.path.way[1] + + if not p1 then + self.path.following = false + return + end + + if abs(p1.x-s.x) + abs(p1.z - s.z) < 0.6 then + -- reached waypoint, remove it from queue + table.remove(self.path.way, 1) + end + + -- set new temporary target + p = {x = p1.x, y = p1.y, z = p1.z} + end + + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + + -- move towards enemy if beyond mob reach + if dist > self.reach then + + -- path finding by rnd + if self.pathfinding -- only if mob has pathfinding enabled + and enable_pathfinding then + + smart_mobs(self, s, p, dist, dtime) + end + + -- jump attack + if (self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0) + or (self.object:getvelocity().y == 0 + and self.jump_chance > 0) then + + do_jump(self) + end + + if is_at_cliff(self) then + + set_velocity(self, 0) + set_animation(self, "stand") + else + + if self.path.stuck then + set_velocity(self, self.walk_velocity) + else + set_velocity(self, self.run_velocity) + end + + set_animation(self, "run") + end + + else -- rnd: if inside reach range + + self.path.stuck = false + self.path.stuck_timer = 0 + self.path.following = false -- not stuck anymore + + set_velocity(self, 0) + + if not self.custom_attack then + + if self.timer > 1 then + + self.timer = 0 + + if self.double_melee_attack + and random(1, 2) == 1 then + set_animation(self, "punch2") + else + set_animation(self, "punch") + end + + local p2 = p + local s2 = s + + p2.y = p2.y + 1.5 + s2.y = s2.y + 1.5 + + if line_of_sight_water(self, p2, s2) == true then + + -- play attack sound + if self.sounds.attack then + + minetest.sound_play(self.sounds.attack, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + -- punch player + self.attack:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = self.damage} + }, nil) + end + end + else -- call custom attack every second + if self.custom_attack + and self.timer > 1 then + + self.timer = 0 + + self.custom_attack(self, p) end end end - - if self.following and self.following:is_player() then - if self.following:get_wielded_item():get_name() ~= self.follow then - self.following = nil + + elseif self.attack_type == "shoot" + or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 1) + or (self.attack_type == "dogshoot" and dist > self.reach and dogswitch(self) == 0) then + + p.y = p.y - .5 + s.y = s.y + .5 + + local dist = get_distance(p, s) + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + + set_velocity(self, 0) + + if self.shoot_interval + and self.timer > self.shoot_interval + and random(1, 100) <= 60 then + + self.timer = 0 + set_animation(self, "shoot") + + -- play shoot attack sound + if self.sounds.shoot_attack then + + minetest.sound_play(self.sounds.shoot_attack, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + local p = self.object:getpos() + + p.y = p.y + (self.collisionbox[2] + self.collisionbox[5]) / 2 + + local obj = minetest.add_entity(p, self.arrow) + local ent = obj:get_luaentity() + local amount = (vec.x * vec.x + vec.y * vec.y + vec.z * vec.z) ^ 0.5 + local v = ent.velocity or 1 -- or set to default + ent.switch = 1 + ent.owner_id = tostring(self.object) -- add unique owner id to arrow + + -- offset makes shoot aim accurate + vec.y = vec.y + self.shoot_offset + vec.x = vec.x * (v / amount) + vec.y = vec.y * (v / amount) + vec.z = vec.z * (v / amount) + + obj:setvelocity(vec) + end + end + end +end + +-- falling and fall damage +local falling = function(self, pos) + + if self.fly then + return + end + + -- floating in water (or falling) + local v = self.object:getvelocity() + + -- going up then apply gravity + if v.y > 0.1 then + + self.object:setacceleration({ + x = 0, + y = self.fall_speed, + z = 0 + }) + end + + -- in water then float up + if minetest.registered_nodes[node_ok(pos).name].groups.liquid then + + if self.floats == 1 then + + self.object:setacceleration({ + x = 0, + y = -self.fall_speed / (max(1, v.y) ^ 2), + z = 0 + }) + end + else + -- fall downwards + self.object:setacceleration({ + x = 0, + y = self.fall_speed, + z = 0 + }) + + -- fall damage + if self.fall_damage == 1 + and self.object:getvelocity().y == 0 then + + local d = self.old_y - self.object:getpos().y + + if d > 5 then + + self.health = self.health - floor(d - 5) + + effect(pos, 5, "tnt_smoke.png") + + if check_for_death(self) then + return + end + end + + self.old_y = self.object:getpos().y + end + end +end + +local mob_punch = function(self, hitter, tflp, tool_capabilities, dir) + + -- error checking when mod profiling is enabled + if not tool_capabilities then + print (S("[MOBS] mod profiling enabled, damage not enabled")) + return + end + +-- is mob protected? +if self.protected and hitter:is_player() +and minetest.is_protected(self.object:getpos(), hitter:get_player_name()) then + minetest.chat_send_player(hitter:get_player_name(), "Mob has been protected!") + return +end + + + -- weapon wear + local weapon = hitter:get_wielded_item() + local punch_interval = 1.4 + + -- calculate mob damage + local damage = 0 + local armor = self.object:get_armor_groups() or {} + local tmp + + -- quick error check incase it ends up 0 (serialize.h check test) + if tflp == 0 then + tflp = 0.2 + end + + for group,_ in pairs( (tool_capabilities.damage_groups or {}) ) do + + tmp = tflp / (tool_capabilities.full_punch_interval or 1.4) + + if tmp < 0 then + tmp = 0.0 + elseif tmp > 1 then + tmp = 1.0 + end + + damage = damage + (tool_capabilities.damage_groups[group] or 0) + * tmp * ((armor[group] or 0) / 100.0) + end + + -- check for tool immunity or special damage + for n = 1, #self.immune_to do + + if self.immune_to[n][1] == weapon:get_name() then + + damage = self.immune_to[n][2] or 0 + break + end + end + + -- healing + if damage <= -1 then + self.health = self.health - floor(damage) + return + end + +-- print ("Mob Damage is", damage) + + -- add weapon wear + if tool_capabilities then + punch_interval = tool_capabilities.full_punch_interval or 1.4 + end + + if weapon:get_definition() + and weapon:get_definition().tool_capabilities then + + weapon:add_wear(floor((punch_interval / 75) * 9000)) + hitter:set_wielded_item(weapon) + end + +-- only play hit sound and show blood effects if damage is 1 or over +if damage >= 1 then + + -- weapon sounds + if weapon:get_definition().sounds ~= nil then + + local s = random(0, #weapon:get_definition().sounds) + + minetest.sound_play(weapon:get_definition().sounds[s], { + object = hitter, + max_hear_distance = 8 + }) + else + minetest.sound_play("default_punch", { + object = hitter, + max_hear_distance = 5 + }) + end + + -- blood_particles + if self.blood_amount > 0 + and not disable_blood then + + local pos = self.object:getpos() + + pos.y = pos.y + (-self.collisionbox[2] + self.collisionbox[5]) * .5 + + effect(pos, self.blood_amount, self.blood_texture) + end + + -- do damage + self.health = self.health - floor(damage) + + -- exit here if dead + if check_for_death(self) then + return + end + + --[[ add healthy afterglow when hit (can cause hit lag with larger textures) + core.after(0.1, function() + self.object:settexturemod("^[colorize:#c9900070") + + core.after(0.3, function() + self.object:settexturemod("") + end) + end) ]] + + -- knock back effect (only on full punch) + if self.knock_back > 0 + and tflp > punch_interval then + + local v = self.object:getvelocity() + local r = 1.4 - min(punch_interval, 1.4) + local kb = r * 5 + local up = 2 + + -- if already in air then dont go up anymore when hit + if v.y > 0 + or self.fly then + up = 0 + end + + -- direction error check + dir = dir or {x = 0, y = 0, z = 0} + + self.object:setvelocity({ + x = dir.x * kb, + y = up, + z = dir.z * kb + }) + + self.pause_timer = r + end + +end -- END if damage + + -- if skittish then run away + if self.runaway == true then + + local lp = hitter:getpos() + local s = self.object:getpos() + + local vec = { + x = lp.x - s.x, + y = lp.y - s.y, + z = lp.z - s.z + } + + local yaw = atan(vec.z / vec.x) + 3 * pi / 2 - self.rotate + + if lp.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + self.state = "runaway" + self.runaway_timer = 0 + self.following = nil + end + + -- attack puncher and call other mobs for help + if self.passive == false + and self.state ~= "flop" + and self.child == false + and hitter:get_player_name() ~= self.owner + and not mobs.invis[ hitter:get_player_name() ] then + + -- attack whoever punched mob + self.state = "" + do_attack(self, hitter) + + -- alert others to the attack + local objs = minetest.get_objects_inside_radius(hitter:getpos(), self.view_range) + local obj = nil + + for n = 1, #objs do + + obj = objs[n]:get_luaentity() + + if obj then + + if obj.group_attack == true + and obj.state ~= "attack" then + do_attack(obj, hitter) + end + end + end + end +end + +local mob_activate = function(self, staticdata, dtime_s, def) + + -- remove monsters in peaceful mode, or when no data + if (self.type == "monster" and peaceful_only) + or not staticdata then + + self.object:remove() + + return + end + + -- load entity variables + local tmp = minetest.deserialize(staticdata) + + if tmp then + + for _,stat in pairs(tmp) do + self[_] = stat + end + end + + -- select random texture, set model and size + if not self.base_texture then + + self.base_texture = def.textures[random(1, #def.textures)] + self.base_mesh = def.mesh + self.base_size = self.visual_size + self.base_colbox = self.collisionbox + end + + -- set texture, model and size + local textures = self.base_texture + local mesh = self.base_mesh + local vis_size = self.base_size + local colbox = self.base_colbox + + -- specific texture if gotten + if self.gotten == true + and def.gotten_texture then + textures = def.gotten_texture + end + + -- specific mesh if gotten + if self.gotten == true + and def.gotten_mesh then + mesh = def.gotten_mesh + end + + -- set child objects to half size + if self.child == true then + + vis_size = { + x = self.base_size.x * .5, + y = self.base_size.y * .5, + } + + if def.child_texture then + textures = def.child_texture[1] + end + + colbox = { + self.base_colbox[1] * .5, + self.base_colbox[2] * .5, + self.base_colbox[3] * .5, + self.base_colbox[4] * .5, + self.base_colbox[5] * .5, + self.base_colbox[6] * .5 + } + end + + if self.health == 0 then + self.health = random (self.hp_min, self.hp_max) + end + + -- rnd: pathfinding init + self.path = {} + self.path.way = {} -- path to follow, table of positions + self.path.lastpos = {x = 0, y = 0, z = 0} + self.path.stuck = false + self.path.following = false -- currently following path? + self.path.stuck_timer = 0 -- if stuck for too long search for path + -- end init + + self.object:set_armor_groups({immortal = 1, fleshy = self.armor}) + self.old_y = self.object:getpos().y + self.old_health = self.health + self.object:setyaw((random(0, 360) - 180) / 180 * pi) + self.sounds.distance = self.sounds.distance or 10 + self.textures = textures + self.mesh = mesh + self.collisionbox = colbox + self.visual_size = vis_size + self.standing_in = "" + + -- set anything changed above + self.object:set_properties(self) + update_tag(self) +end + +local mob_step = function(self, dtime) + + local pos = self.object:getpos() + local yaw = self.object:getyaw() or 0 + + -- when lifetimer expires remove mob (except npc and tamed) + if self.type ~= "npc" + and not self.tamed + and self.state ~= "attack" + and remove_far ~= true + and self.lifetimer < 20000 then + + self.lifetimer = self.lifetimer - dtime + + if self.lifetimer <= 0 then + + -- only despawn away from player + local objs = minetest.get_objects_inside_radius(pos, 15) + + for n = 1, #objs do + + if objs[n]:is_player() then + + self.lifetimer = 20 + + return + end + end + +-- minetest.log("action", +-- S("lifetimer expired, removed @1", self.name)) + + effect(pos, 15, "tnt_smoke.png") + + self.object:remove() + + return + end + end + + falling(self, pos) + + -- knockback timer + if self.pause_timer > 0 then + + self.pause_timer = self.pause_timer - dtime + + if self.pause_timer < 1 then + self.pause_timer = 0 + end + + return + end + + -- run custom function (defined in mob lua file) + if self.do_custom then + + -- when false skip going any further + if self.do_custom(self, dtime) == false then + return + end + end + + -- attack timer + self.timer = self.timer + dtime + + if self.state ~= "attack" then + + if self.timer < 1 then + return + end + + self.timer = 0 + end + + -- never go over 100 + if self.timer > 100 then + self.timer = 1 + end + + -- node replace check (cow eats grass etc.) + replace(self, pos) + + -- mob plays random sound at times + if self.sounds.random + and random(1, 100) == 1 then + + minetest.sound_play(self.sounds.random, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + -- environmental damage timer (every 1 second) + self.env_damage_timer = self.env_damage_timer + dtime + + if (self.state == "attack" and self.env_damage_timer > 1) + or self.state ~= "attack" then + + self.env_damage_timer = 0 + + do_env_damage(self) + end + + monster_attack(self) + + npc_attack(self) + + breed(self) + + follow_flop(self) + + do_states(self, dtime) + +end + +-- default function when mobs are blown up with TNT +local do_tnt = function(obj, damage) + + --print ("----- Damage", damage) + + obj.object:punch(obj.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = damage}, + }, nil) + + return false, true, {} +end + +mobs.spawning_mobs = {} + +-- register mob function +function mobs:register_mob(name, def) + + mobs.spawning_mobs[name] = true + +minetest.register_entity(name, { + + stepheight = def.stepheight or 0.6, + name = name, + type = def.type, + attack_type = def.attack_type, + fly = def.fly, + fly_in = def.fly_in or "air", + owner = def.owner or "", + order = def.order or "", + on_die = def.on_die, + do_custom = def.do_custom, + jump_height = def.jump_height or 6, + jump_chance = def.jump_chance or 0, + drawtype = def.drawtype, -- DEPRECATED, use rotate instead + rotate = math.rad(def.rotate or 0), -- 0=front, 90=side, 180=back, 270=side2 + lifetimer = def.lifetimer or 180, -- 3 minutes + hp_min = max(1, (def.hp_min or 5) * difficulty), + hp_max = max(1, (def.hp_max or 10) * difficulty), + physical = true, + collisionbox = def.collisionbox, + visual = def.visual, + visual_size = def.visual_size or {x = 1, y = 1}, + mesh = def.mesh, + makes_footstep_sound = def.makes_footstep_sound or false, + view_range = def.view_range or 5, + walk_velocity = def.walk_velocity or 1, + run_velocity = def.run_velocity or 2, + damage = max(1, (def.damage or 0) * difficulty), + light_damage = def.light_damage or 0, + water_damage = def.water_damage or 0, + lava_damage = def.lava_damage or 0, + fall_damage = def.fall_damage or 1, + fall_speed = def.fall_speed or -10, -- must be lower than -2 (default: -10) + drops = def.drops or {}, + armor = def.armor or 100, + on_rightclick = def.on_rightclick, + arrow = def.arrow, + shoot_interval = def.shoot_interval, + sounds = def.sounds or {}, + animation = def.animation, + follow = def.follow, + jump = def.jump or true, + walk_chance = def.walk_chance or 50, + attacks_monsters = def.attacks_monsters or false, + group_attack = def.group_attack or false, + --fov = def.fov or 120, + passive = def.passive or false, + recovery_time = def.recovery_time or 0.5, + knock_back = def.knock_back or 3, + blood_amount = def.blood_amount or 5, + blood_texture = def.blood_texture or "mobs_blood.png", + shoot_offset = def.shoot_offset or 0, + floats = def.floats or 1, -- floats in water by default + replace_rate = def.replace_rate, + replace_what = def.replace_what, + replace_with = def.replace_with, + replace_offset = def.replace_offset or 0, + timer = 0, + env_damage_timer = 0, -- only used when state = "attack" + tamed = false, + pause_timer = 0, + horny = false, + hornytimer = 0, + child = false, + gotten = false, + health = 0, + reach = def.reach or 3, + htimer = 0, + texture_list = def.textures, + child_texture = def.child_texture, + docile_by_day = def.docile_by_day or false, + time_of_day = 0.5, + fear_height = def.fear_height or 0, + runaway = def.runaway, + runaway_timer = 0, + pathfinding = def.pathfinding, + immune_to = def.immune_to or {}, + explosion_radius = def.explosion_radius, + custom_attack = def.custom_attack, + double_melee_attack = def.double_melee_attack, + dogshoot_switch = def.dogshoot_switch, + dogshoot_count = 0, + dogshoot_count_max = def.dogshoot_count_max or 5, + attack_animals = def.attack_animals or false, + specific_attack = def.specific_attack, + + on_blast = def.on_blast or do_tnt, + + on_step = mob_step, + + on_punch = mob_punch, + + on_activate = function(self, staticdata, dtime_s) + mob_activate(self, staticdata, dtime_s, def) + end, + + get_staticdata = function(self) + + -- remove mob when out of range unless tamed + if remove_far + and self.remove_ok + and not self.tamed + and self.lifetimer < 20000 then + + --print ("REMOVED " .. self.name) + + self.object:remove() + + return nil + end + + self.remove_ok = true + self.attack = nil + self.following = nil + self.state = "stand" + + -- used to rotate older mobs + if self.drawtype + and self.drawtype == "side" then + self.rotate = math.rad(90) + end + + local tmp = {} + + for _,stat in pairs(self) do + + local t = type(stat) + + if t ~= 'function' + and t ~= 'nil' + and t ~= 'userdata' then + tmp[_] = self[_] + end + end + + -- print('===== '..self.name..'\n'.. dump(tmp)..'\n=====\n') + return minetest.serialize(tmp) + end, + +}) + +end -- END mobs:register_mob function + +-- count how many mobs of one type are inside an area +local count_mobs = function(pos, type) + + local num = 0 + local objs = minetest.get_objects_inside_radius(pos, 32) + + for n = 1, #objs do + + if not objs[n]:is_player() then + + local obj = objs[n]:get_luaentity() + + if obj and obj.name and obj.name == type then + num = num + 1 + end + end + end + + return num +end + +-- global functions + +function mobs:spawn_specific(name, nodes, neighbors, min_light, max_light, + interval, chance, aoc, min_height, max_height, day_toggle, on_spawn) + + -- chance/spawn number override in minetest.conf for registered mob + local numbers = minetest.setting_get(name) + + if numbers then + numbers = numbers:split(",") + chance = tonumber(numbers[1]) or chance + aoc = tonumber(numbers[2]) or aoc + + if chance == 0 then + print(S("[Mobs Redo] @1 has spawning disabled", name)) + return + end + + print (S("[Mobs Redo] Chance setting for @1 changed to @2", name, chance) + .. " (total: " .. aoc .. ")") + + end + + minetest.register_abm({ + + label = name .. " spawning", + nodenames = nodes, + neighbors = neighbors, + interval = interval, + chance = chance, + catch_up = false, + + action = function(pos, node, active_object_count, active_object_count_wider) + + -- is mob actually registered? + if not mobs.spawning_mobs[name] then +--print ("--- mob doesn't exist", name) + return + end + + -- do not spawn if too many of same mob in area + if active_object_count_wider >= aoc + and count_mobs(pos, name) >= aoc then +--print ("--- too many entities", name, aoc) + return + end + + -- if toggle set to nil then ignore day/night check + if day_toggle ~= nil then + + local tod = (minetest.get_timeofday() or 0) * 24000 + + if tod > 4500 and tod < 19500 then + -- daylight, but mob wants night + if day_toggle == false then +--print ("--- mob needs night", name) + return + end else - local s = self.object:getpos() - local p = self.following:getpos() - local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 - if dist > self.view_range then - self.following = nil - self.v_start = false - else - local vec = {x=p.x-s.x, y=p.y-s.y, z=p.z-s.z} - local yaw = math.atan(vec.z/vec.x)+math.pi/2 - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - if p.x > s.x then - yaw = yaw+math.pi - end - self.object:setyaw(yaw) - if dist > 2 then - if not self.v_start then - self.v_start = true - self.set_velocity(self, self.walk_velocity) - else - if self.jump and self.get_velocity(self) <= 1.5 and self.object:getvelocity().y == 0 then - local v = self.object:getvelocity() - v.y = 6 - self.object:setvelocity(v) - end - self.set_velocity(self, self.walk_velocity) - end - self:set_animation("walk") - else - self.v_start = false - self.set_velocity(self, 0) - self:set_animation("stand") - end + -- night time but mob wants day + if day_toggle == true then +--print ("--- mob needs day", name) return end end end - - if self.state == "stand" then - if math.random(1, 4) == 1 then - -- if there is a player nearby look at them - local lp = nil - local s = self.object:getpos() - if self.type == "npc" then - local o = minetest.get_objects_inside_radius(self.object:getpos(), 3) - - local yaw = 0 - for _,o in ipairs(o) do - if o:is_player() then - lp = o:getpos() - break - end - end - end - if lp ~= nil then - local vec = {x=lp.x-s.x, y=lp.y-s.y, z=lp.z-s.z} - yaw = math.atan(vec.z/vec.x)+math.pi/2 - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - if lp.x > s.x then - yaw = yaw+math.pi - end - else - yaw = self.object:getyaw()+((math.random(0,360)-180)/180*math.pi) - end - self.object:setyaw(yaw) - end - self.set_velocity(self, 0) - self.set_animation(self, "stand") - if math.random(1, 100) <= self.walk_chance then - self.set_velocity(self, self.walk_velocity) - self.state = "walk" - self.set_animation(self, "walk") - end - elseif self.state == "walk" then - if math.random(1, 100) <= 30 then - self.object:setyaw(self.object:getyaw()+((math.random(0,360)-180)/180*math.pi)) - end - if self.jump and self.get_velocity(self) <= 0.5 and self.object:getvelocity().y == 0 then - local v = self.object:getvelocity() - v.y = 5 - self.object:setvelocity(v) - end - self:set_animation("walk") - self.set_velocity(self, self.walk_velocity) - if math.random(1, 100) <= 30 then - self.set_velocity(self, 0) - self.state = "stand" - self:set_animation("stand") - end - elseif self.state == "attack" and self.attack_type == "kamicaze" then - if not self.attack.player or not self.attack.player:is_player() then - self.state = "stand" - self:set_animation("stand") - self.timer = 0 - self.blinktimer = 0 - return - end - local s = self.object:getpos() - local p = self.attack.player:getpos() - local dist = ((p.x - s.x) ^ 2 + (p.y - s.y) ^ 2 + (p.z - s.z) ^ 2) ^ 0.5 - if dist > self.view_range or self.attack.player:get_hp() <= 0 then - self.state = "stand" - self.v_start = false - self.set_velocity(self, 0) - self.timer = 0 - self.blinktimer = 0 - self.attack = {player = nil, dist = nil} - self:set_animation("stand") - return - else - self:set_animation("walk") - self.attack.dist = dist - end - - local vec = {x = p.x -s.x, y = p.y -s.y, z = p.z -s.z} - local yaw = math.atan(vec.z/vec.x)+math.pi/2 - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - if p.x > s.x then - yaw = yaw+math.pi - end - self.object:setyaw(yaw) - if self.attack.dist > 3 then - if not self.v_start then - self.v_start = true - self.set_velocity(self, self.run_velocity) - self.timer = 0 - self.blinktimer = 0 - else - self.timer = 0 - self.blinktimer = 0 - if self.get_velocity(self) <= 1.58 and self.object:getvelocity().y == 0 then - local v = self.object:getvelocity() - v.y = 5 - self.object:setvelocity(v) - end - self.set_velocity(self, self.run_velocity) - end - self:set_animation("run") - else - self.set_velocity(self, 0) - self.timer = self.timer + dtime - self.blinktimer = self.blinktimer + dtime - if self.blinktimer > 0.2 then - self.blinktimer = self.blinktimer - 0.2 - if self.blinkstatus then - self.object:settexturemod("") - else - self.object:settexturemod("^[brighten") - end - self.blinkstatus = not self.blinkstatus - end - if self.timer > 3 then - local pos = self.object:getpos() - pos.x = math.floor(pos.x+0.5) - pos.y = math.floor(pos.y+0.5) - pos.z = math.floor(pos.z+0.5) - do_tnt_physics(pos, 3) - local meta = minetest.get_meta(pos) - minetest.sound_play("tnt_explode", {pos = pos,gain = 1.0,max_hear_distance = 16,}) - if minetest.get_node(pos).name == "default:water_source" or minetest.get_node(pos).name == "default:water_flowing" or minetest.is_protected(pos, "tnt") then - self.object:remove() - return - end - for x=-3,3 do - for y=-3,3 do - for z=-3,3 do - if x*x+y*y+z*z <= 3 * 3 + 3 then - local np={x=pos.x+x,y=pos.y+y,z=pos.z+z} - local n = minetest.get_node(np) - if n.name ~= "air" and n.name ~= "default:obsidian" and n.name ~= "default:bedrock" and n.name ~= "protector:protect" then - activate_if_tnt(n.name, np, pos, 3) - minetest.remove_node(np) - nodeupdate(np) - if n.name ~= "tnt:tnt" and math.random() > 0.9 then - local drop = minetest.get_node_drops(n.name, "") - for _,item in ipairs(drop) do - if type(item) == "string" then - if math.random(1,100) > 40 then - local obj = minetest.add_item(np, item) - end - end - end - end - end - end - end - end - self.object:remove() - end - end - end - elseif self.state == "attack" and self.attack_type == "dogfight" then - if not self.attack.player or not self.attack.player:getpos() then - self.state = "stand" - self:set_animation("stand") - return - end - local s = self.object:getpos() - local p = self.attack.player:getpos() - local dist = ((p.x - s.x) ^ 2 + (p.y - s.y) ^ 2 + (p.z - s.z) ^ 2) ^ 0.5 - if dist > self.view_range or self.attack.player:get_hp() <= 0 then - self.state = "stand" - self.v_start = false - self.set_velocity(self, 0) - self.attack = {player = nil, dist = nil} - self:set_animation("stand") - return - else - self:set_animation("walk") - self.attack.dist = dist - end - - local vec = {x = p.x -s.x, y = p.y -s.y, z = p.z -s.z} - local yaw = math.atan(vec.z/vec.x)+math.pi/2 - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - if p.x > s.x then - yaw = yaw+math.pi - end - self.object:setyaw(yaw) - if self.attack.dist > 2 then - if not self.v_start then - self.v_start = true - self.set_velocity(self, self.run_velocity) - else - if self.get_velocity(self) <= 1.58 and self.object:getvelocity().y == 0 then - local v = self.object:getvelocity() - v.y = 5 - self.object:setvelocity(v) - end - self.set_velocity(self, self.run_velocity) - end - self:set_animation("run") - else - self.set_velocity(self, 0) - self:set_animation("punch") - self.v_start = false - if self.timer > 1 then - self.timer = 0 - minetest.sound_play("mobs_punch", {object = self.object, gain = 1}) - self.attack.player:punch(self.object, 1.0, { - full_punch_interval= 1.0, - damage_groups = {fleshy = self.damage} - }, vec) - end - end - elseif self.state == "attack" and self.attack_type == "shoot" then - if not self.attack.player or not self.attack.player:is_player() then - self.state = "stand" - self:set_animation("stand") - return - end - local s = self.object:getpos() - local p = self.attack.player:getpos() - p.y = p.y - .5 - s.y = s.y + .5 - local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 - if dist > self.view_range or self.attack.player:get_hp() <= 0 then - self.state = "stand" - self.v_start = false - self.set_velocity(self, 0) - if self.type ~= "npc" then - self.attack = {player=nil, dist=nil} - end - self:set_animation("stand") - return - else - self.attack.dist = dist - end - - local vec = {x = p.x -s.x, y = p.y -s.y, z = p.z -s.z} - local yaw = math.atan(vec.z/vec.x)+math.pi/2 - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - if p.x > s.x then - yaw = yaw+math.pi - end - self.object:setyaw(yaw) - self.set_velocity(self, 0) - - if self.timer > self.shoot_interval and math.random(1, 100) <= 60 then - self.timer = 0 - - self:set_animation("punch") - - if self.sounds ~= nil and self.sounds.attack then - minetest.sound_play(self.sounds.attack, {object = self.object}) - end - - local p = self.object:getpos() - p.y = p.y + (self.collisionbox[2]+self.collisionbox[5])/2 - local obj = minetest.add_entity(p, self.arrow) - local amount = (vec.x^ 2+vec.y^ 2+vec.z^ 2) ^ 0.5 - local v = obj:get_luaentity().velocity - vec.y = vec.y+1 - vec.x = vec.x*v/amount - vec.y = vec.y*v/amount - vec.z = vec.z*v/amount - obj:setvelocity(vec) - end - end - end, - - on_activate = function(self, staticdata, dtime_s) - self.object:set_armor_groups({fleshy = self.armor}) - self.object:setacceleration({x = 0, y = -10, z = 0}) - self.state = "stand" - self.object:setvelocity({x = 0, y = self.object:getvelocity().y, z = 0}) - self.object:setyaw(math.random(1, 360) / 180 * math.pi) - - if self.type ~= "npc" then - self.lifetimer = 600 - dtime_s - else - self.lifetimer = 300 - dtime_s - end - - if self.type == "monster" and minetest.setting_getbool("only_peaceful") then - self.object:remove() - end - - if staticdata then - local tmp = minetest.deserialize(staticdata) - if tmp and tmp.lifetimer then - self.lifetimer = tmp.lifetimer - dtime_s - end - if tmp and tmp.tamed then - self.tamed = tmp.tamed - end - end - if self.lifetimer <= 0 and not self.tamed then - local pos = self.object:getpos() - local hp = self.object:get_hp() - minetest.log("action", "A mob with " .. tostring(hp) .. " HP despawned at " .. minetest.pos_to_string(pos) .. " on activation.") - self.object:remove() - end - end, - - get_staticdata = function(self) - local tmp = { - lifetimer = self.lifetimer, - tamed = self.tamed, - textures = { textures = self.textures }, - } - return minetest.serialize(tmp) - end, - on_punch = function(self, hitter, tflp, tool_capabilities, dir) - local hp = self.object:get_hp() - self.have_been_hit = 1 - if hp >= 1 then - process_weapon(hitter,tflp,tool_capabilities) - end - - local pos = self.object:getpos() - if self.object:get_hp() <= 0 then - if hitter and hitter:is_player() and hitter:get_inventory() then - for _,drop in ipairs(self.drops) do - if math.random(1, drop.chance) == 1 then - local d = ItemStack(drop.name.." "..math.random(drop.min, drop.max)) --- default.drop_item(pos,d) - local pos2 = pos - pos2.y = pos2.y + 0.5 -- drop items half block higher - minetest.add_item(pos2,d) - end - end - - if self.sounds ~= nil and self.sounds.death ~= nil then - minetest.sound_play(self.sounds.death,{ - object = self.object, - }) - end - if minetest.get_modpath("skills") and minetest.get_modpath("experience") then - -- DROP experience - local distance_rating = ( ( get_distance({x=0,y=0,z=0},pos) ) / ( skills.get_player_level(hitter:get_player_name()).level * 1000 ) ) - local emax = math.floor( self.exp_min + ( distance_rating * self.exp_max ) ) - local expGained = math.random(self.exp_min, emax) - skills.add_exp(hitter:get_player_name(),expGained) - local expStack = experience.exp_to_items(expGained) - for _,stack in ipairs(expStack) do - default.drop_item(pos,stack) - end - end - - -- see if there are any NPCs to shower you with rewards - if self.type ~= "npc" then - local inradius = minetest.get_objects_inside_radius(hitter:getpos(),10) - for _, oir in pairs(inradius) do - local obj = oir:get_luaentity() - if obj then - if obj.type == "npc" and obj.rewards ~= nil then - local yaw = nil - local lp = hitter:getpos() - local s = obj.object:getpos() - local vec = {x=lp.x-s.x, y=1, z=lp.z-s.z} - yaw = math.atan(vec.z/vec.x)+math.pi/2 - if self.drawtype == "side" then - yaw = yaw+(math.pi/2) - end - if lp.x > s.x then - yaw = yaw+math.pi - end - obj.object:setyaw(yaw) - local x = math.sin(yaw) * -2 - local z = math.cos(yaw) * 2 - acc = {x=x, y=-5, z=z} - for _, r in pairs(obj.rewards) do - if math.random(0,100) < r.chance then - default.drop_item(obj.object:getpos(),r.item, vec, acc) - end - end - end - end - end - end - - end - end - - -- knock back effect, adapted from blockmen's pyramids mod - -- https://github.com/BlockMen/pyramids - local kb = self.knock_back - local r = self.recovery_time - - if tflp < tool_capabilities.full_punch_interval then - kb = kb * ( tflp / tool_capabilities.full_punch_interval ) - r = r * ( tflp / tool_capabilities.full_punch_interval ) - end - - local ykb=2 - local v = self.object:getvelocity() - if v.y ~= 0 then - ykb = 0 - end - - self.object:setvelocity({x=dir.x*kb,y=ykb,z=dir.z*kb}) - self.pause_timer = r - if self.type == "animal" then - self.set_affolated(self) - self:set_animation("run") - end - -- for zombie pig <3 - if self.passive == false then - if self.state ~= "attack" then - self.do_attack(self,hitter,1) - end - -- alert other NPCs to the attack - local inradius = minetest.get_objects_inside_radius(hitter:getpos(),10) - for _, oir in pairs(inradius) do - local obj = oir:get_luaentity() - if obj then - if obj.group_attack == true and obj.name == self.name and obj.state ~= "attack" then - obj.do_attack(obj,hitter,1) - end - end - end - end - end, - - }) -end - -mobs.spawning_mobs = {} -function mobs:register_spawn(name, description, nodes, max_light, min_light, chance, active_object_count, max_height, spawn_func) - mobs.spawning_mobs[name] = true - minetest.register_abm({ - nodenames = nodes, - neighbors = {"air"}, - interval = 15, - chance = chance, - action = function(pos, node, _, active_object_count_wider) - --local players = minetest.get_connected_players() - --if players == 0 then return end - if active_object_count_wider > active_object_count then return end - if not mobs.spawning_mobs[name] then return end + -- spawn above node pos.y = pos.y + 1 - if not minetest.get_node_light(pos) then return end - if minetest.get_node(pos).name ~= "air" then return end - if pos.y > max_height then return end - if not minetest.get_node_light(pos) then return end - if minetest.get_node_light(pos) > max_light then return end - if minetest.get_node_light(pos) < min_light then return end - if minetest.registered_nodes[minetest.get_node(pos).name].walkable then else return end - if min_dist == nil then - min_dist = {x=-1,z=-1} - end - if max_dist == nil then - max_dist = {x=33000,z=33000} - end - - if math.abs(pos.x) < min_dist.x or math.abs(pos.z) < min_dist.z then - return - end - - if math.abs(pos.x) > max_dist.x or math.abs(pos.z) > max_dist.z then - return - end - if spawn_func and not spawn_func(pos, node) then return end - if math.random(1,1000) <= chance or chance > 99 then - if chance > 99 then - minetest.log("action", "Spawned " .. description .. " at " .. minetest.pos_to_string(pos) .. " with 100% chance .") - minetest.add_entity(pos, name) - elseif math.random(1.0,100.9) <= chance then - minetest.log("action", "Spawned " .. description .. " at " .. minetest.pos_to_string(pos) .. "with "..chance.."% chance.") - minetest.add_entity(pos, name) + + -- only spawn away from player + local objs = minetest.get_objects_inside_radius(pos, 10) + + for n = 1, #objs do + + if objs[n]:is_player() then +--print ("--- player too close", name) + return end end - + + -- mobs cannot spawn in protected areas when enabled + if spawn_protected == 1 + and minetest.is_protected(pos, "") then +--print ("--- inside protected area", name) + return + end + + -- are light levels ok? + local light = minetest.get_node_light(pos) + if not light + or light > max_light + or light < min_light then +--print ("--- light limits not met", name, light) + return + end + + -- are we spawning within height limits? + if pos.y > max_height + or pos.y < min_height then +--print ("--- height limits not met", name, pos.y) + return + end + + -- are we spawning inside solid nodes? + if minetest.registered_nodes[node_ok(pos).name].walkable == true then +--print ("--- feet in block", name, node_ok(pos).name) + return + end + + pos.y = pos.y + 1 + + if minetest.registered_nodes[node_ok(pos).name].walkable == true then +--print ("--- head in block", name, node_ok(pos).name) + return + end + + -- spawn mob half block higher than ground + pos.y = pos.y - 0.5 + + local mob = minetest.add_entity(pos, name) + + if mob and mob:get_luaentity() then +-- print ("[mobs] Spawned " .. name .. " at " +-- .. minetest.pos_to_string(pos) .. " on " +-- .. node.name .. " near " .. neighbors[1]) + if on_spawn and not on_spawn(mob, pos) then + return + end + else + print (S("[mobs] @1 failed to spawn at @2", + name, minetest.pos_to_string(pos))) + end + end }) end -function do_tnt_physics(tnt_np,tntr) - local objs = minetest.get_objects_inside_radius(tnt_np, tntr) - for k, obj in pairs(objs) do - local oname = obj:get_entity_name() - local v = obj:getvelocity() - local p = obj:getpos() - if oname == "tnt:tnt" then - obj:setvelocity({x=(p.x - tnt_np.x) + (tntr / 2) + v.x, y=(p.y - tnt_np.y) + tntr + v.y, z=(p.z - tnt_np.z) + (tntr / 2) + v.z}) - else - if v ~= nil then - obj:setvelocity({x=(p.x - tnt_np.x) + (tntr / 4) + v.x, y=(p.y - tnt_np.y) + (tntr / 2) + v.y, z=(p.z - tnt_np.z) + (tntr / 4) + v.z}) - else - if obj:get_player_name() ~= nil then - obj:set_hp(obj:get_hp() - 1) - end - end - end - end +-- compatibility with older mob registration +function mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, day_toggle) + + mobs:spawn_specific(name, nodes, {"air"}, min_light, max_light, 30, + chance, active_object_count, -31000, max_height, day_toggle) end +-- MarkBu's spawn function +function mobs:spawn(def) + local name = def.name + local nodes = def.nodes or {"group:soil", "group:stone"} + local neighbors = def.neighbors or {"air"} + local min_light = def.min_light or 0 + local max_light = def.max_light or 15 + local interval = def.interval or 30 + local chance = def.chance or 5000 + local active_object_count = def.active_object_count or 1 + local min_height = def.min_height or -31000 + local max_height = def.max_height or 31000 + local day_toggle = def.day_toggle + local on_spawn = def.on_spawn + + mobs:spawn_specific(name, nodes, neighbors, min_light, max_light, interval, + chance, active_object_count, min_height, max_height, day_toggle, on_spawn) +end + +-- set content id's +local c_air = minetest.get_content_id("air") +local c_ignore = minetest.get_content_id("ignore") +local c_obsidian = minetest.get_content_id("default:obsidian") +local c_brick = minetest.get_content_id("default:obsidianbrick") +local c_chest = minetest.get_content_id("default:chest_locked") +local c_fire = minetest.get_content_id("fire:basic_flame") + +-- explosion (cannot break protected or unbreakable nodes) +function mobs:explosion(pos, radius, fire, smoke, sound) + + radius = radius or 0 + fire = fire or 0 + smoke = smoke or 0 + + -- if area protected or near map limits then no blast damage + if minetest.is_protected(pos, "") + or not within_limits(pos, radius) then + return + end + + -- explosion sound + if sound + and sound ~= "" then + + minetest.sound_play(sound, { + pos = pos, + gain = 1.0, + max_hear_distance = 16 + }) + end + + pos = vector.round(pos) -- voxelmanip doesn't work properly unless pos is rounded ?!?! + + local vm = VoxelManip() + local minp, maxp = vm:read_from_map(vector.subtract(pos, radius), vector.add(pos, radius)) + local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) + local data = vm:get_data() + local p = {} + local pr = PseudoRandom(os.time()) + + for z = -radius, radius do + for y = -radius, radius do + local vi = a:index(pos.x + (-radius), pos.y + y, pos.z + z) + for x = -radius, radius do + + p.x = pos.x + x + p.y = pos.y + y + p.z = pos.z + z + + if (x * x) + (y * y) + (z * z) <= (radius * radius) + pr:next(-radius, radius) + and data[vi] ~= c_air + and data[vi] ~= c_ignore + and data[vi] ~= c_obsidian + and data[vi] ~= c_brick + and data[vi] ~= c_chest + and data[vi] ~= c_fire then + + local n = node_ok(p).name + local on_blast = minetest.registered_nodes[n].on_blast + + if on_blast then + + return on_blast(p) + + elseif minetest.registered_nodes[n].groups.unbreakable == 1 then + + -- do nothing + else + + -- after effects + if fire > 0 + and (minetest.registered_nodes[n].groups.flammable + or random(1, 100) <= 30) then + + minetest.set_node(p, {name = "fire:basic_flame"}) + else + minetest.set_node(p, {name = "air"}) + + if smoke > 0 then + effect(p, 2, "tnt_smoke.png") + end + end + end + end + + vi = vi + 1 + + end + end + end +end + +-- register arrow for shoot attack function mobs:register_arrow(name, def) + + if not name or not def then return end -- errorcheck + minetest.register_entity(name, { + physical = false, - collisionbox = {0, 0, 0, 0, 0, 0}, visual = def.visual, visual_size = def.visual_size, textures = def.textures, velocity = def.velocity, hit_player = def.hit_player, hit_node = def.hit_node, - - on_step = function(self, dtime) + hit_mob = def.hit_mob, + drop = def.drop or false, -- drops arrow as registered item when true + collisionbox = {0, 0, 0, 0, 0, 0}, -- remove box around arrows + timer = 0, + switch = 0, + owner_id = def.owner_id, + + on_step = def.on_step or function(self, dtime) + + self.timer = self.timer + 1 + local pos = self.object:getpos() - if minetest.get_node(self.object:getpos()).name ~= "air" then - self.hit_node(self, pos, node) - self.object:remove() + + if self.switch == 0 + or self.timer > 150 + or not within_limits(pos, 0) then + + self.object:remove() ; -- print ("removed arrow") + return end - -- pos.y = pos.y-1.0 - for _,player in pairs(minetest.get_objects_inside_radius(pos, 1)) do - if player:is_player() then - self.hit_player(self, player) - self.object:remove() + + -- does arrow have a tail (fireball) + if def.tail + and def.tail == 1 + and def.tail_texture then + +-- effect(pos, 1, def.tail_texture, +-- def.tail_size or 5, +-- def.tail_size or 10, +-- 0, 0) -- 0 radius and 0 gravity to just hover + + minetest.add_particlespawner({ + amount = 1, + time = 0.25, + minpos = pos, + maxpos = pos, + minvel = {x = 0, y = 0, z = 0}, + maxvel = {x = 0, y = 0, z = 0}, + minacc = {x = 0, y = 0, z = 0}, + maxacc = {x = 0, y = 0, z = 0}, + minexptime = 0.1, + maxexptime = 1, + minsize = def.tail_size or 5, + maxsize = def.tail_size or 10, + texture = def.tail_texture, + }) + end + + if self.hit_node then + + local node = node_ok(pos).name + + if minetest.registered_nodes[node].walkable then + --if node ~= "air" then + + self.hit_node(self, pos, node) + + if self.drop == true then + + pos.y = pos.y + 1 + + self.lastpos = (self.lastpos or pos) + + minetest.add_item(self.lastpos, self.object:get_luaentity().name) + end + + self.object:remove() ; -- print ("hit node") + return end end + + if self.hit_player or self.hit_mob then + + for _,player in pairs(minetest.get_objects_inside_radius(pos, 1.0)) do + + if self.hit_player + and player:is_player() then + + self.hit_player(self, player) + self.object:remove() ; -- print ("hit player") + return + end + + local entity = player:get_luaentity() + and player:get_luaentity().name or "" + + if self.hit_mob + and tostring(player) ~= self.owner_id + and entity ~= self.object:get_luaentity().name + and entity ~= "__builtin:item" + and entity ~= "__builtin:falling_node" + and entity ~= "gauges:hp_bar" + and entity ~= "signs:text" + and entity ~= "itemframes:item" then + + self.hit_mob(self, player) + + self.object:remove() ; --print ("hit mob") + + return + end + end + end + + self.lastpos = pos end }) end -function get_distance(pos1,pos2) - if ( pos1 ~= nil and pos2 ~= nil ) then - return math.abs(math.floor(math.sqrt( (pos1.x - pos2.x)^2 + (pos1.z - pos2.z)^2 ))) - else - return 0 +-- Spawn Egg +function mobs:register_egg(mob, desc, background, addegg, no_creative) + + local grp = {} + + -- do NOT add this egg to creative inventory (e.g. dungeon master) + if creative and no_creative == true then + grp = {not_in_creative_inventory = 1} + end + + local invimg = background + + if addegg == 1 then + invimg = "mobs_chicken_egg.png^(" .. invimg .. + "^[mask:mobs_chicken_egg_overlay.png)" + end + + minetest.register_craftitem(mob, { + + description = desc, + inventory_image = invimg, + groups = grp, + + on_place = function(itemstack, placer, pointed_thing) + + local pos = pointed_thing.above + + if pos + and within_limits(pos, 0) + and not minetest.is_protected(pos, placer:get_player_name()) then + + pos.y = pos.y + 1 + + local mob = minetest.add_entity(pos, mob) + local ent = mob:get_luaentity() + + if not ent then + mob:remove() + return + end + + if ent.type ~= "monster" then + -- set owner and tame if not monster + ent.owner = placer:get_player_name() + ent.tamed = true + end + + -- if not in creative then take item + if not creative then + itemstack:take_item() + end + end + + return itemstack + end, + }) +end + +-- capture critter (thanks to blert2112 for idea) +function mobs:capture_mob(self, clicker, chance_hand, chance_net, chance_lasso, force_take, replacewith) + + if not self.child + and clicker:is_player() + and clicker:get_inventory() then + + -- get name of clicked mob + local mobname = self.name + + -- if not nil change what will be added to inventory + if replacewith then + mobname = replacewith + end + + local name = clicker:get_player_name() + + -- is mob tamed? + if self.tamed == false + and force_take == false then + + minetest.chat_send_player(name, S("Not tamed!")) + + return + end + + -- cannot pick up if not owner + if self.owner ~= name + and force_take == false then + + minetest.chat_send_player(name, S("@1 is owner!", self.owner)) + + return + end + + if clicker:get_inventory():room_for_item("main", mobname) then + + -- was mob clicked with hand, net, or lasso? + local tool = clicker:get_wielded_item() + local chance = 0 + + if tool:is_empty() then + chance = chance_hand + + elseif tool:get_name() == "mobs:net" then + + chance = chance_net + + tool:add_wear(4000) -- 17 uses + + clicker:set_wielded_item(tool) + + elseif tool:get_name() == "mobs:magic_lasso" then + + chance = chance_lasso + + tool:add_wear(650) -- 100 uses + + clicker:set_wielded_item(tool) + end + + -- return if no chance + if chance == 0 then return end + + -- calculate chance.. add to inventory if successful? + if random(1, 100) <= chance then + + clicker:get_inventory():add_item("main", mobname) + + self.object:remove() + else + minetest.chat_send_player(name, S("Missed!")) + end + end end end -function process_weapon(player, time_from_last_punch, tool_capabilities) -local weapon = player:get_wielded_item() - if tool_capabilities ~= nil then - local wear = ( tool_capabilities.full_punch_interval / 75 ) * 65535 - weapon:add_wear(wear) - player:set_wielded_item(weapon) +local mob_obj = {} +local mob_sta = {} + +-- feeding, taming and breeding (thanks blert2112) +function mobs:feed_tame(self, clicker, feed_count, breed, tame) + + if not self.follow then + return false end - - if weapon:get_definition().sounds ~= nil then - local s = math.random(0,#weapon:get_definition().sounds) - minetest.sound_play(weapon:get_definition().sounds[s], { - object=player, - }) - else - minetest.sound_play("default_sword_wood", { - object = player, - }) - end + + -- can eat/tame with item in hand + if follow_holding(self, clicker) then + + -- if not in creative then take item + if not creative then + + local item = clicker:get_wielded_item() + + item:take_item() + + clicker:set_wielded_item(item) + end + + -- increase health + self.health = self.health + 4 + + if self.health >= self.hp_max then + + self.health = self.hp_max + + if self.htimer < 1 then + + minetest.chat_send_player(clicker:get_player_name(), + S("@1 at full health (@2)", + self.name:split(":")[2], tostring(self.health))) + + self.htimer = 5 + end + end + + self.object:set_hp(self.health) + + update_tag(self) + + -- make children grow quicker + if self.child == true then + + self.hornytimer = self.hornytimer + 20 + + return true + end + + -- feed and tame + self.food = (self.food or 0) + 1 + if self.food >= feed_count then + + self.food = 0 + + if breed and self.hornytimer == 0 then + self.horny = true + end + + self.gotten = false + + if tame then + + if self.tamed == false then + minetest.chat_send_player(clicker:get_player_name(), + S("@1 has been tamed!", + self.name:split(":")[2])) + end + + self.tamed = true + + if not self.owner or self.owner == "" then + self.owner = clicker:get_player_name() + end + end + + -- make sound when fed so many times + if self.sounds.random then + + minetest.sound_play(self.sounds.random, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + end + + return true + end + + local item = clicker:get_wielded_item() + + -- if mob has been tamed you can name it with a nametag + if item:get_name() == "mobs:nametag" + and clicker:get_player_name() == self.owner then + + local name = clicker:get_player_name() + + -- store mob and nametag stack in external variables + mob_obj[name] = self + mob_sta[name] = item + + local tag = self.nametag or "" + + minetest.show_formspec(name, "mobs_nametag", "size[8,4]" + .. default.gui_bg + .. default.gui_bg_img + .. "field[0.5,1;7.5,0;name;" .. S("Enter name:") .. ";" .. tag .. "]" + .. "button_exit[2.5,3.5;3,1;mob_rename;" .. S("Rename") .. "]") + + end + + return false + end +-- inspired by blockmen's nametag mod +minetest.register_on_player_receive_fields(function(player, formname, fields) + + -- right-clicked with nametag and name entered? + if formname == "mobs_nametag" + and fields.name + and fields.name ~= "" then + + local name = player:get_player_name() + + if not mob_obj[name] + or not mob_obj[name].object then + return + end + + -- update nametag + mob_obj[name].nametag = fields.name + + update_tag(mob_obj[name]) + + -- if not in creative then take item + if not creative then + + mob_sta[name]:take_item() + + player:set_wielded_item(mob_sta[name]) + end + + -- reset external variables + mob_obj[name] = nil + mob_sta[name] = nil + + end +end) + +-- compatibility function for old entities to new modpack entities +function mobs:alias_mob(old_name, new_name) + + -- spawn egg + minetest.register_alias(old_name, new_name) + + -- entity + minetest.register_entity(":" .. old_name, { + + physical = false, + + on_step = function(self) + + local pos = self.object:getpos() + + minetest.add_entity(pos, new_name) + + self.object:remove() + end + }) +end diff --git a/mods/mobs/api.txt b/mods/mobs/api.txt new file mode 100644 index 000000000..3473b3827 --- /dev/null +++ b/mods/mobs/api.txt @@ -0,0 +1,259 @@ + +MOB API (28th September 2016) + +The mob api is a function that can be called on by other mods to add new animals or monsters into minetest. + + minetest.conf settings* + + 'enable_damage' if true monsters will attack players (default is true) + 'only_peaceful_mobs' if true only animals will spawn in game (default is false) + 'mobs_disable_blood' if false blood effects appear when mob is hit (default is false) + 'mobs_spawn_protected' if set to 1 then mobs will not spawn in protected areas (default is 0) + 'remove_far_mobs' if true then mobs that are outside players visual range will be removed (default is false) + 'mobname' can change specific mob chance rate (0 to disable) and spawn number e.g. mobs_animal:cow = 1000,5 + 'mob_difficulty' sets difficulty level (health and hit damage multiplied by this number), defaults to 1.0. + + +mobs:register_mob(name, definition) + +This functions registers a new mob as a Minetest entity. + + 'name' is the name of the mob (e.g. "mobs:dirt_monster") + definition is a table with the following fields + 'type' the type of the mob ("monster", "animal" or "npc") + 'passive' will mob defend itself, set to false to attack + 'docile_by_day' when true, mob will not attack during daylight hours unless provoked + 'attacks_monsters' usually for npc's to attack monsters in area + 'group_attack' true to defend same kind of mobs from attack in area + 'attack_animals' true for monster to attack animals as well as player and npc's + 'attack_specific' has a table of entity names that monsters can attack {"player", "mobs_animal:chicken"} + 'hp_min' minimum health + 'hp_max' maximum health (mob health is randomly selected between both) + 'physical' same is in minetest.register_entity() + 'collisionbox' same is in minetest.register_entity() + 'visual' same is in minetest.register_entity() + 'visual_size' same is in minetest.register_entity() + 'textures' same is in minetest.register_entity() + although you can add multiple lines for random textures {{"texture1.png"},{"texture2.png"}}, + 'gotten_texture' alt. texture for when self.gotten value is set to true (used for shearing sheep) + 'child_texture' texture of mod for when self.child is set to true + 'mesh' same is in minetest.register_entity() + 'gotten_mesh' alternative mesh for when self.gotten is true (used for sheep) + 'makes_footstep_sound' same is in minetest.register_entity() + 'follow' item when held will cause mob to follow player, can be single string "default:apple" or table {"default:apple", "default:diamond"} + 'view_range' the range in that the monster will see the playerand follow him + 'walk_chance' chance of mob walking around + 'jump_chance' chance of mob jumping around, set above to 0 for jumping mob only + 'walk_velocity' the velocity when the monster is walking around + 'run_velocity' the velocity when the monster is attacking a player + 'runaway' when true mob will turn and run away when punched + 'stepheight' minimum node height mob can walk onto without jumping (default: 0.6) + 'jump' can mob jump, true or false + 'jump_height' height mob can jump, default is 6 + 'fly' can mob fly, true or false (used for swimming mobs also) + 'fly_in' node name that mob flys inside, e.g "air", "default:water_source" for fish + 'damage' the damage per second + 'recovery_time' how much time from when mob is hit to recovery (default: 0.5) + 'knock_back' strength of knock-back when mob hit (default: 3) + 'immune_to' table holding special tool/item names and damage the incur e.g. + {"default:sword_wood", 0}, {"default:gold_lump", -10} immune to sword, gold lump heals + 'blood_amount' number of droplets that appear when hit + 'blood_texture' texture of blood droplets (default: "mobs_blood.png") + 'drops' is list of tables with the following fields: + 'name' itemname e.g. default:stone + 'chance' the inverted chance (same as in abm) to get the item + 'min' the minimum number of items + 'max' the maximum number of items + 'armor' the armor (integer)(3=lowest; 1=highest)(fleshy group is used) + 'drawtype' "front" or "side" (DEPRECATED, replaced with below) + 'rotate' set mob rotation, 0=front, 90=side, 180=back, 270=other side + 'water_damage' the damage per second if the mob is in water + 'lava_damage' the damage per second if the mob is in lava + 'light_damage' the damage per second if the mob is in light + 'fall_damage' will mob be hurt when falling from height + 'fall_speed' speed mob falls (default: -10 and has to be lower than -2) + 'fear_height' when mob walks near a drop then anything over this value makes it stop and turn back (default is 0 to disable) + 'on_die' a function that is called when the mob is killed the parameters are (self, pos) + 'floats' 1 to float in water, 0 to sink + 'on_rightclick' its same as in minetest.register_entity() + 'pathfinding' set to 1 for mobs to use pathfinder feature to locate player, set to 2 so they can build/break also (only works with dogfight attack) + 'attack_type' the attack type of a monster + 'dogfight' follows player in range and attacks when in reach + 'shoot' shoots defined arrows when player is within range + 'explode' follows player in range and will flash and explode when in reach + 'dogshoot' shoots arrows when in range and one on one attack when in reach + 'dogshoot_switch' allows switching between shoot and dogfight modes inside dogshoot using timer (1 = shoot, 2 = dogfight) + 'dogshoot_count_max' number of seconds before switching above modes. + 'custom_attack' is a function that is called when mob is in range to attack player, parameters are (self, to_attack) + 'double_melee_attack' if false then api will choose randomly between 'punch' and 'punch2' attack animations + 'on_blast' is called when TNT explodes near mob, function uses (object, damage) and returns (do_damage, do_knockback, drops) + 'explosion_radius' radius of explosion attack (defaults to 1) + 'arrow' if the attack_type is "shoot" or "dogshoot" then the entity name of the arrow is required + 'shoot_interval' the minimum shoot interval + 'shoot_offset' +/- value to position arrow/fireball when fired + 'reach' how far a reach this mob has, default is 3 + 'sounds' this is a table with sounds of the mob + 'random' random sounds during gameplay + 'war_cry' sound when starting to attack player + 'attack' sound when attacking player + 'shoot_attack' sound when attacking player by shooting arrow/entity + 'damage' sound when being hit + 'death' sound when killed + 'jump' sound when jumping + 'explode' sound when exploding + 'distance' maximum distance sounds are heard from (default is 10) + 'animation' a table with the animation ranges and speed of the model + 'stand_start' start frame of stand animation + 'stand_end' end frame of stand animation + 'walk_start' start frame of walk animation + 'walk_end' end frame of walk animation + 'run_start' start frame of run animation + 'run_end' end frame of run animation + 'punch_start' start frame of punch animation + 'punch_end' end frame of punch animation + 'punch2_start' start frame of alt.punch animation + 'punch2_end' end frame of alt.punch animation + 'shoot_start' start frame of shoot animation + 'shoot_end' end frame of shoot animation + 'speed_normal' normal animation speed + 'speed_run' running animation speed + 'speed_punch' punching animation speed + 'speed_punch2' alternative punching animation speed + 'speed_shoot' shooting animation speed + 'replace_what' group if items to replace e.g. {"farming:wheat_8", "farming:carrot_8"} + 'replace_with' replace with what e.g. "air" or in chickens case "mobs:egg" + 'replace_rate' how random should the replace rate be (typically 10) + 'replace_offset' +/- value to check specific node to replace + + +The mob api also has some preset variables and functions that it will remember for each mob + + 'self.gotten' this is used for obtaining milk from cow and wool from sheep + 'self.horny' when animal fed enough it is set to true and animal can breed with same animal + 'self.child' used for when breeding animals have child, will use child_texture and be half size + 'self.owner' string used to set owner of npc mobs, typically used for dogs + 'self.order' set to "follow" or "stand" so that npc will follow owner or stand it's ground + 'on_die' a function that is called when mob is killed + 'do_custom' a custom function that is called while mob is active and which has access to all of the self.* variables e.g. (self.health for health or self.standing_in for node status), return with 'false' to skip remainder of mob API. + + +mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, day_toggle) + +mobs:spawn_specfic(name, nodes, neighbors, min_light, max_light, interval, chance, active_object_count, min_height, max_height, day_toggle, on_spawn) + +These functions register a spawn algorithm for the mob. Without this function the call the mobs won't spawn. + + 'name' is the name of the animal/monster + 'nodes' is a list of nodenames on that the animal/monster can spawn on top of + 'neighbors' is a list of nodenames on that the animal/monster will spawn beside (default is {"air"} for mobs:register_spawn) + 'max_light' is the maximum of light + 'min_light' is the minimum of light + 'interval' is same as in register_abm() (default is 30 for mobs:register_spawn) + 'chance' is same as in register_abm() + 'active_object_count' mob is only spawned if active_object_count_wider of ABM is <= this + 'min_height' is the maximum height the mob can spawn + 'max_height' is the maximum height the mob can spawn + 'day_toggle' true for day spawning, false for night or nil for anytime + 'on_spawn' is a custom function which runs after mob has spawned and gives self and pos values. + +... also a simpler way to handle mob spawns has been added with the mobs:spawn(def) command which uses above names to make settings clearer: + + mobs:spawn({name = "mobs_monster:tree_monster", + nodes = {"group:leaves"}, + max_light = 7, + }) + + +Players can override the spawn chance for each mob registered by adding a line to their minetest.conf file with a new value, the lower the value the more each mob will spawn e.g. + +mobs_animal:sheep_chance 11000 or mobs_monster:sand_monster_chance 100 + +For each mob that spawns with this function is a field in mobs.spawning_mobs. It tells if the mob should spawn or not. Default is true. So other mods can only use the API of this mod by disabling the spawning of the default mobs in this mod. + + +mobs:register_arrow(name, definition) + +This function registers a arrow for mobs with the attack type shoot. + + 'name' is the name of the arrow + -definition' is a table with the following values: + 'visual' same is in minetest.register_entity() + 'visual_size' same is in minetest.register_entity() + 'textures' same is in minetest.register_entity() + 'velocity' the velocity of the arrow + 'drop' if set to true any arrows hitting a node will drop as item + 'hit_player' a function that is called when the arrow hits a player; this function should hurt the player + the parameters are (self, player) + 'hit_mob' a function that is called when the arrow hits a mob; this function should hurt the mob + the parameters are (self, player) + 'hit_node' a function that is called when the arrow hits a node + the parameters are (self, pos, node) + 'tail' when set to 1 adds a trail or tail to mob arrows + 'tail_texture' texture string used for above effect + 'tail_size' has size for above texture (defaults to between 5 and 10) + 'on_step' is a custom function when arrow is active, nil for default. + + +mobs:register_egg(name, description, background, addegg) + +This function registers a spawn egg which can be used by admin to properly spawn in a mob. + + 'name' this is the name of your new mob to spawn e.g. "mob:sheep" + 'description' the name of the new egg you are creating e.g. "Spawn Sheep" + 'background' the texture displayed for the egg in inventory + 'addegg' would you like an egg image in front of your texture (1=yes, 0=no) + 'no_creative' when set to true this stops spawn egg appearing in creative mode for destructive mobs like Dungeon Masters + + +mobs:explosion(pos, radius, fire, smoke) + +This function generates an explosion which removes nodes in a specific radius and replace them with fire or air. Protection nodes, obsidian and locked chests will not be destroyed although a normal chest will drop it's contents. + + 'pos' centre position of explosion + 'radius' radius of explosion (typically set to 3) + 'fire' should fire appear in explosion (1=yes, 0=no) + 'smoke' should smoke appear in explosion (1=yes, 0=no) + 'sound' sound played when mob explodes + + +mobs:capture_mob(self, clicker, chance_hand, chance_net, chance_lasso, force_take, replacewith) + +This function is generally called inside the on_rightclick section of the mob api code, it provides a chance of capturing the mob by hand, using the net or magic lasso items, and can also have the player take the mob by force if tamed and replace with another item entirely. + + 'self' mob information + 'clicker' player information + 'chance_hand' chance of capturing mob by hand (1 to 100) 0 to disable + 'chance_net' chance of capturing mob using net (1 to 100) 0 to disable + 'chance_lasso' chance of capturing mob using magic lasso (1 to 100) 0 to disable + 'force_take' take mob by force, even if tamed (true or false) + 'replacewith' once captured replace mob with this item instead + + +mobs:feed_tame(self, clicker, feed_count, breed) + +This function allows the mob to be fed the item inside self.follow be it apple, wheat or whatever a set number of times and be tamed or bred as a result. + + 'self' mob information + 'clicker' player information + 'feed_count' number of times mob must be fed to tame or breed + 'breed' true or false stating if mob can be bred and a child created afterwards + 'tame' true or false stating if mob can be tamed so player can pick them up + + +mobs:protect(self, clicker) + +This function can be used to right-click any tamed mob with mobs:protector item, this will protect the mob from harm inside of a protected area from other players. + + 'self' mob information + 'clicker' player information + + +Useful Internal Variables + + 'self.health' contains current health of mob + 'self.texture_list' contains list of all mob textures + 'self.child_texture' contains mob child texture when growing up + 'self.base_texture' contains current skin texture which was randomly selected from textures list + 'self.gotten' true when sheep have been sheared or cows have been milked, a toggle switch which can be used for many functions + 'self.child' true when mob is currently a child (when two mobs have bred and current mob is the outcome) + 'self.hornytimer' background timer that controls breeding functions and mob childhood timings diff --git a/mods/mobs/crafts.lua b/mods/mobs/crafts.lua new file mode 100644 index 000000000..f6c6d839a --- /dev/null +++ b/mods/mobs/crafts.lua @@ -0,0 +1,45 @@ + +local S = mobs.intllib + +-- name tag +minetest.register_craftitem("mobs:nametag", { + description = S("Nametag"), + inventory_image = "mobs_nametag.png", +}) + +core.register_craft({ + type = "shapeless", + output = "mobs:nametag", + recipe = {"default:paper", "dye:black", "farming:string"}, +}) + +-- golden lasso +minetest.register_tool("mobs:magic_lasso", { + description = S("Magic Lasso (right-click animal to put in inventory)"), + inventory_image = "mobs_magic_lasso.png", +}) + +minetest.register_craft({ + output = "mobs:magic_lasso", + recipe = { + {"farming:string", "default:gold_lump", "farming:string"}, + {"default:gold_lump", "default:diamondblock", "default:gold_lump"}, + {"farming:string", "default:gold_lump", "farming:string"}, + } +}) + +-- net +minetest.register_tool("mobs:net", { + description = S("Net (right-click animal to put in inventory)"), + inventory_image = "mobs_net.png", +}) + +minetest.register_craft({ + output = "mobs:net", + recipe = { + {"default:stick", "", "default:stick"}, + {"default:stick", "", "default:stick"}, + {"farming:string", "default:stick", "farming:string"}, + } +}) + diff --git a/mods/mobs/creeper.lua b/mods/mobs/creeper.lua deleted file mode 100644 index 9cbfc4628..000000000 --- a/mods/mobs/creeper.lua +++ /dev/null @@ -1,29 +0,0 @@ -mobs:register_mob("mobs:creeper", { - type = "monster", - hp_max = 10, - collisionbox = {-0.2, 0, -0.2, 0.2, 1.4, 0.2}, - visual = "mesh", - mesh = "creatures_creeper.x", - textures = {"mobs_creeper.png"}, - --visual_size = {x = 1.1, y = 1.1}, - makes_footstep_sound = true, - view_range = 15, - walk_velocity = 1.3, - randomsound= "creeper_random", - run_velocity = 1.1, - on_rightclick = nil, - jump = 0, - damage = 0, - drops = { - {name = "default:gunpowder", - chance = 1, - min = 0, - max = 2,}, - }, - armor = 70, - drawtype = "front", - lava_damage = 15, - light_damage = 0, - attack_type = "kamicaze", -}) - diff --git a/mods/mobs/depends.txt b/mods/mobs/depends.txt index 4ad96d515..5eb2f179b 100644 --- a/mods/mobs/depends.txt +++ b/mods/mobs/depends.txt @@ -1 +1,4 @@ default +invisibility? +intllib? +lucky_block? diff --git a/mods/mobs/description.txt b/mods/mobs/description.txt new file mode 100644 index 000000000..919852a13 --- /dev/null +++ b/mods/mobs/description.txt @@ -0,0 +1 @@ +Adds a mob api for mods to add animals or monsters etc. \ No newline at end of file diff --git a/mods/mobs/init.lua b/mods/mobs/init.lua index b9d0deacf..52dadeeeb 100644 --- a/mods/mobs/init.lua +++ b/mods/mobs/init.lua @@ -1,34 +1,16 @@ -local init = os.clock() -dofile(minetest.get_modpath("mobs").."/api.lua") +local path = minetest.get_modpath("mobs") --- Items -dofile(minetest.get_modpath("mobs").."/item.lua") +-- Mob API +dofile(path .. "/api.lua") --- Mouton -dofile(minetest.get_modpath("mobs").."/sheep.lua") +-- Mob Items +dofile(path .. "/crafts.lua") --- Zombie -dofile(minetest.get_modpath("mobs").."/zombie.lua") +-- Mob Spawner +dofile(path .. "/spawner.lua") --- Slime -dofile(minetest.get_modpath("mobs").."/slime.lua") - --- Creeper -dofile(minetest.get_modpath("mobs").."/creeper.lua") - --- Spider -dofile(minetest.get_modpath("mobs").."/spider.lua") - -if minetest.setting_getbool("spawn_friendly_mobs") ~= false then -- “If not defined or set to true then” - mobs:register_spawn("mobs:sheep", "Sheep", {"default:dirt_with_grass"},16, 8, 2, 250, 100) -end -if minetest.setting_getbool("spawn_hostile_mobs") ~= false then -- “If not defined or set to true then” - mobs:register_spawn("mobs:slime", "Slime", { "default:dirt_with_grass"}, 20, 1, 11, 80, 0) - mobs:register_spawn("mobs:zombie", "Zombie", {"default:stone", "default:dirt", "default:dirt_with_grass", "default:sand"}, 1, -1, 7, 80, 0) - mobs:register_spawn("mobs:spider", "Spider", {"default:stone", "default:dirt", "default:dirt_with_grass", "default:sand"}, 1, -1, 7, 40, 0) -end - -local time_to_load= os.clock() - init -print(string.format("[MOD] "..minetest.get_current_modname().." loaded in %.4f s", time_to_load)) +-- Lucky Blocks +dofile(path .. "/lucky_block.lua") +print ("[MOD] Mobs Redo loaded") diff --git a/mods/mobs/item.lua b/mods/mobs/item.lua deleted file mode 100644 index feacdb850..000000000 --- a/mods/mobs/item.lua +++ /dev/null @@ -1,335 +0,0 @@ ----------------- --- Spawn eggs -- ----------------- -minetest.register_craftitem("mobs:sheep", { - description = "Spawn Sheep", - inventory_image = "spawn_sheep.png", - wield_scale = {x = 1.25, y = 1.25, z = 2.5}, - groups = {}, - - on_place = function(itemstack, placer, pointed_thing) - if pointed_thing.above then - minetest.add_entity(pointed_thing.above, "mobs:sheep") - if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end - minetest.log("action", placer:get_player_name() .. " placed a sheep at " .. minetest.pos_to_string(pointed_thing.above) .. ".") - end - return itemstack - end, -}) - -minetest.register_craftitem("mobs:slime", { - description = "Spawn Slime", - inventory_image = "spawn_slime.png", - wield_scale = {x = 1.25, y = 1.25, z = 2.5}, - groups = {}, - - on_place = function(itemstack, placer, pointed_thing) - if pointed_thing.above then - minetest.add_entity(pointed_thing.above, "mobs:slime") - if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end - minetest.log("action", placer:get_player_name() .. " placed a slime at " .. minetest.pos_to_string(pointed_thing.above) .. ".") - end - return itemstack - end, -}) - -minetest.register_craftitem("mobs:zombie", { - description = "Spawn Zombie", - inventory_image = "spawn_zombie.png", - wield_scale = {x = 1.25, y = 1.25, z = 2.5}, - groups = {}, - - on_place = function(itemstack, placer, pointed_thing) - if pointed_thing.above then - minetest.add_entity(pointed_thing.above, "mobs:zombie") - if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end - minetest.log("action", placer:get_player_name() .. " placed a zombie at " .. minetest.pos_to_string(pointed_thing.above) .. ".") - end - return itemstack - end, -}) - -minetest.register_craftitem("mobs:spider", { - description = "Spawn Spider", - inventory_image = "spawn_spider.png", - wield_scale = {x = 1.25, y = 1.25, z = 2.5}, - groups = {}, - - on_place = function(itemstack, placer, pointed_thing) - if pointed_thing.above then - minetest.add_entity(pointed_thing.above, "mobs:spider") - if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end - minetest.log("action", placer:get_player_name() .. " placed a spider at " .. minetest.pos_to_string(pointed_thing.above) .. ".") - end - return itemstack - end, -}) - - -minetest.register_craftitem("mobs:creeper", { - description = "Spawn Creeper", - inventory_image = "spawn_creeper.png", - wield_scale = {x = 1.25, y = 1.25, z = 2.5}, - groups = {}, - - on_place = function(itemstack, placer, pointed_thing) - if pointed_thing.above then - minetest.add_entity(pointed_thing.above, "mobs:creeper") - if not minetest.setting_getbool("creative_mode") then itemstack:take_item() end - minetest.log("action", placer:get_player_name() .. " placed a creeper at " .. minetest.pos_to_string(pointed_thing.above) .. ".") - end - return itemstack - end, -}) - ---------------------- --- Drop de monstre -- ---------------------- - --- TODO: Add special status effects for raw flesh - -minetest.register_craftitem("mobs:rotten_flesh", { - description = "Rotten Flesh", - inventory_image = "rotten_flesh.png", - wield_image = "rotten_flesh.png", - -- TODO: Raise to 4 - on_use = minetest.item_eat(1), - groups = { food = 2, eatable = 1 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:mutton", { - description = "Raw Mutton", - inventory_image = "mutton_raw.png", - wield_image = "mutton_raw.png", - on_use = minetest.item_eat(2), - groups = { food = 2, eatable = 2 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:cooked_mutton", { - description = "Cooked Mutton", - inventory_image = "mutton_cooked.png", - wield_image = "mutton_cooked.png", - on_use = minetest.item_eat(6), - groups = { food = 2, eatable = 6 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:beef", { - description = "Raw Beef", - inventory_image = "mobs_beef_raw.png", - wield_image = "mobs_beef_raw.png", - on_use = minetest.item_eat(3), - groups = { food = 2, eatable = 3 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:cooked_beef", { - description = "Steak", - inventory_image = "mobs_beef_cooked.png", - wield_image = "mobs_beef_cooked.png", - on_use = minetest.item_eat(8), - groups = { food = 2, eatable = 8 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:chicken", { - description = "Raw Chicken", - inventory_image = "mobs_chicken_raw.png", - wield_image = "mobs_chicken_raw.png", - on_use = minetest.item_eat(2), - groups = { food = 2, eatable = 2 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:cooked_chicken", { - description = "Cooked Chicken", - inventory_image = "mobs_chicken_cooked.png", - wield_image = "mobs_chicken_cooked.png", - on_use = minetest.item_eat(6), - groups = { food = 2, eatable = 6 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:porkchop", { - description = "Raw Porkchop", - inventory_image = "mobs_porkchop_raw.png", - wield_image = "mobs_porkchop.png", - on_use = minetest.item_eat(3), - groups = { food = 2, eatable = 3 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:cooked_porkchop", { - description = "Cooked Porkchop", - inventory_image = "mobs_porkchop_cooked.png", - wield_image = "mobs_porkchop_cooked.png", - on_use = minetest.item_eat(8), - groups = { food = 2, eatable = 8 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:rabbit", { - description = "Raw Rabbit", - inventory_image = "mobs_rabbit_raw.png", - wield_image = "mobs_rabbit_raw.png", - on_use = minetest.item_eat(3), - groups = { food = 2, eatable = 3 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:cooked_rabbit", { - description = "Cooked Rabbit", - inventory_image = "mobs_rabbit_cooked.png", - wield_image = "mobs_rabbit_cooked.png", - on_use = minetest.item_eat(5), - groups = { food = 2, eatable = 5 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:spider_eye", { - description = "Spider Eye", - inventory_image = "spider_eye.png", - wield_image = "spider_eye.png", - on_use = minetest.item_eat(2), - groups = { food = 2, eatable = 2 }, - stack_max = 64, -}) - -minetest.register_craftitem("mobs:blaze_rod", { - description = "Blaze Rod", - wield_image = "mobs_blaze_rod.png", - inventory_image = "mobs_blaze_rod.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:blaze_powder", { - description = "Blaze Powder", - wield_image = "mobs_blaze_powder.png", - inventory_image = "mobs_blaze_powder.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:magma_cream", { - description = "Magma Cream", - wield_image = "mobs_magma_cream.png", - inventory_image = "mobs_magma_cream.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:ghast_tear", { - description = "Ghast Tear", - wield_image = "mobs_ghast_tear.png", - inventory_image = "mobs_ghast_tear.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:nether_star", { - description = "Nether Star", - wield_image = "mobs_nether_star.png", - inventory_image = "mobs_nether_star.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:leather", { - description = "Leather", - wield_image = "mobs_leather.png", - inventory_image = "mobs_leather.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:feather", { - description = "Feather", - wield_image = "mobs_feather.png", - inventory_image = "mobs_feather.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:rabbit_hide", { - description = "Rabbit Hide", - wield_image = "mobs_rabbit_hide.png", - inventory_image = "mobs_rabbit_hide.png", - stack_max = 64, -}) - -minetest.register_craftitem("mobs:rabbit_foot", { - description = "Rabbit's Foot", - wield_image = "mobs_rabbit_foot.png", - inventory_image = "mobs_rabbit_foot.png", - stack_max = 64, -}) - ------------ --- Crafting ------------ - -minetest.register_craft({ - output = "mobs:leather", - recipe = { - { "mobs:rabbit_hide", "mobs:rabbit_hide" }, - { "mobs:rabbit_hide", "mobs:rabbit_hide" }, - } -}) - -minetest.register_craft({ - output = "mobs:blaze_powder 2", - recipe = {{"mobs:blaze_rod"}}, -}) - -minetest.register_craft({ - type = "shapeless", - output = "mobs:magma_cream", - recipe = {"mobs:blaze_powder", "mesecons_materials:glue"}, -}) - -minetest.register_craft({ - type = "cooking", - output = "mobs:cooked_mutton", - recipe = "mobs:mutton", - cooktime = 10, -}) - -minetest.register_craft({ - type = "cooking", - output = "mobs:cooked_rabbit", - recipe = "mobs:rabbit", - cooktime = 10, -}) - -minetest.register_craft({ - type = "cooking", - output = "mobs:cooked_chicken", - recipe = "mobs:chicken", - cooktime = 10, -}) - -minetest.register_craft({ - type = "cooking", - output = "mobs:cooked_beef", - recipe = "mobs:beef", - cooktime = 10, -}) - -minetest.register_craft({ - type = "fuel", - recipe = "mobs:blaze_rod", - burntime = 120, -}) - --- Temporary helper recipes --- TODO: Remove them -minetest.register_craft({ - type = "shapeless", - output = "mobs:leather", - recipe = { "default:paper", "default:paper" }, -}) -minetest.register_craft({ - output = "mobs:feather 3", - recipe = { - { "flowers:oxeye_daisy" }, - { "flowers:oxeye_daisy" }, - } -}) - - diff --git a/mods/mobs/license.txt b/mods/mobs/license.txt new file mode 100644 index 000000000..fec6f6aa5 --- /dev/null +++ b/mods/mobs/license.txt @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2016 TenPlus1 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/mods/mobs/locale/de.txt b/mods/mobs/locale/de.txt new file mode 100644 index 000000000..aa7a7a7a9 --- /dev/null +++ b/mods/mobs/locale/de.txt @@ -0,0 +1,38 @@ +# German Translation for mobs_redo mod +# Deutsche Übersetzung der mobs_redo Mod +# last update: 2016/June/10 +# Author: Xanthin + +#init.lua +[MOD] Mobs Redo loaded = [MOD] Mobs Redo geladen + +#api.lua +[MOBS] mod profiling enabled, damage not enabled = [MOBS] Modanalyse aktiviert, Schaden deaktiviert +lifetimer expired, removed @1 = Lebensdauer abgelaufen, @1 wurde entfernt +[Mobs Redo] @1 has spawning disabled = [Mobs Redo] Spawnen von @1 ist deaktiviert +[Mobs Redo] Chance setting for @1 is now @2 = [Mobs Redo] Wahrscheinlichkeitswert für @1 ist jetzt @2 +[mobs] @1 failed to spawn at @2 = [mobs] @1 konnte nicht bei @2 spawnen +Not tamed! = Nicht gezähmt! +@1 is owner! = @1 ist Besitzer! +Missed! = Verfehlt! +@1 at full health (@2) = @1 bei voller Gesundheit (@2) +@1 has been tamed! = @1 ist gezähmt worden! +Enter name: = Namen eingeben: +Rename = Umbenennen + +#crafts.lua +Nametag = Namensschild +Leather = Leder +Raw Meat = Rohes Fleisch +Meat = Fleisch +Magic Lasso (right-click animal to put in inventory) = Magisches Lasso (Rechtsklick auf Tier,\num es ins Inventar zu legen) +Net (right-click animal to put in inventory) = Netz (Rechtsklick auf Tier,\num es ins Inventar zu legen) +Steel Shears (right-click to shear) = Stahlschere (Rechtsklick zum Scheren) + +#spawner.lua +Mob Spawner = Mobspawner +Mob MinLight MaxLight Amount PlayerDist = Mob MinLicht MaxLicht Menge SpielerEntfng +Spawner Not Active (enter settings) = Spawner nicht aktiv (Einstellungen eintragen) +Spawner Active (@1) = Spawner aktiv (@1) +Mob Spawner settings failed! = Mobspawnereinstellungen gescheitert! +> name min_light[0-14] max_light[0-14] max_mobs_in_area[0 to disable] distance[1-20] y_offset[-10 to 10] = Name min. Licht[0-14] max. Licht[0-14] max. Mobs in Gebiet[0 zum deaktivieren] Entfernung zum Spieler[1-20] Höhe[-10 bis 10] \ No newline at end of file diff --git a/mods/mobs/locale/pt.txt b/mods/mobs/locale/pt.txt new file mode 100644 index 000000000..064631fe3 --- /dev/null +++ b/mods/mobs/locale/pt.txt @@ -0,0 +1,38 @@ +# Portuguese Translation for mobs_redo mod +# Tradução em Portugues do mod mobs_redo +# Ultima revisao: 30/Ago/2016 +# Autor: BrunoMine + +#init.lua +[MOD] Mobs Redo loaded = [MOD] Mobs Redo carregado + +#api.lua +[MOBS] mod profiling enabled, damage not enabled = [MOBS] Mod criador de perfis ativado, dano desabilitado +lifetimer expired, removed @1 = tempo de vida expirado, @1 removido +[Mobs Redo] @1 has spawning disabled = [Mobs Redo] @1 teve spawn desabilitado +[Mobs Redo] Chance setting for @1 is now @2 = [Mobs Redo] Chances para @1 agora vai ser @2 +[mobs] @1 failed to spawn at @2 = [mobs] @1 falhou ao spawnar em @2 +Not tamed! = Indomesticado! +@1 is owner! = Dono @1! +Missed! = Faltou! +@1 at full health (@2) = @1 em plena saude (@2) +@1 has been tamed! = @1 foi domesticado! +Enter name: = Insira um nome: +Rename = Renomear + +#crafts.lua +Nametag = Etiqueta +Leather = Couro +Raw Meat = Carne crua +Meat = Carne +Magic Lasso (right-click animal to put in inventory) = Laço Magico (clique-direito no animal para por no inventario) +Net (right-click animal to put in inventory) = Net (clique-direito no animal para por no inventario) +Steel Shears (right-click to shear) = Tesoura de Aço (clique-direito para tosquiar) + +#spawner.lua +Mob Spawner = Spawnador de Mob +Mob MinLight MaxLight Amount PlayerDist = Mob LuzMinima LuzMaxima Valor DistJogador +Spawner Not Active (enter settings) = Spawnador Inativo (configurar) +Spawner Active (@1) = Spawnador Ativo (@1) +Mob Spawner settings failed! = Configuraçao de Spawnador do Mob falhou! +> name min_light[0-14] max_light[0-14] max_mobs_in_area[0 to disable] distance[1-20] y_offset[-10 to 10] = > nome luz_min[0-14] luz_max[0-14] max_mobs_na_area[0 para desabilitar] distancia[1-20] y_offset[-10 a 10] diff --git a/mods/mobs/locale/template.txt b/mods/mobs/locale/template.txt new file mode 100644 index 000000000..c263ce97d --- /dev/null +++ b/mods/mobs/locale/template.txt @@ -0,0 +1,36 @@ +# Template for translations of mobs_redo mod +# last update: 2016/June/10 + +#init.lua +[MOD] Mobs Redo loaded = + +#api.lua +[MOBS] mod profiling enabled, damage not enabled = +lifetimer expired, removed @1 = +[Mobs Redo] @1 has spawning disabled = +[Mobs Redo] Chance setting for @1 is now @2 = +[mobs] @1 failed to spawn at @2 = +Not tamed! = +@1 is owner! = +Missed! = +@1 at full health (@2) = +@1 has been tamed! = +Enter name: = +Rename = + +#crafts.lua +Nametag = +Leather = +Raw Meat = +Meat = +Magic Lasso (right-click animal to put in inventory) = +Net (right-click animal to put in inventory) = +Steel Shears (right-click to shear) = + +#spawner.lua +Mob Spawner = +Mob MinLight MaxLight Amount PlayerDist = +Spawner Not Active (enter settings) = +Spawner Active (@1) = +Mob Spawner settings failed! = +> name min_light[0-14] max_light[0-14] max_mobs_in_area[0 to disable] distance[1-20] y_offset[-10 to 10] = \ No newline at end of file diff --git a/mods/mobs/lucky_block.lua b/mods/mobs/lucky_block.lua new file mode 100644 index 000000000..0c2794f6a --- /dev/null +++ b/mods/mobs/lucky_block.lua @@ -0,0 +1,15 @@ + +if minetest.get_modpath("lucky_block") then + + lucky_block:add_blocks({ + {"dro", {"mobs:meat_raw"}, 5}, + {"dro", {"mobs:meat"}, 5}, + {"dro", {"mobs:nametag"}, 1}, + {"dro", {"mobs:leather"}, 5}, + {"dro", {"mobs:net"}, 1}, + {"dro", {"mobs:magic_lasso"}, 1}, + {"dro", {"mobs:shears"}, 1}, + {"dro", {"mobs:protector"}, 1}, + {"lig"}, + }) +end diff --git a/mods/mobs/mod.conf b/mods/mobs/mod.conf new file mode 100644 index 000000000..f3a3ad743 --- /dev/null +++ b/mods/mobs/mod.conf @@ -0,0 +1 @@ +name = mobs diff --git a/mods/mobs/models/creatures_creeper.x b/mods/mobs/models/creatures_creeper.x deleted file mode 100644 index 40be34de7..000000000 --- a/mods/mobs/models/creatures_creeper.x +++ /dev/null @@ -1,441 +0,0 @@ -xof 0302txt 0064 -// File created by CINEMA 4D - - -template Vector { - <3D82AB5E-62DA-11cf-AB39-0020AF71E433> - FLOAT x; - FLOAT y; - FLOAT z; -} - -template Coords2d { - - FLOAT u; - FLOAT v; -} - -template Matrix4x4 { - - array FLOAT matrix[16]; -} - -template ColorRGBA { - <35FF44E0-6C7C-11cf-8F52-0040333594A3> - FLOAT red; - FLOAT green; - FLOAT blue; - FLOAT alpha; -} - -template ColorRGB { - - FLOAT red; - FLOAT green; - FLOAT blue; -} - -template IndexedColor { - <1630B820-7842-11cf-8F52-0040333594A3> - DWORD index; - ColorRGBA indexColor; -} - -template Boolean { - <4885AE61-78E8-11cf-8F52-0040333594A3> - SWORD truefalse; -} - -template Boolean2d { - <4885AE63-78E8-11cf-8F52-0040333594A3> - Boolean u; - Boolean v; -} - -template MaterialWrap { - <4885AE60-78E8-11cf-8F52-0040333594A3> - Boolean u; - Boolean v; -} - -template TextureFilename { - - STRING filename; -} - -template Material { - <3D82AB4D-62DA-11cf-AB39-0020AF71E433> - ColorRGBA faceColor; - FLOAT power; - ColorRGB specularColor; - ColorRGB emissiveColor; - [...] -} - -template MeshFace { - <3D82AB5F-62DA-11cf-AB39-0020AF71E433> - DWORD nFaceVertexIndices; - array DWORD faceVertexIndices[nFaceVertexIndices]; -} - -template MeshFaceWraps { - <4885AE62-78E8-11cf-8F52-0040333594A3> - DWORD nFaceWrapValues; - Boolean2d faceWrapValues; -} - -template MeshTextureCoords { - - DWORD nTextureCoords; - array Coords2d textureCoords[nTextureCoords]; -} - -template MeshMaterialList { - - DWORD nMaterials; - DWORD nFaceIndexes; - array DWORD faceIndexes[nFaceIndexes]; - [Material] -} - -template MeshNormals { - - DWORD nNormals; - array Vector normals[nNormals]; - DWORD nFaceNormals; - array MeshFace faceNormals[nFaceNormals]; -} - -template MeshVertexColors { - <1630B821-7842-11cf-8F52-0040333594A3> - DWORD nVertexColors; - array IndexedColor vertexColors[nVertexColors]; -} - -template Mesh { - <3D82AB44-62DA-11cf-AB39-0020AF71E433> - DWORD nVertices; - array Vector vertices[nVertices]; - DWORD nFaces; - array MeshFace faces[nFaces]; - [...] -} - -template FrameTransformMatrix { - - Matrix4x4 frameMatrix; -} - -template Frame { - <3D82AB46-62DA-11cf-AB39-0020AF71E433> - [...] -} - -Mesh CINEMA4D_Mesh { - 48; - // Head - -2.149;9.488;-4.004;, - -2.152;13.894;-4.005;, - 1.98;9.491;-4.036;, - 1.978;13.897;-4.038;, - 2.012;9.492;0.093;, - 2.01;13.898;0.092;, - -2.117;9.489;0.125;, - -2.119;13.896;0.124;, - // Body - -2.133;2.881;-2.988;, - -2.133;9.49;-2.988;, - 1.996;2.881;-2.988;, - 1.996;9.49;-2.988;, - 1.996;2.881;-0.923;, - 1.996;9.49;-0.923;, - -2.133;2.881;-0.923;, - -2.133;9.49;-0.923;, - // Right_Foot_Front - -2.133;0.528;-5.985;, - -2.133;3.634;-4.926;, - -0.068;0.528;-5.985;, - -0.068;3.634;-4.926;, - -0.068;-0.225;-4.045;, - -0.068;2.88;-2.986;, - -2.133;-0.225;-4.045;, - -2.133;2.88;-2.986;, - // Right_Foot_Back - -2.133;-0.225;0.134;, - -2.133;2.88;-0.925;, - -0.068;-0.225;0.134;, - -0.068;2.88;-0.925;, - -0.068;0.528;2.074;, - -0.068;3.634;1.015;, - -2.133;0.528;2.074;, - -2.133;3.634;1.015;, - // Left_Foot_Front - -0.068;-0.479;-5.081;, - -0.068;2.802;-5.068;, - 1.996;-0.479;-5.081;, - 1.996;2.802;-5.068;, - 1.996;-0.4;-3.001;, - 1.996;2.881;-2.988;, - -0.068;-0.4;-3.001;, - -0.068;2.881;-2.988;, - // Left_Foot_Back - -0.068;-0.225;-1.98;, - -0.068;2.88;-0.921;, - 1.996;-0.225;-1.98;, - 1.996;2.88;-0.921;, - 1.996;-0.979;-0.04;, - 1.996;2.127;1.02;, - -0.068;-0.979;-0.04;, - -0.068;2.127;1.02;; - - 36; - // Head - 4;0,1,3,2;, - 4;2,3,5,4;, - 4;4,5,7,6;, - 4;6,7,1,0;, - 4;1,7,5,3;, - 4;6,0,2,4;, - // Body - 4;8,9,11,10;, - 4;10,11,13,12;, - 4;12,13,15,14;, - 4;14,15,9,8;, - 4;9,15,13,11;, - 4;14,8,10,12;, - // Right_Foot_Front - 4;16,17,19,18;, - 4;18,19,21,20;, - 4;20,21,23,22;, - 4;22,23,17,16;, - 4;17,23,21,19;, - 4;22,16,18,20;, - // Right_Foot_Back - 4;24,25,27,26;, - 4;26,27,29,28;, - 4;28,29,31,30;, - 4;30,31,25,24;, - 4;25,31,29,27;, - 4;30,24,26,28;, - // Left_Foot_Front - 4;32,33,35,34;, - 4;34,35,37,36;, - 4;36,37,39,38;, - 4;38,39,33,32;, - 4;33,39,37,35;, - 4;38,32,34,36;, - // Left_Foot_Back - 4;40,41,43,42;, - 4;42,43,45,44;, - 4;44,45,47,46;, - 4;46,47,41,40;, - 4;41,47,45,43;, - 4;46,40,42,44;; - - MeshNormals { - 48; - // Head - -0.582;-0.578;-0.573;, - -0.582;0.577;-0.573;, - 0.573;-0.577;-0.582;, - 0.572;0.578;-0.582;, - 0.582;-0.577;0.573;, - 0.582;0.578;0.573;, - -0.572;-0.578;0.582;, - -0.573;0.577;0.582;, - // Body - -0.333;-0.667;-0.667;, - -0.333;0.667;-0.667;, - 0.333;-0.667;-0.667;, - 0.333;0.667;-0.667;, - 0.333;-0.667;0.667;, - 0.333;0.667;0.667;, - -0.333;-0.667;0.667;, - -0.333;0.667;0.667;, - // Right_Foot_Front - -0.572;-0.346;-0.743;, - -0.588;0.733;-0.341;, - 0.572;-0.346;-0.743;, - 0.588;0.733;-0.341;, - 0.588;-0.733;0.341;, - 0.572;0.346;0.743;, - -0.588;-0.733;0.341;, - -0.572;0.346;0.743;, - // Right_Foot_Back - -0.588;-0.733;-0.341;, - -0.572;0.346;-0.743;, - 0.588;-0.733;-0.341;, - 0.572;0.346;-0.743;, - 0.572;-0.346;0.743;, - 0.588;0.733;0.341;, - -0.572;-0.346;0.743;, - -0.588;0.733;0.341;, - // Left_Foot_Front - -0.588;-0.581;-0.562;, - -0.572;0.57;-0.59;, - 0.588;-0.581;-0.562;, - 0.572;0.57;-0.59;, - 0.572;-0.57;0.59;, - 0.588;0.581;0.562;, - -0.572;-0.57;0.59;, - -0.588;0.581;0.562;, - // Left_Foot_Back - -0.572;-0.346;-0.743;, - -0.588;0.733;-0.341;, - 0.572;-0.346;-0.743;, - 0.588;0.733;-0.341;, - 0.588;-0.733;0.341;, - 0.572;0.346;0.743;, - -0.588;-0.733;0.341;, - -0.572;0.346;0.743;; - - 36; - // Head - 4;0,1,3,2;, - 4;2,3,5,4;, - 4;4,5,7,6;, - 4;6,7,1,0;, - 4;1,7,5,3;, - 4;6,0,2,4;, - // Body - 4;8,9,11,10;, - 4;10,11,13,12;, - 4;12,13,15,14;, - 4;14,15,9,8;, - 4;9,15,13,11;, - 4;14,8,10,12;, - // Right_Foot_Front - 4;16,17,19,18;, - 4;18,19,21,20;, - 4;20,21,23,22;, - 4;22,23,17,16;, - 4;17,23,21,19;, - 4;22,16,18,20;, - // Right_Foot_Back - 4;24,25,27,26;, - 4;26,27,29,28;, - 4;28,29,31,30;, - 4;30,31,25,24;, - 4;25,31,29,27;, - 4;30,24,26,28;, - // Left_Foot_Front - 4;32,33,35,34;, - 4;34,35,37,36;, - 4;36,37,39,38;, - 4;38,39,33,32;, - 4;33,39,37,35;, - 4;38,32,34,36;, - // Left_Foot_Back - 4;40,41,43,42;, - 4;42,43,45,44;, - 4;44,45,47,46;, - 4;46,47,41,40;, - 4;41,47,45,43;, - 4;46,40,42,44;; - - } - MeshTextureCoords { - 48; - // Head - 0.25;0.0;, - 0.125;0.25;, - 0.375;0.0;, - 0.25;0.25;, - 0.375;0.25;, - 0.25;0.0;, - 0.25;0.25;, - 0.125;0.0;, - // Body - 0.438;0.5;, - 0.313;0.625;, - 0.562;0.501;, - 0.438;0.625;, - 0.562;0.625;, - 0.438;0.5;, - 0.438;0.625;, - 0.313;0.5;, - // Right_Foot_Front - 0.125;0.5;, - 0.063;0.625;, - 0.188;0.5;, - 0.125;0.625;, - 0.188;0.626;, - 0.125;0.5;, - 0.125;0.625;, - 0.063;0.5;, - // Right_Foot_Back - 0.125;0.5;, - 0.063;0.625;, - 0.188;0.5;, - 0.125;0.625;, - 0.188;0.626;, - 0.125;0.5;, - 0.125;0.625;, - 0.063;0.5;, - // Left_Foot_Front - 0.125;0.5;, - 0.063;0.625;, - 0.188;0.5;, - 0.125;0.625;, - 0.188;0.626;, - 0.125;0.5;, - 0.125;0.625;, - 0.063;0.5;, - // Left_Foot_Back - 0.125;0.5;, - 0.063;0.625;, - 0.188;0.5;, - 0.125;0.625;, - 0.188;0.626;, - 0.125;0.5;, - 0.125;0.625;, - 0.063;0.5;; - } - MeshMaterialList { - 1; - 36; - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0; - - Material C4DMAT_NONE { - 1.0;1.0;1.0;1.0;; - 1.0; - 0.0;0.0;0.0;; - 0.0;0.0;0.0;; - } - } -} \ No newline at end of file diff --git a/mods/mobs/models/creatures_herobrine.x b/mods/mobs/models/creatures_herobrine.x deleted file mode 100644 index 186943fbc..000000000 --- a/mods/mobs/models/creatures_herobrine.x +++ /dev/null @@ -1,5524 +0,0 @@ -xof 0303txt 0032 - -template XSkinMeshHeader { - <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> - WORD nMaxSkinWeightsPerVertex; - WORD nMaxSkinWeightsPerFace; - WORD nBones; -} - -template SkinWeights { - <6f0d123b-bad2-4167-a0d0-80224f25fabb> - STRING transformNodeName; - DWORD nWeights; - array DWORD vertexIndices[nWeights]; - array float weights[nWeights]; - Matrix4x4 matrixOffset; -} - -Frame Root { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Frame Armature { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000,-10.000000, 1.000000;; - } - Frame Armature_Body { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - -0.000000, 0.000000, 6.750000, 1.000000;; - } - Frame Armature_Arm_Left { - FrameTransformMatrix { - 0.989214,-0.143886,-0.027450, 0.000000, - -0.143940,-0.989586,-0.000000, 0.000000, - -0.027164, 0.003951,-0.999623, 0.000000, - -2.000000, 6.750000, 0.000000, 1.000000;; - } - } // End of Armature_Arm_Left - Frame Armature_Arm_Right { - FrameTransformMatrix { - 0.989214, 0.143886, 0.027450, 0.000000, - 0.143940,-0.989586,-0.000000, 0.000000, - 0.027164, 0.003951,-0.999623, 0.000000, - 2.000000, 6.750000, 0.000000, 1.000000;; - } - } // End of Armature_Arm_Right - Frame Armature_Head { - FrameTransformMatrix { - -1.000000,-0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 0.000000, 6.750000, 0.000000, 1.000000;; - } - } // End of Armature_Head - Frame Armature_Leg_Left { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - -1.000000, 0.000000,-0.000001, 1.000000;; - } - } // End of Armature_Leg_Left - Frame Armature_Leg_Right { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 1.000000, 0.000000,-0.000001, 1.000000;; - } - } // End of Armature_Leg_Right - } // End of Armature_Body - Frame Player { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Mesh { // Player mesh - 168; - 2.000000;-1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - 2.000000;-1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 0.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 6.750000;, - -2.000000;-1.000000;13.500000;, - -4.000000;-1.000000;13.500000;, - -4.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -2.000000;-1.000000; 0.000000;, - -2.000000; 1.000000; 0.000000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 0.000000;, - -2.000000;-1.000000; 0.000000;, - 2.000000;-2.000000;17.500000;, - -2.000000;-2.000000;17.500000;, - -2.000000;-2.000000;13.500000;, - 2.000000;-2.000000;13.500000;, - -2.000000;-2.000000;17.500000;, - -2.000000; 2.000000;17.500000;, - -2.000000; 2.000000;13.500000;, - -2.000000;-2.000000;13.500000;, - -2.000000; 2.000000;17.500000;, - 2.000000; 2.000000;17.500000;, - 2.000000; 2.000000;13.500000;, - -2.000000; 2.000000;13.500000;, - 2.000000; 2.000000;13.500000;, - 2.000000;-2.000000;13.500000;, - -2.000000;-2.000000;13.500000;, - -2.000000; 2.000000;13.500000;, - -2.000000; 2.000000;17.500000;, - -2.000000;-2.000000;17.500000;, - 2.000000;-2.000000;17.500000;, - 2.000000; 2.000000;17.500000;, - 0.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - -2.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 4.000000; 1.000000; 6.750000;, - 4.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 4.000000; 1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 2.000000;-1.000000;13.500000;, - 4.000000;-1.000000;13.500000;, - 0.000000;-1.000000; 6.750000;, - 0.000000;-1.000000; 0.000000;, - 2.000000;-1.000000; 0.000000;, - 2.000000;-1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - -0.000000;-1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 0.000000;, - 2.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - 2.000000;-1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000;13.500000;, - 2.000000;-2.000000;17.500000;, - 2.000000;-2.000000;13.500000;, - 2.000000; 2.000000;13.500000;, - 2.000000; 2.000000;17.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - -4.000000; 1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -4.000000; 1.000000; 6.750000;, - -4.000000;-1.000000;13.500000;, - -4.000000; 1.000000;13.500000;, - -4.000000; 1.000000; 6.750000;, - -4.000000;-1.000000; 6.750000;, - 4.000000;-1.000000;13.500000;, - 4.000000;-1.000000; 6.750000;, - 4.000000; 1.000000; 6.750000;, - 4.000000; 1.000000;13.500000;, - -4.000000; 1.000000;13.500000;, - -4.000000;-1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - 4.000000; 1.000000;13.500000;, - 4.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000;13.500000;, - 0.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 0.000000;, - 2.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 2.000000; 1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -4.000000;-1.000000; 6.750000;, - -4.000000; 1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - 2.000000;-1.000000; 6.750000;, - 4.000000;-1.000000; 6.750000;, - 4.000000;-1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 2.200000;-2.200000;17.700001;, - -2.200000;-2.200000;17.700001;, - -2.200000;-2.200000;13.300000;, - 2.200000;-2.200000;13.300000;, - -2.200000;-2.200000;17.700001;, - -2.200000; 2.200000;17.700001;, - -2.200000; 2.200000;13.300000;, - -2.200000;-2.200000;13.300000;, - -2.200000; 2.200000;17.700001;, - 2.200000; 2.200000;17.700001;, - 2.200000; 2.200000;13.300000;, - -2.200000; 2.200000;13.300000;, - 2.200000; 2.200000;13.300000;, - 2.200000;-2.200000;13.300000;, - -2.200000;-2.200000;13.300000;, - -2.200000; 2.200000;13.300000;, - -2.200000; 2.200000;17.700001;, - -2.200000;-2.200000;17.700001;, - 2.200000;-2.200000;17.700001;, - 2.200000; 2.200000;17.700001;, - 2.200000;-2.200000;17.700001;, - 2.200000;-2.200000;13.300000;, - 2.200000; 2.200000;13.300000;, - 2.200000; 2.200000;17.700001;; - 42; - 4;3,2,1,0;, - 4;7,6,5,4;, - 4;11,10,9,8;, - 4;15,14,13,12;, - 4;19,18,17,16;, - 4;23,22,21,20;, - 4;27,26,25,24;, - 4;31,30,29,28;, - 4;35,34,33,32;, - 4;39,38,37,36;, - 4;43,42,41,40;, - 4;47,46,45,44;, - 4;51,50,49,48;, - 4;55,54,53,52;, - 4;59,58,57,56;, - 4;63,62,61,60;, - 4;67,66,65,64;, - 4;71,70,69,68;, - 4;75,74,73,72;, - 4;79,78,77,76;, - 4;83,82,81,80;, - 4;87,86,85,84;, - 4;91,90,89,88;, - 4;95,94,93,92;, - 4;99,98,97,96;, - 4;103,102,101,100;, - 4;107,106,105,104;, - 4;111,110,109,108;, - 4;115,114,113,112;, - 4;119,118,117,116;, - 4;123,122,121,120;, - 4;127,126,125,124;, - 4;131,130,129,128;, - 4;135,134,133,132;, - 4;139,138,137,136;, - 4;143,142,141,140;, - 4;147,146,145,144;, - 4;151,150,149,148;, - 4;155,154,153,152;, - 4;159,158,157,156;, - 4;163,162,161,160;, - 4;167,166,165,164;; - MeshTextureCoords { // Player UV coordinates - 168; - 0.625000; 0.625000;, - 0.500000; 0.625000;, - 0.500000; 1.000000;, - 0.625000; 1.000000;, - 0.500000; 0.625000;, - 0.437500; 0.625000;, - 0.437500; 1.000000;, - 0.500000; 1.000000;, - 0.437500; 0.625000;, - 0.312500; 0.625000;, - 0.312500; 1.000000;, - 0.437500; 1.000000;, - 0.562500; 0.625000;, - 0.562500; 0.500000;, - 0.437500; 0.500000;, - 0.437500; 0.625000;, - 0.437500; 0.625000;, - 0.437500; 0.500000;, - 0.312500; 0.500000;, - 0.312500; 0.625000;, - 0.187500; 0.625000;, - 0.187500; 1.000000;, - 0.125000; 1.000000;, - 0.125000; 0.625000;, - 0.812500; 0.625000;, - 0.875000; 0.625000;, - 0.875000; 1.000000;, - 0.812500; 1.000000;, - 0.750000; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 1.000000;, - 0.750000; 1.000000;, - 0.187500; 0.625000;, - 0.187500; 0.500000;, - 0.125000; 0.500000;, - 0.125000; 0.625000;, - 0.000000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 1.000000;, - 0.000000; 1.000000;, - 0.500000; 0.250000;, - 0.375000; 0.250000;, - 0.375000; 0.500000;, - 0.500000; 0.500000;, - 0.375000; 0.250000;, - 0.250000; 0.250000;, - 0.250000; 0.500000;, - 0.375000; 0.500000;, - 0.250000; 0.250000;, - 0.125000; 0.250000;, - 0.125000; 0.500000;, - 0.250000; 0.500000;, - 0.375000; 0.250000;, - 0.375000; 0.000000;, - 0.250000; 0.000000;, - 0.250000; 0.250000;, - 0.250000; 0.250000;, - 0.250000; 0.000000;, - 0.125000; 0.000000;, - 0.125000; 0.250000;, - 0.250000; 0.625000;, - 0.187500; 0.625000;, - 0.187500; 1.000000;, - 0.250000; 1.000000;, - 0.125000; 0.625000;, - 0.125000; 1.000000;, - 0.062500; 1.000000;, - 0.062500; 0.625000;, - 0.125000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 1.000000;, - 0.125000; 1.000000;, - 0.750000; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 0.500000;, - 0.750000; 0.500000;, - 0.687500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 0.500000;, - 0.687500; 0.500000;, - 0.250000; 0.625000;, - 0.250000; 1.000000;, - 0.187500; 1.000000;, - 0.187500; 0.625000;, - 0.187500; 0.625000;, - 0.125000; 0.625000;, - 0.125000; 1.000000;, - 0.187500; 1.000000;, - 0.000000; 0.625000;, - 0.000000; 1.000000;, - 0.062500; 1.000000;, - 0.062500; 0.625000;, - 0.250000; 0.625000;, - 0.250000; 1.000000;, - 0.312500; 1.000000;, - 0.312500; 0.625000;, - 0.000000; 0.250000;, - 0.000000; 0.500000;, - 0.125000; 0.500000;, - 0.125000; 0.250000;, - 0.125000; 0.625000;, - 0.125000; 0.500000;, - 0.062500; 0.500000;, - 0.062500; 0.625000;, - 0.687500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 1.000000;, - 0.687500; 1.000000;, - 0.687500; 0.625000;, - 0.625000; 0.625000;, - 0.625000; 1.000000;, - 0.687500; 1.000000;, - 0.687500; 0.625000;, - 0.687500; 1.000000;, - 0.625000; 1.000000;, - 0.625000; 0.625000;, - 0.687500; 0.625000;, - 0.687500; 0.500000;, - 0.750000; 0.500000;, - 0.750000; 0.625000;, - 0.687500; 0.625000;, - 0.687500; 1.000000;, - 0.750000; 1.000000;, - 0.750000; 0.625000;, - 0.187500; 0.625000;, - 0.125000; 0.625000;, - 0.125000; 0.500000;, - 0.187500; 0.500000;, - 0.750000; 0.625000;, - 0.750000; 1.000000;, - 0.812500; 1.000000;, - 0.812500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 0.500000;, - 0.812500; 0.500000;, - 0.812500; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 1.000000;, - 0.875000; 1.000000;, - 0.875000; 0.625000;, - 0.125000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 0.500000;, - 0.125000; 0.500000;, - 1.000000; 0.250000;, - 0.875000; 0.250000;, - 0.875000; 0.500000;, - 1.000000; 0.500000;, - 0.875000; 0.250000;, - 0.750000; 0.250000;, - 0.750000; 0.500000;, - 0.875000; 0.500000;, - 0.750000; 0.250000;, - 0.625000; 0.250000;, - 0.625000; 0.500000;, - 0.750000; 0.500000;, - 0.875000; 0.250000;, - 0.875000; 0.000000;, - 0.750000; 0.000000;, - 0.750000; 0.250000;, - 0.750000; 0.250000;, - 0.750000; 0.000000;, - 0.625000; 0.000000;, - 0.625000; 0.250000;, - 0.500000; 0.250000;, - 0.500000; 0.500000;, - 0.625000; 0.500000;, - 0.625000; 0.250000;; - } // End of Player UV coordinates - XSkinMeshHeader { - 1; - 3; - 6; - } - SkinWeights { - "Armature_Leg_Right"; - 24; - 20, - 21, - 22, - 23, - 64, - 65, - 66, - 67, - 80, - 81, - 82, - 83, - 88, - 89, - 90, - 91, - 124, - 125, - 126, - 127, - 140, - 141, - 142, - 143; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000,-1.000000, 0.000000, 0.000000, - -1.000000, 6.750001,-0.000001, 1.000000;; - } // End of Armature_Leg_Right skin weights - SkinWeights { - "Armature_Body"; - 24; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 92, - 93, - 94, - 95; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000,-1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000,-6.750000,-0.000001, 1.000000;; - } // End of Armature_Body skin weights - SkinWeights { - "Armature_Arm_Right"; - 24; - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 112, - 113, - 114, - 115, - 120, - 121, - 122, - 123, - 128, - 129, - 130, - 131, - 136, - 137, - 138, - 139; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.989214, 0.143940, 0.027164, 0.000000, - -0.027450,-0.000000, 0.999623, 0.000000, - 0.143886,-0.989587, 0.003951, 0.000000, - -3.920884,13.071540,-0.107668, 1.000000;; - } // End of Armature_Arm_Right skin weights - SkinWeights { - "Armature_Leg_Left"; - 24; - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 60, - 61, - 62, - 63, - 68, - 69, - 70, - 71, - 84, - 85, - 86, - 87, - 100, - 101, - 102, - 103; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000,-1.000000, 0.000000, 0.000000, - 1.000000, 6.750001,-0.000001, 1.000000;; - } // End of Armature_Leg_Left skin weights - SkinWeights { - "Armature_Arm_Left"; - 24; - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 116, - 117, - 118, - 119, - 132, - 133, - 134, - 135; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.989214,-0.143940,-0.027164, 0.000000, - 0.027450,-0.000000, 0.999623, 0.000000, - -0.143886,-0.989587, 0.003951, 0.000000, - 3.920884,13.071540,-0.107668, 1.000000;; - } // End of Armature_Arm_Left skin weights - SkinWeights { - "Armature_Head"; - 48; - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 96, - 97, - 98, - 99, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - -1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - -0.000000,-13.500000,-0.000002, 1.000000;; - } // End of Armature_Head skin weights - } // End of Player mesh - } // End of Player - } // End of Armature -} // End of Root -AnimationSet ArmatureAction { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 189; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.000000, 0.000000,-10.000000;;, - 1;3; 0.000000, 0.000000,-10.000000;;, - 2;3; 0.000000, 0.000000,-10.000000;;, - 3;3; 0.000000, 0.000000,-10.000000;;, - 4;3; 0.000000, 0.000000,-10.000000;;, - 5;3; 0.000000, 0.000000,-10.000000;;, - 6;3; 0.000000, 0.000000,-10.000000;;, - 7;3; 0.000000, 0.000000,-10.000000;;, - 8;3; 0.000000, 0.000000,-10.000000;;, - 9;3; 0.000000, 0.000000,-10.000000;;, - 10;3; 0.000000, 0.000000,-10.000000;;, - 11;3; 0.000000, 0.000000,-10.000000;;, - 12;3; 0.000000, 0.000000,-10.000000;;, - 13;3; 0.000000, 0.000000,-10.000000;;, - 14;3; 0.000000, 0.000000,-10.000000;;, - 15;3; 0.000000, 0.000000,-10.000000;;, - 16;3; 0.000000, 0.000000,-10.000000;;, - 17;3; 0.000000, 0.000000,-10.000000;;, - 18;3; 0.000000, 0.000000,-10.000000;;, - 19;3; 0.000000, 0.000000,-10.000000;;, - 20;3; 0.000000, 0.000000,-10.000000;;, - 21;3; 0.000000, 0.000000,-10.000000;;, - 22;3; 0.000000, 0.000000,-10.000000;;, - 23;3; 0.000000, 0.000000,-10.000000;;, - 24;3; 0.000000, 0.000000,-10.000000;;, - 25;3; 0.000000, 0.000000,-10.000000;;, - 26;3; 0.000000, 0.000000,-10.000000;;, - 27;3; 0.000000, 0.000000,-10.000000;;, - 28;3; 0.000000, 0.000000,-10.000000;;, - 29;3; 0.000000, 0.000000,-10.000000;;, - 30;3; 0.000000, 0.000000,-10.000000;;, - 31;3; 0.000000, 0.000000,-10.000000;;, - 32;3; 0.000000, 0.000000,-10.000000;;, - 33;3; 0.000000, 0.000000,-10.000000;;, - 34;3; 0.000000, 0.000000,-10.000000;;, - 35;3; 0.000000, 0.000000,-10.000000;;, - 36;3; 0.000000, 0.000000,-10.000000;;, - 37;3; 0.000000, 0.000000,-10.000000;;, - 38;3; 0.000000, 0.000000,-10.000000;;, - 39;3; 0.000000, 0.000000,-10.000000;;, - 40;3; 0.000000, 0.000000,-10.000000;;, - 41;3; 0.000000, 0.000000,-10.000000;;, - 42;3; 0.000000, 0.000000,-10.000000;;, - 43;3; 0.000000, 0.000000,-10.000000;;, - 44;3; 0.000000, 0.000000,-10.000000;;, - 45;3; 0.000000, 0.000000,-10.000000;;, - 46;3; 0.000000, 0.000000,-10.000000;;, - 47;3; 0.000000, 0.000000,-10.000000;;, - 48;3; 0.000000, 0.000000,-10.000000;;, - 49;3; 0.000000, 0.000000,-10.000000;;, - 50;3; 0.000000, 0.000000,-10.000000;;, - 51;3; 0.000000, 0.000000,-10.000000;;, - 52;3; 0.000000, 0.000000,-10.000000;;, - 53;3; 0.000000, 0.000000,-10.000000;;, - 54;3; 0.000000, 0.000000,-10.000000;;, - 55;3; 0.000000, 0.000000,-10.000000;;, - 56;3; 0.000000, 0.000000,-10.000000;;, - 57;3; 0.000000, 0.000000,-10.000000;;, - 58;3; 0.000000, 0.000000,-10.000000;;, - 59;3; 0.000000, 0.000000,-10.000000;;, - 60;3; 0.000000, 0.000000,-10.000000;;, - 61;3; 0.000000, 0.000000,-10.000000;;, - 62;3; 0.000000, 0.000000,-10.000000;;, - 63;3; 0.000000, 0.000000,-10.000000;;, - 64;3; 0.000000, 0.000000,-10.000000;;, - 65;3; 0.000000, 0.000000,-10.000000;;, - 66;3; 0.000000, 0.000000,-10.000000;;, - 67;3; 0.000000, 0.000000,-10.000000;;, - 68;3; 0.000000, 0.000000,-10.000000;;, - 69;3; 0.000000, 0.000000,-10.000000;;, - 70;3; 0.000000, 0.000000,-10.000000;;, - 71;3; 0.000000, 0.000000,-10.000000;;, - 72;3; 0.000000, 0.000000,-10.000000;;, - 73;3; 0.000000, 0.000000,-10.000000;;, - 74;3; 0.000000, 0.000000,-10.000000;;, - 75;3; 0.000000, 0.000000,-10.000000;;, - 76;3; 0.000000, 0.000000,-10.000000;;, - 77;3; 0.000000, 0.000000,-10.000000;;, - 78;3; 0.000000, 0.000000,-10.000000;;, - 79;3; 0.000000, 0.000000,-10.000000;;, - 80;3; 0.000000, 0.000000,-10.000000;;, - 81;3; 0.000000, 0.000000,-10.000000;;, - 82;3; 0.000000, 0.000000,-10.000000;;, - 83;3; 0.000000, 0.000000,-10.000000;;, - 84;3; 0.000000, 0.000000,-10.000000;;, - 85;3; 0.000000, 0.000000,-10.000000;;, - 86;3; 0.000000, 0.000000,-10.000000;;, - 87;3; 0.000000, 0.000000,-10.000000;;, - 88;3; 0.000000, 0.000000,-10.000000;;, - 89;3; 0.000000, 0.000000,-10.000000;;, - 90;3; 0.000000, 0.000000,-10.000000;;, - 91;3; 0.000000, 0.000000,-10.000000;;, - 92;3; 0.000000, 0.000000,-10.000000;;, - 93;3; 0.000000, 0.000000,-10.000000;;, - 94;3; 0.000000, 0.000000,-10.000000;;, - 95;3; 0.000000, 0.000000,-10.000000;;, - 96;3; 0.000000, 0.000000,-10.000000;;, - 97;3; 0.000000, 0.000000,-10.000000;;, - 98;3; 0.000000, 0.000000,-10.000000;;, - 99;3; 0.000000, 0.000000,-10.000000;;, - 100;3; 0.000000, 0.000000,-10.000000;;, - 101;3; 0.000000, 0.000000,-10.000000;;, - 102;3; 0.000000, 0.000000,-10.000000;;, - 103;3; 0.000000, 0.000000,-10.000000;;, - 104;3; 0.000000, 0.000000,-10.000000;;, - 105;3; 0.000000, 0.000000,-10.000000;;, - 106;3; 0.000000, 0.000000,-10.000000;;, - 107;3; 0.000000, 0.000000,-10.000000;;, - 108;3; 0.000000, 0.000000,-10.000000;;, - 109;3; 0.000000, 0.000000,-10.000000;;, - 110;3; 0.000000, 0.000000,-10.000000;;, - 111;3; 0.000000, 0.000000,-10.000000;;, - 112;3; 0.000000, 0.000000,-10.000000;;, - 113;3; 0.000000, 0.000000,-10.000000;;, - 114;3; 0.000000, 0.000000,-10.000000;;, - 115;3; 0.000000, 0.000000,-10.000000;;, - 116;3; 0.000000, 0.000000,-10.000000;;, - 117;3; 0.000000, 0.000000,-10.000000;;, - 118;3; 0.000000, 0.000000,-10.000000;;, - 119;3; 0.000000, 0.000000,-10.000000;;, - 120;3; 0.000000, 0.000000,-10.000000;;, - 121;3; 0.000000, 0.000000,-10.000000;;, - 122;3; 0.000000, 0.000000,-10.000000;;, - 123;3; 0.000000, 0.000000,-10.000000;;, - 124;3; 0.000000, 0.000000,-10.000000;;, - 125;3; 0.000000, 0.000000,-10.000000;;, - 126;3; 0.000000, 0.000000,-10.000000;;, - 127;3; 0.000000, 0.000000,-10.000000;;, - 128;3; 0.000000, 0.000000,-10.000000;;, - 129;3; 0.000000, 0.000000,-10.000000;;, - 130;3; 0.000000, 0.000000,-10.000000;;, - 131;3; 0.000000, 0.000000,-10.000000;;, - 132;3; 0.000000, 0.000000,-10.000000;;, - 133;3; 0.000000, 0.000000,-10.000000;;, - 134;3; 0.000000, 0.000000,-10.000000;;, - 135;3; 0.000000, 0.000000,-10.000000;;, - 136;3; 0.000000, 0.000000,-10.000000;;, - 137;3; 0.000000, 0.000000,-10.000000;;, - 138;3; 0.000000, 0.000000,-10.000000;;, - 139;3; 0.000000, 0.000000,-10.000000;;, - 140;3; 0.000000, 0.000000,-10.000000;;, - 141;3; 0.000000, 0.000000,-10.000000;;, - 142;3; 0.000000, 0.000000,-10.000000;;, - 143;3; 0.000000, 0.000000,-10.000000;;, - 144;3; 0.000000, 0.000000,-10.000000;;, - 145;3; 0.000000, 0.000000,-10.000000;;, - 146;3; 0.000000, 0.000000,-10.000000;;, - 147;3; 0.000000, 0.000000,-10.000000;;, - 148;3; 0.000000, 0.000000,-10.000000;;, - 149;3; 0.000000, 0.000000,-10.000000;;, - 150;3; 0.000000, 0.000000,-10.000000;;, - 151;3; 0.000000, 0.000000,-10.000000;;, - 152;3; 0.000000, 0.000000,-10.000000;;, - 153;3; 0.000000, 0.000000,-10.000000;;, - 154;3; 0.000000, 0.000000,-10.000000;;, - 155;3; 0.000000, 0.000000,-10.000000;;, - 156;3; 0.000000, 0.000000,-10.000000;;, - 157;3; 0.000000, 0.000000,-10.000000;;, - 158;3; 0.000000, 0.000000,-10.000000;;, - 159;3; 0.000000, 0.000000,-10.000000;;, - 160;3; 0.000000, 0.000000,-10.000000;;, - 161;3; 0.000000, 0.000000,-10.000000;;, - 162;3; 0.000000, 0.000000,-10.000000;;, - 163;3; 0.000000, 0.000000,-10.000000;;, - 164;3; 0.000000, 0.000000,-10.000000;;, - 165;3; 0.000000, 0.000000,-10.000000;;, - 166;3; 0.000000, 0.000000,-10.000000;;, - 167;3; 0.000000, 0.000000,-10.000000;;, - 168;3; 0.000000, 0.000000,-10.000000;;, - 169;3; 0.000000, 0.000000,-10.000000;;, - 170;3; 0.000000, 0.000000,-10.000000;;, - 171;3; 0.000000, 0.000000,-10.000000;;, - 172;3; 0.000000, 0.000000,-10.000000;;, - 173;3; 0.000000, 0.000000,-10.000000;;, - 174;3; 0.000000, 0.000000,-10.000000;;, - 175;3; 0.000000, 0.000000,-10.000000;;, - 176;3; 0.000000, 0.000000,-10.000000;;, - 177;3; 0.000000, 0.000000,-10.000000;;, - 178;3; 0.000000, 0.000000,-10.000000;;, - 179;3; 0.000000, 0.000000,-10.000000;;, - 180;3; 0.000000, 0.000000,-10.000000;;, - 181;3; 0.000000, 0.000000,-10.000000;;, - 182;3; 0.000000, 0.000000,-10.000000;;, - 183;3; 0.000000, 0.000000,-10.000000;;, - 184;3; 0.000000, 0.000000,-10.000000;;, - 185;3; 0.000000, 0.000000,-10.000000;;, - 186;3; 0.000000, 0.000000,-10.000000;;, - 187;3; 0.000000, 0.000000,-10.000000;;, - 188;3; 0.000000, 0.000000,-10.000000;;; - } - } - Animation { - {Armature_Body} - AnimationKey { // Rotation - 0; - 189; - 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 1;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 2;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 3;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 4;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 5;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 6;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 7;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 8;4;-0.696414, 0.717343, 0.000000, 0.000000;;, - 9;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 10;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 11;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 12;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 13;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 14;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 15;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 16;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 17;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 18;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 19;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 20;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 21;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 22;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 23;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 24;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 25;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 26;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 27;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 28;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 29;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 30;4;-0.691349, 0.722192, 0.000000, 0.000000;;, - 31;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 32;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 33;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 34;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 35;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 36;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 37;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 38;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 39;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 41;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 42;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 43;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 44;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 45;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 46;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 47;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 48;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 49;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 50;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 51;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 52;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 53;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 54;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 55;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 56;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 57;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 58;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 59;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 60;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 61;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 62;4;-0.676212, 0.736682, 0.000000, 0.000000;;, - 63;4;-0.676927, 0.735998, 0.000000, 0.000000;;, - 64;4;-0.677865, 0.735100, 0.000000, 0.000000;;, - 65;4;-0.679001, 0.734013, 0.000000, 0.000000;;, - 66;4;-0.680312, 0.732757, 0.000000, 0.000000;;, - 67;4;-0.681779, 0.731353, 0.000000, 0.000000;;, - 68;4;-0.683387, 0.729813, 0.000000, 0.000000;;, - 69;4;-0.685120, 0.728154, 0.000000, 0.000000;;, - 70;4;-0.686966, 0.726388, 0.000000, 0.000000;;, - 71;4;-0.688910, 0.724526, 0.000000, 0.000000;;, - 72;4;-0.690941, 0.722582, 0.000000, 0.000000;;, - 73;4;-0.693046, 0.720567, 0.000000, 0.000000;;, - 74;4;-0.695210, 0.718495, 0.000000, 0.000000;;, - 75;4;-0.697417, 0.716383, 0.000000, 0.000000;;, - 76;4;-0.699643, 0.714252, 0.000000, 0.000000;;, - 77;4;-0.701856, 0.712133, 0.000000, 0.000000;;, - 78;4;-0.703995, 0.710086, 0.000000, 0.000000;;, - 79;4;-0.705928, 0.708235, 0.000000, 0.000000;;, - 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 82;4;-0.705928, 0.708235, 0.000000, 0.000000;;, - 83;4;-0.703995, 0.710086, 0.000000, 0.000000;;, - 84;4;-0.701856, 0.712133, 0.000000, 0.000000;;, - 85;4;-0.699643, 0.714252, 0.000000, 0.000000;;, - 86;4;-0.697417, 0.716383, 0.000000, 0.000000;;, - 87;4;-0.695210, 0.718495, 0.000000, 0.000000;;, - 88;4;-0.693046, 0.720567, 0.000000, 0.000000;;, - 89;4;-0.690941, 0.722582, 0.000000, 0.000000;;, - 90;4;-0.688910, 0.724526, 0.000000, 0.000000;;, - 91;4;-0.686966, 0.726388, 0.000000, 0.000000;;, - 92;4;-0.685120, 0.728154, 0.000000, 0.000000;;, - 93;4;-0.683387, 0.729813, 0.000000, 0.000000;;, - 94;4;-0.681779, 0.731353, 0.000000, 0.000000;;, - 95;4;-0.680312, 0.732758, 0.000000, 0.000000;;, - 96;4;-0.679001, 0.734013, 0.000000, 0.000000;;, - 97;4;-0.677865, 0.735100, 0.000000, 0.000000;;, - 98;4;-0.676927, 0.735998, 0.000000, 0.000000;;, - 99;4;-0.676212, 0.736682, 0.000000, 0.000000;;, - 100;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 101;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 102;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 103;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 104;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 105;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 106;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 107;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 108;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 109;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 110;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 111;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 112;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 113;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 114;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 115;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 116;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 117;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 118;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 119;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 120;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 122;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 123;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 124;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 125;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 126;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 127;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 128;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 129;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 130;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 131;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 132;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 133;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 134;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 135;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 136;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 137;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 138;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 139;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 140;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 141;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 142;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 143;4;-0.676211, 0.736683, 0.000000, 0.000000;;, - 144;4;-0.676923, 0.736001, 0.000000, 0.000000;;, - 145;4;-0.677857, 0.735107, 0.000000, 0.000000;;, - 146;4;-0.678987, 0.734026, 0.000000, 0.000000;;, - 147;4;-0.680291, 0.732778, 0.000000, 0.000000;;, - 148;4;-0.681750, 0.731381, 0.000000, 0.000000;;, - 149;4;-0.683349, 0.729852, 0.000000, 0.000000;;, - 150;4;-0.685071, 0.728203, 0.000000, 0.000000;;, - 151;4;-0.686905, 0.726448, 0.000000, 0.000000;;, - 152;4;-0.688838, 0.724598, 0.000000, 0.000000;;, - 153;4;-0.690858, 0.722664, 0.000000, 0.000000;;, - 154;4;-0.692953, 0.720659, 0.000000, 0.000000;;, - 155;4;-0.695109, 0.718596, 0.000000, 0.000000;;, - 156;4;-0.697310, 0.716489, 0.000000, 0.000000;;, - 157;4;-0.699536, 0.714358, 0.000000, 0.000000;;, - 158;4;-0.701753, 0.712235, 0.000000, 0.000000;;, - 159;4;-0.703909, 0.710171, 0.000000, 0.000000;;, - 160;4;-0.705875, 0.708288, 0.000000, 0.000000;;, - 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 162;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 163;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 164;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 165;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 166;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 167;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 187;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 188;4;-0.707107, 0.707107, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-0.000000, 0.000000, 6.750000;;, - 1;3;-0.000000, 0.000000, 6.750000;;, - 2;3;-0.000000, 0.000000, 6.750000;;, - 3;3;-0.000000, 0.000000, 6.750000;;, - 4;3;-0.000000, 0.000000, 6.750000;;, - 5;3;-0.000000, 0.000000, 6.750000;;, - 6;3;-0.000000, 0.000000, 6.750000;;, - 7;3;-0.000000, 0.000000, 6.750000;;, - 8;3;-0.000000, 0.000000, 6.750000;;, - 9;3;-0.000000, 0.000000, 6.750000;;, - 10;3;-0.000000, 0.000000, 6.750000;;, - 11;3;-0.000000, 0.000000, 6.750000;;, - 12;3;-0.000000, 0.000000, 6.750000;;, - 13;3;-0.000000, 0.000000, 6.750000;;, - 14;3;-0.000000, 0.000000, 6.750000;;, - 15;3;-0.000000, 0.000000, 6.750000;;, - 16;3;-0.000000, 0.000000, 6.750000;;, - 17;3;-0.000000, 0.000000, 6.750000;;, - 18;3;-0.000000, 0.000000, 6.750000;;, - 19;3;-0.000000, 0.000000, 6.750000;;, - 20;3;-0.000000, 0.000000, 6.750000;;, - 21;3;-0.000000, 0.000000, 6.750000;;, - 22;3;-0.000000, 0.000000, 6.750000;;, - 23;3;-0.000000, 0.000000, 6.750000;;, - 24;3;-0.000000, 0.000000, 6.750000;;, - 25;3;-0.000000, 0.000000, 6.750000;;, - 26;3;-0.000000, 0.000000, 6.750000;;, - 27;3;-0.000000, 0.000000, 6.750000;;, - 28;3;-0.000000, 0.000000, 6.750000;;, - 29;3;-0.000000, 0.000000, 6.750000;;, - 30;3;-0.000000, 0.000000, 6.750000;;, - 31;3;-0.000000, 0.000000, 6.750000;;, - 32;3;-0.000000, 0.000000, 6.750000;;, - 33;3;-0.000000, 0.000000, 6.750000;;, - 34;3;-0.000000, 0.000000, 6.750000;;, - 35;3;-0.000000, 0.000000, 6.750000;;, - 36;3;-0.000000, 0.000000, 6.750000;;, - 37;3;-0.000000, 0.000000, 6.750000;;, - 38;3;-0.000000, 0.000000, 6.750000;;, - 39;3;-0.000000, 0.000000, 6.750000;;, - 40;3;-0.000000, 0.000000, 6.750000;;, - 41;3;-0.000000, 0.000000, 6.750000;;, - 42;3;-0.000000, 0.000000, 6.750000;;, - 43;3;-0.000000, 0.000000, 6.750000;;, - 44;3;-0.000000, 0.000000, 6.750000;;, - 45;3;-0.000000, 0.000000, 6.750000;;, - 46;3;-0.000000, 0.000000, 6.750000;;, - 47;3;-0.000000, 0.000000, 6.750000;;, - 48;3;-0.000000, 0.000000, 6.750000;;, - 49;3;-0.000000, 0.000000, 6.750000;;, - 50;3;-0.000000, 0.000000, 6.750000;;, - 51;3;-0.000000, 0.000000, 6.750000;;, - 52;3;-0.000000, 0.000000, 6.750000;;, - 53;3;-0.000000, 0.000000, 6.750000;;, - 54;3;-0.000000, 0.000000, 6.750000;;, - 55;3;-0.000000, 0.000000, 6.750000;;, - 56;3;-0.000000, 0.000000, 6.750000;;, - 57;3;-0.000000, 0.000000, 6.750000;;, - 58;3;-0.000000, 0.000000, 6.750000;;, - 59;3;-0.000000, 0.000000, 6.750000;;, - 60;3;-0.000000, 0.000000, 6.750000;;, - 61;3;-0.000000, 0.000000, 6.750000;;, - 62;3;-0.000000, 0.000000, 6.750000;;, - 63;3;-0.000000, 0.000000, 6.750000;;, - 64;3;-0.000000, 0.000000, 6.750000;;, - 65;3;-0.000000, 0.000000, 6.750000;;, - 66;3;-0.000000, 0.000000, 6.750000;;, - 67;3;-0.000000, 0.000000, 6.750000;;, - 68;3;-0.000000, 0.000000, 6.750000;;, - 69;3;-0.000000, 0.000000, 6.750000;;, - 70;3;-0.000000, 0.000000, 6.750000;;, - 71;3;-0.000000, 0.000000, 6.750000;;, - 72;3;-0.000000, 0.000000, 6.750000;;, - 73;3;-0.000000, 0.000000, 6.750000;;, - 74;3;-0.000000, 0.000000, 6.750000;;, - 75;3;-0.000000, 0.000000, 6.750000;;, - 76;3;-0.000000, 0.000000, 6.750000;;, - 77;3;-0.000000, 0.000000, 6.750000;;, - 78;3;-0.000000, 0.000000, 6.750000;;, - 79;3;-0.000000, 0.000000, 6.750000;;, - 80;3;-0.000000, 0.000000, 6.750000;;, - 81;3;-0.000000, 0.000000, 1.000000;;, - 82;3;-0.000000, 0.000000, 1.000000;;, - 83;3;-0.000000, 0.000000, 1.000000;;, - 84;3;-0.000000, 0.000000, 1.000000;;, - 85;3;-0.000000, 0.000000, 1.000000;;, - 86;3;-0.000000, 0.000000, 1.000000;;, - 87;3;-0.000000, 0.000000, 1.000000;;, - 88;3;-0.000000, 0.000000, 1.000000;;, - 89;3;-0.000000, 0.000000, 1.000000;;, - 90;3;-0.000000, 0.000000, 1.000000;;, - 91;3;-0.000000, 0.000000, 1.000000;;, - 92;3;-0.000000, 0.000000, 1.000000;;, - 93;3;-0.000000, 0.000000, 1.000000;;, - 94;3;-0.000000, 0.000000, 1.000000;;, - 95;3;-0.000000, 0.000000, 1.000000;;, - 96;3;-0.000000, 0.000000, 1.000000;;, - 97;3;-0.000000, 0.000000, 1.000000;;, - 98;3;-0.000000, 0.000000, 1.000000;;, - 99;3;-0.000000, 0.000000, 1.000000;;, - 100;3;-0.000000, 0.000000, 1.000000;;, - 101;3;-0.000000, 0.000000, 1.000000;;, - 102;3;-0.000000, 0.000000, 1.000000;;, - 103;3;-0.000000, 0.000000, 1.000000;;, - 104;3;-0.000000, 0.000000, 1.000000;;, - 105;3;-0.000000, 0.000000, 1.000000;;, - 106;3;-0.000000, 0.000000, 1.000000;;, - 107;3;-0.000000, 0.000000, 1.000000;;, - 108;3;-0.000000, 0.000000, 1.000000;;, - 109;3;-0.000000, 0.000000, 1.000000;;, - 110;3;-0.000000, 0.000000, 1.000000;;, - 111;3;-0.000000, 0.000000, 1.000000;;, - 112;3;-0.000000, 0.000000, 1.000000;;, - 113;3;-0.000000, 0.000000, 1.000000;;, - 114;3;-0.000000, 0.000000, 1.000000;;, - 115;3;-0.000000, 0.000000, 1.000000;;, - 116;3;-0.000000, 0.000000, 1.000000;;, - 117;3;-0.000000, 0.000000, 1.000000;;, - 118;3;-0.000000, 0.000000, 1.000000;;, - 119;3;-0.000000, 0.000000, 1.000000;;, - 120;3;-0.000000, 0.000000, 1.000000;;, - 121;3;-0.000000, 0.000000, 1.000000;;, - 122;3;-0.000000, 0.000000, 1.000000;;, - 123;3;-0.000000, 0.000000, 1.000000;;, - 124;3;-0.000000, 0.000000, 1.000000;;, - 125;3;-0.000000, 0.000000, 1.000000;;, - 126;3;-0.000000, 0.000000, 1.000000;;, - 127;3;-0.000000, 0.000000, 1.000000;;, - 128;3;-0.000000, 0.000000, 1.000000;;, - 129;3;-0.000000, 0.000000, 1.000000;;, - 130;3;-0.000000, 0.000000, 1.000000;;, - 131;3;-0.000000, 0.000000, 1.000000;;, - 132;3;-0.000000, 0.000000, 1.000000;;, - 133;3;-0.000000, 0.000000, 1.000000;;, - 134;3;-0.000000, 0.000000, 1.000000;;, - 135;3;-0.000000, 0.000000, 1.000000;;, - 136;3;-0.000000, 0.000000, 1.000000;;, - 137;3;-0.000000, 0.000000, 1.000000;;, - 138;3;-0.000000, 0.000000, 1.000000;;, - 139;3;-0.000000, 0.000000, 1.000000;;, - 140;3;-0.000000, 0.000000, 1.000000;;, - 141;3;-0.000000, 0.000000, 1.000000;;, - 142;3;-0.000000, 0.000000, 1.000000;;, - 143;3;-0.000000, 0.000000, 1.000000;;, - 144;3;-0.000000, 0.000000, 1.000000;;, - 145;3;-0.000000, 0.000000, 1.000000;;, - 146;3;-0.000000, 0.000000, 1.000000;;, - 147;3;-0.000000, 0.000000, 1.000000;;, - 148;3;-0.000000, 0.000000, 1.000000;;, - 149;3;-0.000000, 0.000000, 1.000000;;, - 150;3;-0.000000, 0.000000, 1.000000;;, - 151;3;-0.000000, 0.000000, 1.000000;;, - 152;3;-0.000000, 0.000000, 1.000000;;, - 153;3;-0.000000, 0.000000, 1.000000;;, - 154;3;-0.000000, 0.000000, 1.000000;;, - 155;3;-0.000000, 0.000000, 1.000000;;, - 156;3;-0.000000, 0.000000, 1.000000;;, - 157;3;-0.000000, 0.000000, 1.000000;;, - 158;3;-0.000000, 0.000000, 1.000000;;, - 159;3;-0.000000, 0.000000, 1.000000;;, - 160;3;-0.000000, 0.000000, 1.000000;;, - 161;3;-0.000000, 0.000000, 1.000000;;, - 162;3;-0.000000, 2.000001, 1.000000;;, - 163;3;-0.000000, 2.000001, 1.000000;;, - 164;3;-0.000000, 2.000001, 1.000000;;, - 165;3;-0.000000, 2.000001, 1.000000;;, - 166;3;-0.000000, 2.000001, 1.000000;;, - 167;3;-0.000000, 2.000001, 1.000000;;, - 168;3;-0.000000, 0.000000, 6.750000;;, - 169;3;-0.000000, 0.000000, 6.750000;;, - 170;3;-0.000000, 0.000000, 6.750000;;, - 171;3;-0.000000, 0.000000, 6.750000;;, - 172;3;-0.000000, 0.000000, 6.750000;;, - 173;3;-0.000000, 0.000000, 6.750000;;, - 174;3;-0.000000, 0.000000, 6.750000;;, - 175;3;-0.000000, 0.000000, 6.750000;;, - 176;3;-0.000000, 0.000000, 6.750000;;, - 177;3;-0.000000, 0.000000, 6.750000;;, - 178;3;-0.000000, 0.000000, 6.750000;;, - 179;3;-0.000000, 0.000000, 6.750000;;, - 180;3;-0.000000, 0.000000, 6.750000;;, - 181;3;-0.000000, 0.000000, 6.750000;;, - 182;3;-0.000000, 0.000000, 6.750000;;, - 183;3;-0.000000, 0.000000, 6.750000;;, - 184;3;-0.000000, 0.000000, 6.750000;;, - 185;3;-0.000000, 0.000000, 6.750000;;, - 186;3;-0.000000, 0.000000, 6.750000;;, - 187;3;-0.000000, 0.000000, 6.750000;;, - 188;3;-0.000000, 0.000000, 6.750000;;; - } - } - Animation { - {Armature_Head} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 1;4;-0.000120,-0.000005, 0.999993,-0.000240;;, - 2;4;-0.000483,-0.000021, 0.999974,-0.000967;;, - 3;4;-0.001090,-0.000048, 0.999941,-0.002181;;, - 4;4;-0.001937,-0.000085, 0.999894,-0.003876;;, - 5;4;-0.003014,-0.000132, 0.999835,-0.006030;;, - 6;4;-0.004301,-0.000188, 0.999765,-0.008607;;, - 7;4;-0.005773,-0.000252, 0.999685,-0.011553;;, - 8;4;-0.007394,-0.000323, 0.999596,-0.014795;;, - 9;4;-0.009118,-0.000398, 0.999502,-0.018246;;, - 10;4;-0.010897,-0.000476, 0.999405,-0.021804;;, - 11;4;-0.012675,-0.000553, 0.999308,-0.025363;;, - 12;4;-0.014400,-0.000629, 0.999214,-0.028814;;, - 13;4;-0.016021,-0.000699, 0.999126,-0.032056;;, - 14;4;-0.017493,-0.000764, 0.999045,-0.035002;;, - 15;4;-0.018780,-0.000820, 0.998975,-0.037578;;, - 16;4;-0.019857,-0.000867, 0.998916,-0.039733;;, - 17;4;-0.020704,-0.000904, 0.998870,-0.041427;;, - 18;4;-0.021311,-0.000930, 0.998837,-0.042642;;, - 19;4;-0.021674,-0.000946, 0.998817,-0.043369;;, - 20;4;-0.021794,-0.000952, 0.998811,-0.043609;;, - 21;4;-0.021720,-0.000948, 0.998817,-0.043369;;, - 22;4;-0.021494,-0.000938, 0.998837,-0.042642;;, - 23;4;-0.021108,-0.000922, 0.998870,-0.041427;;, - 24;4;-0.020560,-0.000898, 0.998916,-0.039733;;, - 25;4;-0.019848,-0.000867, 0.998975,-0.037578;;, - 26;4;-0.018975,-0.000828, 0.999045,-0.035002;;, - 27;4;-0.017947,-0.000784, 0.999126,-0.032056;;, - 28;4;-0.016778,-0.000733, 0.999214,-0.028814;;, - 29;4;-0.015484,-0.000676, 0.999308,-0.025363;;, - 30;4;-0.014088,-0.000615, 0.999405,-0.021804;;, - 31;4;-0.012616,-0.000551, 0.999502,-0.018246;;, - 32;4;-0.011095,-0.000484, 0.999597,-0.014795;;, - 33;4;-0.009555,-0.000417, 0.999685,-0.011553;;, - 34;4;-0.008021,-0.000350, 0.999765,-0.008607;;, - 35;4;-0.006517,-0.000285, 0.999835,-0.006030;;, - 36;4;-0.005062,-0.000221, 0.999894,-0.003876;;, - 37;4;-0.003674,-0.000160, 0.999941,-0.002181;;, - 38;4;-0.002362,-0.000103, 0.999974,-0.000967;;, - 39;4;-0.001136,-0.000050, 0.999994,-0.000240;;, - 40;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 41;4; 0.001136, 0.000050, 0.999993,-0.000240;;, - 42;4; 0.002362, 0.000103, 0.999974,-0.000967;;, - 43;4; 0.003674, 0.000160, 0.999941,-0.002181;;, - 44;4; 0.005062, 0.000221, 0.999894,-0.003876;;, - 45;4; 0.006517, 0.000285, 0.999835,-0.006030;;, - 46;4; 0.008021, 0.000350, 0.999765,-0.008607;;, - 47;4; 0.009555, 0.000417, 0.999685,-0.011553;;, - 48;4; 0.011095, 0.000484, 0.999596,-0.014795;;, - 49;4; 0.012616, 0.000551, 0.999502,-0.018246;;, - 50;4; 0.014088, 0.000615, 0.999405,-0.021804;;, - 51;4; 0.015484, 0.000676, 0.999308,-0.025363;;, - 52;4; 0.016778, 0.000733, 0.999214,-0.028814;;, - 53;4; 0.017947, 0.000784, 0.999126,-0.032056;;, - 54;4; 0.018975, 0.000828, 0.999045,-0.035002;;, - 55;4; 0.019848, 0.000867, 0.998975,-0.037578;;, - 56;4; 0.020560, 0.000898, 0.998916,-0.039733;;, - 57;4; 0.021108, 0.000922, 0.998870,-0.041427;;, - 58;4; 0.021494, 0.000938, 0.998837,-0.042642;;, - 59;4; 0.021720, 0.000948, 0.998817,-0.043369;;, - 60;4; 0.021794, 0.000952, 0.998811,-0.043609;;, - 61;4; 0.021681, 0.000947, 0.998817,-0.043383;;, - 62;4; 0.021364, 0.000933, 0.998834,-0.042748;;, - 63;4; 0.020870, 0.000911, 0.998861,-0.041759;;, - 64;4; 0.020221, 0.000883, 0.998896,-0.040461;;, - 65;4; 0.019436, 0.000849, 0.998939,-0.038890;;, - 66;4; 0.018529, 0.000809, 0.998989,-0.037076;;, - 67;4; 0.017514, 0.000765, 0.999044,-0.035045;;, - 68;4; 0.016402, 0.000716, 0.999105,-0.032820;;, - 69;4; 0.015204, 0.000664, 0.999170,-0.030422;;, - 70;4; 0.013928, 0.000608, 0.999240,-0.027869;;, - 71;4; 0.012583, 0.000549, 0.999313,-0.025178;;, - 72;4; 0.011179, 0.000488, 0.999390,-0.022368;;, - 73;4; 0.009723, 0.000425, 0.999469,-0.019456;;, - 74;4; 0.008227, 0.000359, 0.999551,-0.016461;;, - 75;4; 0.006701, 0.000293, 0.999634,-0.013408;;, - 76;4; 0.005161, 0.000225, 0.999718,-0.010327;;, - 77;4; 0.003631, 0.000159, 0.999802,-0.007266;;, - 78;4; 0.002152, 0.000094, 0.999883,-0.004305;;, - 79;4; 0.000815, 0.000036, 0.999956,-0.001631;;, - 80;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 81;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 82;4;-0.000815,-0.000036, 0.999956,-0.001631;;, - 83;4;-0.002152,-0.000094, 0.999883,-0.004305;;, - 84;4;-0.003631,-0.000159, 0.999802,-0.007266;;, - 85;4;-0.005161,-0.000225, 0.999718,-0.010327;;, - 86;4;-0.006701,-0.000293, 0.999634,-0.013408;;, - 87;4;-0.008226,-0.000359, 0.999551,-0.016461;;, - 88;4;-0.009723,-0.000425, 0.999469,-0.019456;;, - 89;4;-0.011179,-0.000488, 0.999390,-0.022368;;, - 90;4;-0.012583,-0.000549, 0.999313,-0.025178;;, - 91;4;-0.013928,-0.000608, 0.999240,-0.027869;;, - 92;4;-0.015204,-0.000664, 0.999170,-0.030422;;, - 93;4;-0.016402,-0.000716, 0.999105,-0.032820;;, - 94;4;-0.017514,-0.000765, 0.999044,-0.035045;;, - 95;4;-0.018529,-0.000809, 0.998989,-0.037076;;, - 96;4;-0.019436,-0.000849, 0.998939,-0.038890;;, - 97;4;-0.020221,-0.000883, 0.998896,-0.040461;;, - 98;4;-0.020870,-0.000911, 0.998861,-0.041759;;, - 99;4;-0.021364,-0.000933, 0.998834,-0.042748;;, - 100;4;-0.021681,-0.000947, 0.998817,-0.043383;;, - 101;4;-0.021794,-0.000952, 0.998811,-0.043609;;, - 102;4;-0.021720,-0.000948, 0.998817,-0.043369;;, - 103;4;-0.021494,-0.000938, 0.998837,-0.042642;;, - 104;4;-0.021108,-0.000922, 0.998870,-0.041427;;, - 105;4;-0.020560,-0.000898, 0.998916,-0.039733;;, - 106;4;-0.019848,-0.000867, 0.998975,-0.037578;;, - 107;4;-0.018975,-0.000828, 0.999045,-0.035002;;, - 108;4;-0.017947,-0.000784, 0.999126,-0.032056;;, - 109;4;-0.016778,-0.000733, 0.999214,-0.028814;;, - 110;4;-0.015484,-0.000676, 0.999308,-0.025363;;, - 111;4;-0.014088,-0.000615, 0.999405,-0.021804;;, - 112;4;-0.012616,-0.000551, 0.999502,-0.018246;;, - 113;4;-0.011095,-0.000484, 0.999597,-0.014795;;, - 114;4;-0.009555,-0.000417, 0.999685,-0.011553;;, - 115;4;-0.008021,-0.000350, 0.999765,-0.008607;;, - 116;4;-0.006517,-0.000285, 0.999835,-0.006030;;, - 117;4;-0.005062,-0.000221, 0.999894,-0.003876;;, - 118;4;-0.003674,-0.000160, 0.999941,-0.002181;;, - 119;4;-0.002362,-0.000103, 0.999974,-0.000967;;, - 120;4;-0.001136,-0.000050, 0.999994,-0.000240;;, - 121;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 122;4; 0.001136, 0.000050, 0.999993,-0.000240;;, - 123;4; 0.002362, 0.000103, 0.999974,-0.000967;;, - 124;4; 0.003674, 0.000160, 0.999941,-0.002181;;, - 125;4; 0.005062, 0.000221, 0.999894,-0.003876;;, - 126;4; 0.006517, 0.000285, 0.999835,-0.006030;;, - 127;4; 0.008021, 0.000350, 0.999765,-0.008607;;, - 128;4; 0.009555, 0.000417, 0.999685,-0.011553;;, - 129;4; 0.011095, 0.000484, 0.999596,-0.014795;;, - 130;4; 0.012616, 0.000551, 0.999502,-0.018246;;, - 131;4; 0.014088, 0.000615, 0.999405,-0.021804;;, - 132;4; 0.015484, 0.000676, 0.999308,-0.025363;;, - 133;4; 0.016778, 0.000733, 0.999214,-0.028814;;, - 134;4; 0.017947, 0.000784, 0.999126,-0.032056;;, - 135;4; 0.018975, 0.000828, 0.999045,-0.035002;;, - 136;4; 0.019848, 0.000867, 0.998975,-0.037578;;, - 137;4; 0.020560, 0.000898, 0.998916,-0.039733;;, - 138;4; 0.021109, 0.000922, 0.998870,-0.041427;;, - 139;4; 0.021494, 0.000938, 0.998837,-0.042642;;, - 140;4; 0.021720, 0.000948, 0.998817,-0.043369;;, - 141;4; 0.021794, 0.000952, 0.998811,-0.043609;;, - 142;4; 0.021681, 0.000947, 0.998817,-0.043383;;, - 143;4; 0.021364, 0.000933, 0.998834,-0.042748;;, - 144;4; 0.020870, 0.000911, 0.998861,-0.041759;;, - 145;4; 0.020221, 0.000883, 0.998896,-0.040461;;, - 146;4; 0.019436, 0.000849, 0.998939,-0.038890;;, - 147;4; 0.018529, 0.000809, 0.998989,-0.037076;;, - 148;4; 0.017514, 0.000765, 0.999044,-0.035045;;, - 149;4; 0.016402, 0.000716, 0.999105,-0.032820;;, - 150;4; 0.015204, 0.000664, 0.999170,-0.030422;;, - 151;4; 0.013928, 0.000608, 0.999240,-0.027869;;, - 152;4; 0.012583, 0.000549, 0.999313,-0.025178;;, - 153;4; 0.011179, 0.000488, 0.999390,-0.022368;;, - 154;4; 0.009723, 0.000425, 0.999469,-0.019456;;, - 155;4; 0.008227, 0.000359, 0.999551,-0.016461;;, - 156;4; 0.006701, 0.000293, 0.999634,-0.013408;;, - 157;4; 0.005161, 0.000225, 0.999718,-0.010327;;, - 158;4; 0.003631, 0.000159, 0.999802,-0.007266;;, - 159;4; 0.002152, 0.000094, 0.999883,-0.004305;;, - 160;4; 0.000815, 0.000036, 0.999956,-0.001631;;, - 161;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 162;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 163;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 164;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 165;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 166;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 167;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 168;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 169;4; 0.003877,-0.000000, 0.999915, 0.000000;;, - 170;4; 0.014799,-0.000000, 0.999677, 0.000000;;, - 171;4; 0.028821,-0.000000, 0.999371, 0.000000;;, - 172;4; 0.039742,-0.000000, 0.999133, 0.000000;;, - 173;4; 0.043619, 0.000000, 0.999048, 0.000000;;, - 174;4; 0.041150, 0.000000, 0.999133, 0.000000;;, - 175;4; 0.033580,-0.000000, 0.999371, 0.000000;;, - 176;4; 0.022207,-0.000000, 0.999677, 0.000000;;, - 177;4; 0.010132,-0.000000, 0.999915, 0.000000;;, - 178;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 179;4;-0.010132, 0.000000, 0.999915, 0.000000;;, - 180;4;-0.022206, 0.000000, 0.999677, 0.000000;;, - 181;4;-0.033580, 0.000000, 0.999371, 0.000000;;, - 182;4;-0.041150,-0.000000, 0.999133, 0.000000;;, - 183;4;-0.043619, 0.000000, 0.999048, 0.000000;;, - 184;4;-0.039742, 0.000000, 0.999133, 0.000000;;, - 185;4;-0.028821, 0.000000, 0.999371, 0.000000;;, - 186;4;-0.014798, 0.000000, 0.999677, 0.000000;;, - 187;4;-0.003877, 0.000000, 0.999915, 0.000000;;, - 188;4; 0.000000, 0.000000, 1.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.000000, 6.750000, 0.000000;;, - 1;3;-0.000000, 6.750000, 0.000000;;, - 2;3; 0.000000, 6.750000, 0.000000;;, - 3;3; 0.000000, 6.750000, 0.000000;;, - 4;3; 0.000000, 6.750000, 0.000000;;, - 5;3; 0.000000, 6.750000, 0.000000;;, - 6;3; 0.000000, 6.750000, 0.000000;;, - 7;3; 0.000000, 6.750000,-0.000000;;, - 8;3; 0.000000, 6.750000,-0.000000;;, - 9;3; 0.000000, 6.750000, 0.000000;;, - 10;3; 0.000000, 6.750000,-0.000000;;, - 11;3; 0.000000, 6.750000, 0.000000;;, - 12;3; 0.000000, 6.750000, 0.000000;;, - 13;3; 0.000000, 6.750000, 0.000000;;, - 14;3; 0.000000, 6.750000,-0.000000;;, - 15;3; 0.000000, 6.750000,-0.000000;;, - 16;3; 0.000000, 6.750000, 0.000000;;, - 17;3;-0.000000, 6.750001,-0.000000;;, - 18;3; 0.000000, 6.750000, 0.000000;;, - 19;3; 0.000000, 6.750000, 0.000000;;, - 20;3; 0.000000, 6.750000, 0.000000;;, - 21;3; 0.000000, 6.750000, 0.000000;;, - 22;3; 0.000000, 6.750000, 0.000000;;, - 23;3;-0.000000, 6.750001,-0.000000;;, - 24;3; 0.000000, 6.750000, 0.000000;;, - 25;3; 0.000000, 6.750000, 0.000000;;, - 26;3; 0.000000, 6.750000,-0.000000;;, - 27;3; 0.000000, 6.750000, 0.000000;;, - 28;3; 0.000000, 6.750000, 0.000000;;, - 29;3; 0.000000, 6.750000, 0.000000;;, - 30;3; 0.000000, 6.750000, 0.000000;;, - 31;3; 0.000000, 6.750000, 0.000000;;, - 32;3; 0.000000, 6.750000,-0.000000;;, - 33;3; 0.000000, 6.750000,-0.000000;;, - 34;3; 0.000000, 6.750000, 0.000000;;, - 35;3; 0.000000, 6.750000, 0.000000;;, - 36;3; 0.000000, 6.750000,-0.000000;;, - 37;3; 0.000000, 6.750000, 0.000000;;, - 38;3; 0.000000, 6.750000, 0.000000;;, - 39;3;-0.000000, 6.750000, 0.000000;;, - 40;3; 0.000000, 6.750000, 0.000000;;, - 41;3;-0.000000, 6.750000, 0.000000;;, - 42;3; 0.000000, 6.750000, 0.000000;;, - 43;3; 0.000000, 6.750000, 0.000000;;, - 44;3; 0.000000, 6.750000, 0.000000;;, - 45;3; 0.000000, 6.750000, 0.000000;;, - 46;3; 0.000000, 6.750000,-0.000000;;, - 47;3; 0.000000, 6.750000, 0.000000;;, - 48;3; 0.000000, 6.750000, 0.000000;;, - 49;3; 0.000000, 6.750000, 0.000000;;, - 50;3; 0.000000, 6.750000,-0.000000;;, - 51;3; 0.000000, 6.750000, 0.000000;;, - 52;3; 0.000000, 6.750000, 0.000000;;, - 53;3; 0.000000, 6.750000, 0.000000;;, - 54;3; 0.000000, 6.750000, 0.000000;;, - 55;3; 0.000000, 6.750000,-0.000000;;, - 56;3; 0.000000, 6.750000, 0.000000;;, - 57;3;-0.000000, 6.750001,-0.000000;;, - 58;3; 0.000000, 6.750000, 0.000000;;, - 59;3; 0.000000, 6.750000, 0.000000;;, - 60;3; 0.000000, 6.750000, 0.000000;;, - 61;3; 0.000000, 6.750000, 0.000000;;, - 62;3; 0.000000, 6.750000, 0.000000;;, - 63;3; 0.000000, 6.750000,-0.000000;;, - 64;3; 0.000000, 6.750000, 0.000000;;, - 65;3; 0.000000, 6.750000, 0.000000;;, - 66;3; 0.000000, 6.750000, 0.000000;;, - 67;3; 0.000000, 6.750000, 0.000000;;, - 68;3; 0.000000, 6.750000, 0.000000;;, - 69;3; 0.000000, 6.750000,-0.000000;;, - 70;3; 0.000000, 6.750000,-0.000000;;, - 71;3; 0.000000, 6.750000,-0.000000;;, - 72;3; 0.000000, 6.750000,-0.000000;;, - 73;3; 0.000000, 6.749999, 0.000000;;, - 74;3; 0.000000, 6.750000, 0.000000;;, - 75;3; 0.000000, 6.750000, 0.000000;;, - 76;3;-0.000000, 6.750000,-0.000000;;, - 77;3; 0.000000, 6.750000, 0.000000;;, - 78;3; 0.000000, 6.750000,-0.000000;;, - 79;3; 0.000000, 6.750000, 0.000000;;, - 80;3; 0.000000, 6.750000, 0.000000;;, - 81;3; 0.000000, 6.750000,-0.000000;;, - 82;3; 0.000000, 6.750000, 0.000000;;, - 83;3; 0.000000, 6.750000,-0.000000;;, - 84;3; 0.000000, 6.750000, 0.000000;;, - 85;3;-0.000000, 6.750000,-0.000000;;, - 86;3; 0.000000, 6.750000, 0.000000;;, - 87;3; 0.000000, 6.750000,-0.000000;;, - 88;3; 0.000000, 6.750000, 0.000000;;, - 89;3; 0.000000, 6.750000,-0.000000;;, - 90;3; 0.000000, 6.750000,-0.000000;;, - 91;3; 0.000000, 6.750000, 0.000000;;, - 92;3; 0.000000, 6.750000,-0.000000;;, - 93;3; 0.000000, 6.750000,-0.000000;;, - 94;3; 0.000000, 6.750000,-0.000000;;, - 95;3; 0.000000, 6.750000, 0.000000;;, - 96;3; 0.000000, 6.750000,-0.000000;;, - 97;3; 0.000000, 6.750000, 0.000000;;, - 98;3; 0.000000, 6.750000, 0.000000;;, - 99;3; 0.000000, 6.750000,-0.000000;;, - 100;3; 0.000000, 6.750000, 0.000000;;, - 101;3; 0.000000, 6.750000, 0.000000;;, - 102;3; 0.000000, 6.750000,-0.000000;;, - 103;3; 0.000000, 6.750000, 0.000000;;, - 104;3;-0.000000, 6.750000, 0.000000;;, - 105;3; 0.000000, 6.750000, 0.000000;;, - 106;3; 0.000000, 6.750000, 0.000000;;, - 107;3; 0.000000, 6.750000,-0.000000;;, - 108;3; 0.000000, 6.750000, 0.000000;;, - 109;3; 0.000000, 6.750000, 0.000000;;, - 110;3; 0.000000, 6.750000,-0.000000;;, - 111;3; 0.000000, 6.750000,-0.000000;;, - 112;3; 0.000000, 6.750000,-0.000000;;, - 113;3; 0.000000, 6.750000,-0.000000;;, - 114;3; 0.000000, 6.750000, 0.000000;;, - 115;3; 0.000000, 6.750000, 0.000000;;, - 116;3; 0.000000, 6.750000, 0.000000;;, - 117;3; 0.000000, 6.750000,-0.000000;;, - 118;3; 0.000000, 6.750000,-0.000000;;, - 119;3; 0.000000, 6.750000,-0.000000;;, - 120;3;-0.000000, 6.750000, 0.000000;;, - 121;3; 0.000000, 6.750000,-0.000000;;, - 122;3;-0.000000, 6.750000,-0.000000;;, - 123;3; 0.000000, 6.750000,-0.000000;;, - 124;3; 0.000000, 6.750000, 0.000000;;, - 125;3; 0.000000, 6.750000,-0.000000;;, - 126;3; 0.000000, 6.750000, 0.000000;;, - 127;3; 0.000000, 6.750000,-0.000000;;, - 128;3; 0.000000, 6.750000, 0.000000;;, - 129;3; 0.000000, 6.750000,-0.000000;;, - 130;3; 0.000000, 6.750000,-0.000000;;, - 131;3; 0.000000, 6.750000,-0.000000;;, - 132;3; 0.000000, 6.750000,-0.000000;;, - 133;3; 0.000000, 6.750000, 0.000000;;, - 134;3; 0.000000, 6.750000,-0.000000;;, - 135;3; 0.000000, 6.750000, 0.000000;;, - 136;3; 0.000000, 6.750000, 0.000000;;, - 137;3; 0.000000, 6.750000, 0.000000;;, - 138;3;-0.000000, 6.750000, 0.000000;;, - 139;3; 0.000000, 6.750000,-0.000000;;, - 140;3; 0.000000, 6.750000,-0.000000;;, - 141;3; 0.000000, 6.750000, 0.000000;;, - 142;3; 0.000000, 6.750000, 0.000000;;, - 143;3; 0.000000, 6.750000,-0.000000;;, - 144;3; 0.000000, 6.750000, 0.000000;;, - 145;3; 0.000000, 6.750000, 0.000000;;, - 146;3; 0.000000, 6.750000, 0.000000;;, - 147;3; 0.000000, 6.750000,-0.000000;;, - 148;3; 0.000000, 6.750000, 0.000000;;, - 149;3; 0.000000, 6.750000, 0.000000;;, - 150;3; 0.000000, 6.750000,-0.000000;;, - 151;3; 0.000000, 6.750000,-0.000000;;, - 152;3; 0.000000, 6.750000,-0.000000;;, - 153;3; 0.000000, 6.750000,-0.000000;;, - 154;3; 0.000000, 6.750000,-0.000000;;, - 155;3; 0.000000, 6.750000,-0.000000;;, - 156;3; 0.000000, 6.750000,-0.000000;;, - 157;3;-0.000000, 6.750000, 0.000000;;, - 158;3; 0.000000, 6.750000, 0.000000;;, - 159;3; 0.000000, 6.750000,-0.000000;;, - 160;3; 0.000000, 6.750000, 0.000000;;, - 161;3; 0.000000, 6.750000,-0.000000;;, - 162;3; 0.000000, 6.750000, 0.000000;;, - 163;3; 0.000000, 6.750000, 0.000000;;, - 164;3; 0.000000, 6.750000, 0.000000;;, - 165;3; 0.000000, 6.750000, 0.000000;;, - 166;3; 0.000000, 6.750000, 0.000000;;, - 167;3; 0.000000, 6.750000, 0.000000;;, - 168;3; 0.000000, 6.750000, 0.000000;;, - 169;3; 0.000000, 6.750000, 0.000000;;, - 170;3; 0.000000, 6.750000, 0.000000;;, - 171;3; 0.000000, 6.750000, 0.000000;;, - 172;3; 0.000000, 6.750000, 0.000000;;, - 173;3; 0.000000, 6.750000, 0.000000;;, - 174;3; 0.000000, 6.750000, 0.000000;;, - 175;3; 0.000000, 6.750000, 0.000000;;, - 176;3; 0.000000, 6.750000, 0.000000;;, - 177;3; 0.000000, 6.750000, 0.000000;;, - 178;3; 0.000000, 6.750000, 0.000000;;, - 179;3; 0.000000, 6.750000, 0.000000;;, - 180;3; 0.000000, 6.750000, 0.000000;;, - 181;3; 0.000000, 6.750000, 0.000000;;, - 182;3; 0.000000, 6.750000, 0.000000;;, - 183;3; 0.000000, 6.750000, 0.000000;;, - 184;3; 0.000000, 6.750000, 0.000000;;, - 185;3; 0.000000, 6.750000, 0.000000;;, - 186;3; 0.000000, 6.750000, 0.000000;;, - 187;3; 0.000000, 6.750000, 0.000000;;, - 188;3; 0.000000, 6.750000, 0.000000;;; - } - } - Animation { - {Armature_Arm_Left} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.648448, 0.757709,-0.045973,-0.057269;;, - 1;4; 0.648161, 0.757936,-0.045920,-0.057331;;, - 2;4; 0.647294, 0.758622,-0.045761,-0.057521;;, - 3;4; 0.645844, 0.759770,-0.045495,-0.057837;;, - 4;4; 0.643821, 0.761372,-0.045124,-0.058279;;, - 5;4; 0.641250, 0.763407,-0.044653,-0.058841;;, - 6;4; 0.638175, 0.765842,-0.044088,-0.059513;;, - 7;4; 0.634660, 0.768625,-0.043443,-0.060281;;, - 8;4; 0.630790, 0.771689,-0.042734,-0.061126;;, - 9;4; 0.626671, 0.774950,-0.041978,-0.062026;;, - 10;4; 0.622424, 0.778313,-0.041199,-0.062953;;, - 11;4; 0.618177, 0.781676,-0.040419,-0.063881;;, - 12;4; 0.614058, 0.784937,-0.039664,-0.064781;;, - 13;4; 0.610189, 0.788000,-0.038954,-0.065626;;, - 14;4; 0.606673, 0.790784,-0.038309,-0.066394;;, - 15;4; 0.603598, 0.793218,-0.037745,-0.067066;;, - 16;4; 0.601027, 0.795254,-0.037273,-0.067628;;, - 17;4; 0.599004, 0.796856,-0.036902,-0.068069;;, - 18;4; 0.597555, 0.798003,-0.036636,-0.068386;;, - 19;4; 0.596688, 0.798690,-0.036477,-0.068576;;, - 20;4; 0.596401, 0.798917,-0.036424,-0.068638;;, - 21;4; 0.596760, 0.798627,-0.036471,-0.068580;;, - 22;4; 0.597846, 0.797750,-0.036614,-0.068404;;, - 23;4; 0.599661, 0.796284,-0.036852,-0.068109;;, - 24;4; 0.602194, 0.794238,-0.037184,-0.067698;;, - 25;4; 0.605413, 0.791638,-0.037606,-0.067176;;, - 26;4; 0.609264, 0.788527,-0.038110,-0.066551;;, - 27;4; 0.613666, 0.784972,-0.038687,-0.065837;;, - 28;4; 0.618511, 0.781058,-0.039322,-0.065050;;, - 29;4; 0.623668, 0.776892,-0.039998,-0.064213;;, - 30;4; 0.628987, 0.772597,-0.040695,-0.063350;;, - 31;4; 0.634305, 0.768301,-0.041393,-0.062487;;, - 32;4; 0.639462, 0.764135,-0.042069,-0.061650;;, - 33;4; 0.644308, 0.760222,-0.042704,-0.060864;;, - 34;4; 0.648710, 0.756666,-0.043281,-0.060150;;, - 35;4; 0.652560, 0.753556,-0.043785,-0.059525;;, - 36;4; 0.655780, 0.750956,-0.044207,-0.059002;;, - 37;4; 0.658313, 0.748910,-0.044539,-0.058591;;, - 38;4; 0.660128, 0.747444,-0.044777,-0.058297;;, - 39;4; 0.661214, 0.746567,-0.044920,-0.058121;;, - 40;4; 0.661573, 0.746277,-0.044967,-0.058062;;, - 41;4; 0.661328, 0.746479,-0.044910,-0.058126;;, - 42;4; 0.660587, 0.747091,-0.044737,-0.058317;;, - 43;4; 0.659348, 0.748115,-0.044449,-0.058638;;, - 44;4; 0.657620, 0.749544,-0.044046,-0.059085;;, - 45;4; 0.655424, 0.751359,-0.043535,-0.059653;;, - 46;4; 0.652797, 0.753531,-0.042924,-0.060333;;, - 47;4; 0.649794, 0.756013,-0.042224,-0.061110;;, - 48;4; 0.646488, 0.758746,-0.041455,-0.061966;;, - 49;4; 0.642969, 0.761655,-0.040636,-0.062876;;, - 50;4; 0.639341, 0.764654,-0.039791,-0.063815;;, - 51;4; 0.635713, 0.767653,-0.038946,-0.064754;;, - 52;4; 0.632194, 0.770562,-0.038127,-0.065665;;, - 53;4; 0.628889, 0.773294,-0.037357,-0.066520;;, - 54;4; 0.625885, 0.775777,-0.036658,-0.067297;;, - 55;4; 0.623258, 0.777949,-0.036047,-0.067977;;, - 56;4; 0.621062, 0.779764,-0.035535,-0.068545;;, - 57;4; 0.619334, 0.781193,-0.035133,-0.068993;;, - 58;4; 0.618095, 0.782216,-0.034845,-0.069313;;, - 59;4; 0.617355, 0.782829,-0.034672,-0.069505;;, - 60;4; 0.617110, 0.783031,-0.034615,-0.069568;;, - 61;4; 0.617174, 0.782991,-0.034614,-0.069562;;, - 62;4; 0.617353, 0.782876,-0.034615,-0.069541;;, - 63;4; 0.617631, 0.782698,-0.034624,-0.069502;;, - 64;4; 0.617995, 0.782463,-0.034645,-0.069440;;, - 65;4; 0.618435, 0.782178,-0.034685,-0.069353;;, - 66;4; 0.618940, 0.781848,-0.034749,-0.069236;;, - 67;4; 0.619505, 0.781478,-0.034841,-0.069085;;, - 68;4; 0.620120, 0.781070,-0.034969,-0.068894;;, - 69;4; 0.620781, 0.780629,-0.035139,-0.068658;;, - 70;4; 0.621482, 0.780157,-0.035359,-0.068369;;, - 71;4; 0.622217, 0.779656,-0.035640,-0.068019;;, - 72;4; 0.622979, 0.779130,-0.035993,-0.067597;;, - 73;4; 0.623764, 0.778580,-0.036434,-0.067088;;, - 74;4; 0.624563, 0.778009,-0.036984,-0.066473;;, - 75;4; 0.625368, 0.777419,-0.037673,-0.065726;;, - 76;4; 0.626168, 0.776813,-0.038544,-0.064805;;, - 77;4; 0.626943, 0.776195,-0.039669,-0.063644;;, - 78;4; 0.627662, 0.775573,-0.041178,-0.062123;;, - 79;4; 0.628249, 0.774961,-0.043370,-0.059964;;, - 80;4; 0.628391, 0.774424,-0.047456,-0.056046;;, - 81;4; 0.000990, 0.997299,-0.072151,-0.013690;;, - 82;4;-0.011967, 0.997270,-0.071970,-0.015145;;, - 83;4;-0.018796, 0.997206,-0.071870,-0.016486;;, - 84;4;-0.023483, 0.997134,-0.071799,-0.017763;;, - 85;4;-0.026976, 0.997057,-0.071745,-0.018986;;, - 86;4;-0.029682, 0.996980,-0.071701,-0.020158;;, - 87;4;-0.031824, 0.996902,-0.071665,-0.021280;;, - 88;4;-0.033538, 0.996826,-0.071634,-0.022353;;, - 89;4;-0.034915, 0.996751,-0.071609,-0.023375;;, - 90;4;-0.036019, 0.996679,-0.071588,-0.024345;;, - 91;4;-0.036900, 0.996610,-0.071570,-0.025261;;, - 92;4;-0.037594, 0.996544,-0.071555,-0.026120;;, - 93;4;-0.038132, 0.996482,-0.071542,-0.026918;;, - 94;4;-0.038539, 0.996425,-0.071531,-0.027653;;, - 95;4;-0.038836, 0.996372,-0.071523,-0.028317;;, - 96;4;-0.039042, 0.996325,-0.071516,-0.028907;;, - 97;4;-0.039174, 0.996284,-0.071511,-0.029414;;, - 98;4;-0.039248, 0.996250,-0.071507,-0.029831;;, - 99;4;-0.039280, 0.996225,-0.071504,-0.030146;;, - 100;4;-0.039287, 0.996208,-0.071503,-0.030348;;, - 101;4;-0.039284, 0.996202,-0.071502,-0.030419;;, - 102;4;-0.039062, 0.996208,-0.071506,-0.030327;;, - 103;4;-0.038392, 0.996227,-0.071517,-0.030048;;, - 104;4;-0.037270, 0.996257,-0.071535,-0.029583;;, - 105;4;-0.035704, 0.996300,-0.071560,-0.028932;;, - 106;4;-0.033715, 0.996354,-0.071592,-0.028106;;, - 107;4;-0.031335, 0.996419,-0.071630,-0.027118;;, - 108;4;-0.028615, 0.996493,-0.071674,-0.025988;;, - 109;4;-0.025621, 0.996574,-0.071723,-0.024744;;, - 110;4;-0.022434, 0.996661,-0.071774,-0.023420;;, - 111;4;-0.019147, 0.996751,-0.071827,-0.022055;;, - 112;4;-0.015860, 0.996840,-0.071880,-0.020690;;, - 113;4;-0.012673, 0.996927,-0.071931,-0.019366;;, - 114;4;-0.009679, 0.997009,-0.071979,-0.018122;;, - 115;4;-0.006959, 0.997083,-0.072023,-0.016992;;, - 116;4;-0.004579, 0.997148,-0.072062,-0.016004;;, - 117;4;-0.002590, 0.997202,-0.072094,-0.015177;;, - 118;4;-0.001024, 0.997244,-0.072119,-0.014527;;, - 119;4; 0.000098, 0.997275,-0.072137,-0.014061;;, - 120;4; 0.000769, 0.997293,-0.072148,-0.013782;;, - 121;4; 0.000990, 0.997299,-0.072151,-0.013690;;, - 122;4; 0.000769, 0.997293,-0.072148,-0.013782;;, - 123;4; 0.000098, 0.997275,-0.072137,-0.014061;;, - 124;4;-0.001024, 0.997244,-0.072119,-0.014527;;, - 125;4;-0.002590, 0.997202,-0.072094,-0.015177;;, - 126;4;-0.004579, 0.997148,-0.072062,-0.016004;;, - 127;4;-0.006959, 0.997083,-0.072023,-0.016992;;, - 128;4;-0.009679, 0.997009,-0.071979,-0.018122;;, - 129;4;-0.012673, 0.996927,-0.071931,-0.019366;;, - 130;4;-0.015860, 0.996840,-0.071880,-0.020690;;, - 131;4;-0.019147, 0.996751,-0.071827,-0.022055;;, - 132;4;-0.022434, 0.996661,-0.071774,-0.023420;;, - 133;4;-0.025621, 0.996574,-0.071723,-0.024744;;, - 134;4;-0.028615, 0.996493,-0.071674,-0.025988;;, - 135;4;-0.031335, 0.996419,-0.071630,-0.027118;;, - 136;4;-0.033715, 0.996354,-0.071592,-0.028106;;, - 137;4;-0.035704, 0.996300,-0.071560,-0.028932;;, - 138;4;-0.037270, 0.996257,-0.071535,-0.029583;;, - 139;4;-0.038392, 0.996227,-0.071517,-0.030048;;, - 140;4;-0.039062, 0.996208,-0.071506,-0.030327;;, - 141;4;-0.039284, 0.996202,-0.071502,-0.030419;;, - 142;4;-0.039115, 0.996208,-0.071505,-0.030336;;, - 143;4;-0.038639, 0.996224,-0.071513,-0.030100;;, - 144;4;-0.037892, 0.996249,-0.071526,-0.029733;;, - 145;4;-0.036906, 0.996282,-0.071542,-0.029250;;, - 146;4;-0.035703, 0.996322,-0.071562,-0.028665;;, - 147;4;-0.034305, 0.996368,-0.071585,-0.027989;;, - 148;4;-0.032728, 0.996419,-0.071611,-0.027232;;, - 149;4;-0.030984, 0.996475,-0.071640,-0.026401;;, - 150;4;-0.029084, 0.996536,-0.071671,-0.025504;;, - 151;4;-0.027040, 0.996601,-0.071705,-0.024547;;, - 152;4;-0.024856, 0.996669,-0.071741,-0.023537;;, - 153;4;-0.022540, 0.996740,-0.071779,-0.022479;;, - 154;4;-0.020096, 0.996813,-0.071819,-0.021379;;, - 155;4;-0.017525, 0.996888,-0.071861,-0.020245;;, - 156;4;-0.014829, 0.996965,-0.071905,-0.019082;;, - 157;4;-0.012005, 0.997043,-0.071950,-0.017902;;, - 158;4;-0.009047, 0.997120,-0.071997,-0.016718;;, - 159;4;-0.005937, 0.997194,-0.072047,-0.015555;;, - 160;4;-0.002640, 0.997260,-0.072098,-0.014470;;, - 161;4; 0.000990, 0.997299,-0.072151,-0.013690;;, - 162;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 163;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 164;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 165;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 166;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 167;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 168;4; 0.648448, 0.757709,-0.045973,-0.057269;;, - 169;4; 0.654493, 0.752186,-0.040667,-0.064731;;, - 170;4; 0.658020, 0.748822,-0.037013,-0.069986;;, - 171;4; 0.659629, 0.747251,-0.035126,-0.072743;;, - 172;4; 0.660600, 0.746345,-0.034493,-0.073596;;, - 173;4; 0.662067, 0.745032,-0.034351,-0.073580;;, - 174;4; 0.664030, 0.743414,-0.034783,-0.072577;;, - 175;4; 0.665879, 0.742098,-0.036358,-0.069861;;, - 176;4; 0.667289, 0.741198,-0.038892,-0.065911;;, - 177;4; 0.668012, 0.740701,-0.041785,-0.061811;;, - 178;4; 0.668060, 0.740475,-0.044458,-0.058453;;, - 179;4; 0.667246, 0.740936,-0.047522,-0.055224;;, - 180;4; 0.665271, 0.742616,-0.051527,-0.051513;;, - 181;4; 0.662480, 0.745165,-0.055526,-0.048126;;, - 182;4; 0.659627, 0.747806,-0.058315,-0.045969;;, - 183;4; 0.657320, 0.749902,-0.059309,-0.045384;;, - 184;4; 0.655964, 0.751255,-0.058163,-0.046490;;, - 185;4; 0.655437, 0.752065,-0.054765,-0.049326;;, - 186;4; 0.654752, 0.752963,-0.050391,-0.052966;;, - 187;4; 0.652660, 0.754722,-0.047040,-0.055932;;, - 188;4; 0.648448, 0.757709,-0.045973,-0.057269;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-2.000000, 6.750000, 0.000000;;, - 1;3;-2.000000, 6.750000, 0.000000;;, - 2;3;-2.000000, 6.750000, 0.000000;;, - 3;3;-2.000000, 6.750000, 0.000000;;, - 4;3;-2.000000, 6.750000, 0.000000;;, - 5;3;-2.000000, 6.750000, 0.000000;;, - 6;3;-2.000000, 6.750000, 0.000000;;, - 7;3;-2.000000, 6.750000,-0.000000;;, - 8;3;-2.000000, 6.750000,-0.000000;;, - 9;3;-2.000000, 6.750000, 0.000000;;, - 10;3;-2.000000, 6.750000,-0.000000;;, - 11;3;-2.000000, 6.750000, 0.000000;;, - 12;3;-2.000000, 6.750000, 0.000000;;, - 13;3;-2.000000, 6.750000, 0.000000;;, - 14;3;-2.000000, 6.750000,-0.000000;;, - 15;3;-2.000000, 6.750000,-0.000000;;, - 16;3;-2.000000, 6.750000, 0.000000;;, - 17;3;-2.000000, 6.750001,-0.000000;;, - 18;3;-2.000000, 6.750000, 0.000000;;, - 19;3;-2.000000, 6.750000, 0.000000;;, - 20;3;-2.000000, 6.750000, 0.000000;;, - 21;3;-2.000000, 6.750000, 0.000000;;, - 22;3;-2.000000, 6.750000, 0.000000;;, - 23;3;-2.000000, 6.750001,-0.000000;;, - 24;3;-2.000000, 6.750000, 0.000000;;, - 25;3;-2.000000, 6.750000, 0.000000;;, - 26;3;-2.000000, 6.750000,-0.000000;;, - 27;3;-2.000000, 6.750000, 0.000000;;, - 28;3;-2.000000, 6.750000, 0.000000;;, - 29;3;-2.000000, 6.750000, 0.000000;;, - 30;3;-2.000000, 6.750000, 0.000000;;, - 31;3;-2.000000, 6.750000, 0.000000;;, - 32;3;-2.000000, 6.750000,-0.000000;;, - 33;3;-2.000000, 6.750000,-0.000000;;, - 34;3;-2.000000, 6.750000, 0.000000;;, - 35;3;-2.000000, 6.750000, 0.000000;;, - 36;3;-2.000000, 6.750000,-0.000000;;, - 37;3;-2.000000, 6.750000, 0.000000;;, - 38;3;-2.000000, 6.750000, 0.000000;;, - 39;3;-2.000000, 6.750000, 0.000000;;, - 40;3;-2.000000, 6.750000, 0.000000;;, - 41;3;-2.000000, 6.750000, 0.000000;;, - 42;3;-2.000000, 6.750000, 0.000000;;, - 43;3;-2.000000, 6.750000, 0.000000;;, - 44;3;-2.000000, 6.750000, 0.000000;;, - 45;3;-2.000000, 6.750000, 0.000000;;, - 46;3;-2.000000, 6.750000,-0.000000;;, - 47;3;-2.000000, 6.750000, 0.000000;;, - 48;3;-2.000000, 6.750000, 0.000000;;, - 49;3;-2.000000, 6.750000, 0.000000;;, - 50;3;-2.000000, 6.750000,-0.000000;;, - 51;3;-2.000000, 6.750000, 0.000000;;, - 52;3;-2.000000, 6.750000, 0.000000;;, - 53;3;-2.000000, 6.750000, 0.000000;;, - 54;3;-2.000000, 6.750000, 0.000000;;, - 55;3;-2.000000, 6.750000,-0.000000;;, - 56;3;-2.000000, 6.750000, 0.000000;;, - 57;3;-2.000000, 6.750001,-0.000000;;, - 58;3;-2.000000, 6.750000, 0.000000;;, - 59;3;-2.000000, 6.750000, 0.000000;;, - 60;3;-2.000000, 6.750000, 0.000000;;, - 61;3;-2.000000, 6.750000, 0.000000;;, - 62;3;-2.000000, 6.750000, 0.000000;;, - 63;3;-2.000000, 6.750000,-0.000000;;, - 64;3;-2.000000, 6.750000, 0.000000;;, - 65;3;-2.000000, 6.750000, 0.000000;;, - 66;3;-2.000000, 6.750000, 0.000000;;, - 67;3;-2.000000, 6.750000, 0.000000;;, - 68;3;-2.000000, 6.750000, 0.000000;;, - 69;3;-2.000000, 6.750000,-0.000000;;, - 70;3;-2.000000, 6.750000,-0.000000;;, - 71;3;-2.000000, 6.750000,-0.000000;;, - 72;3;-2.000000, 6.750000,-0.000000;;, - 73;3;-2.000000, 6.749999, 0.000000;;, - 74;3;-2.000000, 6.750000, 0.000000;;, - 75;3;-2.000000, 6.750000, 0.000000;;, - 76;3;-2.000000, 6.750000,-0.000000;;, - 77;3;-2.000000, 6.750000, 0.000000;;, - 78;3;-2.000000, 6.750000,-0.000000;;, - 79;3;-2.000000, 6.750000, 0.000000;;, - 80;3;-2.000000, 6.750000, 0.000000;;, - 81;3;-2.000000, 6.750000,-0.000000;;, - 82;3;-2.000000, 6.750000, 0.000000;;, - 83;3;-2.000000, 6.750000,-0.000000;;, - 84;3;-2.000000, 6.750000, 0.000000;;, - 85;3;-2.000000, 6.750000,-0.000000;;, - 86;3;-2.000000, 6.750000, 0.000000;;, - 87;3;-2.000000, 6.750000,-0.000000;;, - 88;3;-2.000000, 6.750000, 0.000000;;, - 89;3;-2.000000, 6.750000,-0.000000;;, - 90;3;-2.000000, 6.750000,-0.000000;;, - 91;3;-2.000000, 6.750000, 0.000000;;, - 92;3;-2.000000, 6.750000,-0.000000;;, - 93;3;-2.000000, 6.750000,-0.000000;;, - 94;3;-2.000000, 6.750000,-0.000000;;, - 95;3;-2.000000, 6.750000, 0.000000;;, - 96;3;-2.000000, 6.750000,-0.000000;;, - 97;3;-2.000000, 6.750000, 0.000000;;, - 98;3;-2.000000, 6.750000, 0.000000;;, - 99;3;-2.000000, 6.750000,-0.000000;;, - 100;3;-2.000000, 6.750000, 0.000000;;, - 101;3;-2.000000, 6.750000, 0.000000;;, - 102;3;-2.000000, 6.750000,-0.000000;;, - 103;3;-2.000000, 6.750000, 0.000000;;, - 104;3;-2.000000, 6.750000, 0.000000;;, - 105;3;-2.000000, 6.750000, 0.000000;;, - 106;3;-2.000000, 6.750000, 0.000000;;, - 107;3;-2.000000, 6.750000,-0.000000;;, - 108;3;-2.000000, 6.750000, 0.000000;;, - 109;3;-2.000000, 6.750000, 0.000000;;, - 110;3;-2.000000, 6.750000,-0.000000;;, - 111;3;-2.000000, 6.750000,-0.000000;;, - 112;3;-2.000000, 6.750000,-0.000000;;, - 113;3;-2.000000, 6.750000,-0.000000;;, - 114;3;-2.000000, 6.750000, 0.000000;;, - 115;3;-2.000000, 6.750000, 0.000000;;, - 116;3;-2.000000, 6.750000, 0.000000;;, - 117;3;-2.000000, 6.750000,-0.000000;;, - 118;3;-2.000000, 6.750000,-0.000000;;, - 119;3;-2.000000, 6.750000,-0.000000;;, - 120;3;-2.000000, 6.750000, 0.000000;;, - 121;3;-2.000000, 6.750000,-0.000000;;, - 122;3;-2.000000, 6.750000,-0.000000;;, - 123;3;-2.000000, 6.750000,-0.000000;;, - 124;3;-2.000000, 6.750000, 0.000000;;, - 125;3;-2.000000, 6.750000,-0.000000;;, - 126;3;-2.000000, 6.750000, 0.000000;;, - 127;3;-2.000000, 6.750000,-0.000000;;, - 128;3;-2.000000, 6.750000, 0.000000;;, - 129;3;-2.000000, 6.750000,-0.000000;;, - 130;3;-2.000000, 6.750000,-0.000000;;, - 131;3;-2.000000, 6.750000,-0.000000;;, - 132;3;-2.000000, 6.750000,-0.000000;;, - 133;3;-2.000000, 6.750000, 0.000000;;, - 134;3;-2.000000, 6.750000,-0.000000;;, - 135;3;-2.000000, 6.750000, 0.000000;;, - 136;3;-2.000000, 6.750000, 0.000000;;, - 137;3;-2.000000, 6.750000, 0.000000;;, - 138;3;-2.000000, 6.750000, 0.000000;;, - 139;3;-2.000000, 6.750000,-0.000000;;, - 140;3;-2.000000, 6.750000,-0.000000;;, - 141;3;-2.000000, 6.750000, 0.000000;;, - 142;3;-2.000000, 6.750000, 0.000000;;, - 143;3;-2.000000, 6.750000,-0.000000;;, - 144;3;-2.000000, 6.750000, 0.000000;;, - 145;3;-2.000000, 6.750000, 0.000000;;, - 146;3;-2.000000, 6.750000, 0.000000;;, - 147;3;-2.000000, 6.750000,-0.000000;;, - 148;3;-2.000000, 6.750000, 0.000000;;, - 149;3;-2.000000, 6.750000, 0.000000;;, - 150;3;-2.000000, 6.750000,-0.000000;;, - 151;3;-2.000000, 6.750000,-0.000000;;, - 152;3;-2.000000, 6.750000,-0.000000;;, - 153;3;-2.000000, 6.750000,-0.000000;;, - 154;3;-2.000000, 6.750000,-0.000000;;, - 155;3;-2.000000, 6.750000,-0.000000;;, - 156;3;-2.000000, 6.750000,-0.000000;;, - 157;3;-2.000000, 6.750000, 0.000000;;, - 158;3;-2.000000, 6.750000, 0.000000;;, - 159;3;-2.000000, 6.750000,-0.000000;;, - 160;3;-2.000000, 6.750000, 0.000000;;, - 161;3;-2.000000, 6.750000,-0.000000;;, - 162;3;-2.000000, 6.750000, 0.000000;;, - 163;3;-2.000000, 6.750000, 0.000000;;, - 164;3;-2.000000, 6.750000, 0.000000;;, - 165;3;-2.000000, 6.750000, 0.000000;;, - 166;3;-2.000000, 6.750000, 0.000000;;, - 167;3;-2.000000, 6.750000, 0.000000;;, - 168;3;-2.000000, 6.750000, 0.000000;;, - 169;3;-2.000000, 6.750000, 0.000000;;, - 170;3;-2.000000, 6.750000, 0.000000;;, - 171;3;-2.000000, 6.750000, 0.000000;;, - 172;3;-2.000000, 6.750000, 0.000000;;, - 173;3;-2.000000, 6.750000, 0.000000;;, - 174;3;-2.000000, 6.750000, 0.000000;;, - 175;3;-2.000000, 6.750000, 0.000000;;, - 176;3;-2.000000, 6.750000, 0.000000;;, - 177;3;-2.000000, 6.750000, 0.000000;;, - 178;3;-2.000000, 6.750000, 0.000000;;, - 179;3;-2.000000, 6.750000, 0.000000;;, - 180;3;-2.000000, 6.750000, 0.000000;;, - 181;3;-2.000000, 6.750000, 0.000000;;, - 182;3;-2.000000, 6.750000, 0.000000;;, - 183;3;-2.000000, 6.750000, 0.000000;;, - 184;3;-2.000000, 6.750000, 0.000000;;, - 185;3;-2.000000, 6.750000, 0.000000;;, - 186;3;-2.000000, 6.750000, 0.000000;;, - 187;3;-2.000000, 6.750000, 0.000000;;, - 188;3;-2.000000, 6.750000, 0.000000;;; - } - } - Animation { - {Armature_Arm_Right} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.648448, 0.757709, 0.045973, 0.057269;;, - 1;4; 0.648161, 0.757936, 0.045920, 0.057331;;, - 2;4; 0.647294, 0.758622, 0.045761, 0.057521;;, - 3;4; 0.645844, 0.759770, 0.045495, 0.057837;;, - 4;4; 0.643821, 0.761372, 0.045124, 0.058279;;, - 5;4; 0.641250, 0.763407, 0.044653, 0.058841;;, - 6;4; 0.638175, 0.765842, 0.044088, 0.059513;;, - 7;4; 0.634660, 0.768625, 0.043443, 0.060281;;, - 8;4; 0.630790, 0.771689, 0.042734, 0.061126;;, - 9;4; 0.626671, 0.774950, 0.041978, 0.062026;;, - 10;4; 0.622424, 0.778313, 0.041199, 0.062953;;, - 11;4; 0.618177, 0.781676, 0.040419, 0.063881;;, - 12;4; 0.614058, 0.784937, 0.039664, 0.064781;;, - 13;4; 0.610189, 0.788000, 0.038954, 0.065626;;, - 14;4; 0.606673, 0.790784, 0.038309, 0.066394;;, - 15;4; 0.603598, 0.793218, 0.037745, 0.067066;;, - 16;4; 0.601027, 0.795254, 0.037273, 0.067628;;, - 17;4; 0.599004, 0.796856, 0.036902, 0.068069;;, - 18;4; 0.597555, 0.798003, 0.036636, 0.068386;;, - 19;4; 0.596688, 0.798690, 0.036477, 0.068576;;, - 20;4; 0.596401, 0.798917, 0.036424, 0.068638;;, - 21;4; 0.596760, 0.798627, 0.036471, 0.068580;;, - 22;4; 0.597846, 0.797750, 0.036614, 0.068404;;, - 23;4; 0.599661, 0.796284, 0.036852, 0.068109;;, - 24;4; 0.602194, 0.794238, 0.037184, 0.067698;;, - 25;4; 0.605413, 0.791638, 0.037606, 0.067176;;, - 26;4; 0.609264, 0.788527, 0.038110, 0.066551;;, - 27;4; 0.613666, 0.784972, 0.038687, 0.065837;;, - 28;4; 0.618511, 0.781058, 0.039322, 0.065050;;, - 29;4; 0.623668, 0.776892, 0.039998, 0.064213;;, - 30;4; 0.628987, 0.772597, 0.040695, 0.063350;;, - 31;4; 0.634305, 0.768301, 0.041393, 0.062487;;, - 32;4; 0.639462, 0.764135, 0.042069, 0.061650;;, - 33;4; 0.644308, 0.760222, 0.042704, 0.060864;;, - 34;4; 0.648710, 0.756666, 0.043281, 0.060150;;, - 35;4; 0.652560, 0.753556, 0.043785, 0.059525;;, - 36;4; 0.655780, 0.750956, 0.044207, 0.059002;;, - 37;4; 0.658313, 0.748910, 0.044539, 0.058591;;, - 38;4; 0.660128, 0.747444, 0.044777, 0.058297;;, - 39;4; 0.661214, 0.746567, 0.044920, 0.058121;;, - 40;4; 0.661573, 0.746277, 0.044967, 0.058062;;, - 41;4; 0.661328, 0.746479, 0.044910, 0.058126;;, - 42;4; 0.660587, 0.747091, 0.044737, 0.058317;;, - 43;4; 0.659348, 0.748115, 0.044449, 0.058638;;, - 44;4; 0.657620, 0.749544, 0.044046, 0.059085;;, - 45;4; 0.655424, 0.751359, 0.043535, 0.059653;;, - 46;4; 0.652797, 0.753531, 0.042924, 0.060333;;, - 47;4; 0.649794, 0.756013, 0.042224, 0.061110;;, - 48;4; 0.646488, 0.758746, 0.041455, 0.061966;;, - 49;4; 0.642969, 0.761655, 0.040636, 0.062876;;, - 50;4; 0.639341, 0.764654, 0.039791, 0.063815;;, - 51;4; 0.635713, 0.767653, 0.038946, 0.064754;;, - 52;4; 0.632194, 0.770562, 0.038127, 0.065665;;, - 53;4; 0.628889, 0.773294, 0.037357, 0.066520;;, - 54;4; 0.625885, 0.775777, 0.036658, 0.067297;;, - 55;4; 0.623258, 0.777949, 0.036047, 0.067977;;, - 56;4; 0.621062, 0.779764, 0.035535, 0.068545;;, - 57;4; 0.619334, 0.781193, 0.035133, 0.068993;;, - 58;4; 0.618095, 0.782216, 0.034845, 0.069313;;, - 59;4; 0.617355, 0.782829, 0.034672, 0.069505;;, - 60;4; 0.617110, 0.783031, 0.034615, 0.069568;;, - 61;4; 0.617174, 0.782991, 0.034614, 0.069562;;, - 62;4; 0.617353, 0.782876, 0.034615, 0.069541;;, - 63;4; 0.617631, 0.782698, 0.034624, 0.069502;;, - 64;4; 0.617995, 0.782463, 0.034645, 0.069440;;, - 65;4; 0.618435, 0.782178, 0.034685, 0.069353;;, - 66;4; 0.618940, 0.781848, 0.034749, 0.069236;;, - 67;4; 0.619505, 0.781478, 0.034841, 0.069085;;, - 68;4; 0.620120, 0.781070, 0.034969, 0.068894;;, - 69;4; 0.620781, 0.780629, 0.035139, 0.068658;;, - 70;4; 0.621482, 0.780157, 0.035359, 0.068369;;, - 71;4; 0.622217, 0.779656, 0.035640, 0.068019;;, - 72;4; 0.622979, 0.779130, 0.035993, 0.067597;;, - 73;4; 0.623764, 0.778580, 0.036434, 0.067088;;, - 74;4; 0.624563, 0.778009, 0.036984, 0.066473;;, - 75;4; 0.625368, 0.777419, 0.037673, 0.065726;;, - 76;4; 0.626168, 0.776813, 0.038544, 0.064805;;, - 77;4; 0.626943, 0.776195, 0.039669, 0.063644;;, - 78;4; 0.627662, 0.775573, 0.041178, 0.062123;;, - 79;4; 0.628249, 0.774961, 0.043370, 0.059964;;, - 80;4; 0.628391, 0.774424, 0.047456, 0.056046;;, - 81;4; 0.000990, 0.997299, 0.072151, 0.013690;;, - 82;4;-0.011967, 0.997270, 0.071970, 0.015145;;, - 83;4;-0.018796, 0.997206, 0.071870, 0.016486;;, - 84;4;-0.023483, 0.997134, 0.071799, 0.017763;;, - 85;4;-0.026976, 0.997057, 0.071745, 0.018986;;, - 86;4;-0.029682, 0.996980, 0.071701, 0.020158;;, - 87;4;-0.031824, 0.996902, 0.071665, 0.021280;;, - 88;4;-0.033538, 0.996826, 0.071634, 0.022353;;, - 89;4;-0.034915, 0.996751, 0.071609, 0.023375;;, - 90;4;-0.036019, 0.996679, 0.071588, 0.024345;;, - 91;4;-0.036900, 0.996610, 0.071570, 0.025261;;, - 92;4;-0.037594, 0.996544, 0.071555, 0.026120;;, - 93;4;-0.038132, 0.996482, 0.071542, 0.026918;;, - 94;4;-0.038539, 0.996425, 0.071531, 0.027653;;, - 95;4;-0.038836, 0.996372, 0.071523, 0.028317;;, - 96;4;-0.039042, 0.996325, 0.071516, 0.028907;;, - 97;4;-0.039174, 0.996284, 0.071511, 0.029414;;, - 98;4;-0.039248, 0.996250, 0.071507, 0.029831;;, - 99;4;-0.039280, 0.996225, 0.071504, 0.030146;;, - 100;4;-0.039287, 0.996208, 0.071503, 0.030348;;, - 101;4;-0.039284, 0.996202, 0.071502, 0.030419;;, - 102;4;-0.039062, 0.996208, 0.071506, 0.030327;;, - 103;4;-0.038392, 0.996227, 0.071517, 0.030048;;, - 104;4;-0.037270, 0.996257, 0.071535, 0.029583;;, - 105;4;-0.035704, 0.996300, 0.071560, 0.028932;;, - 106;4;-0.033715, 0.996354, 0.071592, 0.028106;;, - 107;4;-0.031335, 0.996419, 0.071630, 0.027118;;, - 108;4;-0.028615, 0.996493, 0.071674, 0.025988;;, - 109;4;-0.025621, 0.996574, 0.071723, 0.024744;;, - 110;4;-0.022434, 0.996661, 0.071774, 0.023420;;, - 111;4;-0.019147, 0.996751, 0.071827, 0.022055;;, - 112;4;-0.015860, 0.996840, 0.071880, 0.020690;;, - 113;4;-0.012673, 0.996927, 0.071931, 0.019366;;, - 114;4;-0.009679, 0.997009, 0.071979, 0.018122;;, - 115;4;-0.006959, 0.997083, 0.072023, 0.016992;;, - 116;4;-0.004579, 0.997148, 0.072062, 0.016004;;, - 117;4;-0.002590, 0.997202, 0.072094, 0.015177;;, - 118;4;-0.001024, 0.997244, 0.072119, 0.014527;;, - 119;4; 0.000098, 0.997275, 0.072137, 0.014061;;, - 120;4; 0.000769, 0.997293, 0.072148, 0.013782;;, - 121;4; 0.000990, 0.997299, 0.072151, 0.013690;;, - 122;4; 0.000769, 0.997293, 0.072148, 0.013782;;, - 123;4; 0.000098, 0.997275, 0.072137, 0.014061;;, - 124;4;-0.001024, 0.997244, 0.072119, 0.014527;;, - 125;4;-0.002590, 0.997202, 0.072094, 0.015177;;, - 126;4;-0.004579, 0.997148, 0.072062, 0.016004;;, - 127;4;-0.006959, 0.997083, 0.072023, 0.016992;;, - 128;4;-0.009679, 0.997009, 0.071979, 0.018122;;, - 129;4;-0.012673, 0.996927, 0.071931, 0.019366;;, - 130;4;-0.015860, 0.996840, 0.071880, 0.020690;;, - 131;4;-0.019147, 0.996751, 0.071827, 0.022055;;, - 132;4;-0.022434, 0.996661, 0.071774, 0.023420;;, - 133;4;-0.025621, 0.996574, 0.071723, 0.024744;;, - 134;4;-0.028615, 0.996493, 0.071674, 0.025988;;, - 135;4;-0.031335, 0.996419, 0.071630, 0.027118;;, - 136;4;-0.033715, 0.996354, 0.071592, 0.028106;;, - 137;4;-0.035704, 0.996300, 0.071560, 0.028932;;, - 138;4;-0.037270, 0.996257, 0.071535, 0.029583;;, - 139;4;-0.038392, 0.996227, 0.071517, 0.030048;;, - 140;4;-0.039062, 0.996208, 0.071506, 0.030327;;, - 141;4;-0.039284, 0.996202, 0.071502, 0.030419;;, - 142;4;-0.039115, 0.996208, 0.071505, 0.030336;;, - 143;4;-0.038639, 0.996224, 0.071513, 0.030100;;, - 144;4;-0.037892, 0.996249, 0.071526, 0.029733;;, - 145;4;-0.036906, 0.996282, 0.071542, 0.029250;;, - 146;4;-0.035703, 0.996322, 0.071562, 0.028665;;, - 147;4;-0.034305, 0.996368, 0.071585, 0.027989;;, - 148;4;-0.032728, 0.996419, 0.071611, 0.027232;;, - 149;4;-0.030984, 0.996475, 0.071640, 0.026401;;, - 150;4;-0.029084, 0.996536, 0.071671, 0.025504;;, - 151;4;-0.027040, 0.996601, 0.071705, 0.024547;;, - 152;4;-0.024856, 0.996669, 0.071741, 0.023537;;, - 153;4;-0.022540, 0.996740, 0.071779, 0.022479;;, - 154;4;-0.020096, 0.996813, 0.071819, 0.021379;;, - 155;4;-0.017525, 0.996888, 0.071861, 0.020245;;, - 156;4;-0.014829, 0.996965, 0.071905, 0.019082;;, - 157;4;-0.012005, 0.997043, 0.071950, 0.017902;;, - 158;4;-0.009047, 0.997120, 0.071997, 0.016718;;, - 159;4;-0.005937, 0.997194, 0.072047, 0.015555;;, - 160;4;-0.002640, 0.997260, 0.072098, 0.014470;;, - 161;4; 0.000990, 0.997299, 0.072151, 0.013690;;, - 162;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 163;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 164;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 165;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 166;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 167;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 168;4; 0.648448, 0.757709, 0.045973, 0.057269;;, - 169;4; 0.649549, 0.757271, 0.047200, 0.056091;;, - 170;4; 0.649725, 0.756946, 0.050660, 0.053001;;, - 171;4; 0.649483, 0.756671, 0.055081, 0.049073;;, - 172;4; 0.649550, 0.756346, 0.058515, 0.045995;;, - 173;4; 0.650401, 0.755911, 0.059724, 0.044837;;, - 174;4; 0.652287, 0.754678, 0.058785, 0.045494;;, - 175;4; 0.655167, 0.752148, 0.056006, 0.047730;;, - 176;4; 0.658293, 0.749160, 0.051993, 0.051173;;, - 177;4; 0.660622, 0.746956, 0.047989, 0.054888;;, - 178;4; 0.661573, 0.746277, 0.044967, 0.058062;;, - 179;4; 0.660467, 0.747385, 0.042436, 0.061362;;, - 180;4; 0.656915, 0.750262, 0.039819, 0.065439;;, - 181;4; 0.652243, 0.753921, 0.037593, 0.069365;;, - 182;4; 0.648570, 0.756808, 0.036216, 0.072016;;, - 183;4; 0.647260, 0.757932, 0.035794, 0.072889;;, - 184;4; 0.647163, 0.758022, 0.036704, 0.071517;;, - 185;4; 0.646979, 0.757987, 0.039247, 0.067643;;, - 186;4; 0.646980, 0.757869, 0.042510, 0.062649;;, - 187;4; 0.647442, 0.757754, 0.045057, 0.058724;;, - 188;4; 0.648448, 0.757709, 0.045973, 0.057269;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 2.000000, 6.750000, 0.000000;;, - 1;3; 2.000000, 6.750000, 0.000000;;, - 2;3; 2.000000, 6.750000, 0.000000;;, - 3;3; 2.000000, 6.750000, 0.000000;;, - 4;3; 2.000000, 6.750000, 0.000000;;, - 5;3; 2.000000, 6.750000, 0.000000;;, - 6;3; 2.000000, 6.750000, 0.000000;;, - 7;3; 2.000000, 6.750000,-0.000000;;, - 8;3; 2.000000, 6.750000,-0.000000;;, - 9;3; 2.000000, 6.750000, 0.000000;;, - 10;3; 2.000000, 6.750000,-0.000000;;, - 11;3; 2.000000, 6.750000, 0.000000;;, - 12;3; 2.000000, 6.750000, 0.000000;;, - 13;3; 2.000000, 6.750000, 0.000000;;, - 14;3; 2.000000, 6.750000,-0.000000;;, - 15;3; 2.000000, 6.750000,-0.000000;;, - 16;3; 2.000000, 6.750000, 0.000000;;, - 17;3; 2.000000, 6.750001,-0.000000;;, - 18;3; 2.000000, 6.750000, 0.000000;;, - 19;3; 2.000000, 6.750000, 0.000000;;, - 20;3; 2.000000, 6.750000, 0.000000;;, - 21;3; 2.000000, 6.750000, 0.000000;;, - 22;3; 2.000000, 6.750000, 0.000000;;, - 23;3; 2.000000, 6.750001,-0.000000;;, - 24;3; 2.000000, 6.750000, 0.000000;;, - 25;3; 2.000000, 6.750000, 0.000000;;, - 26;3; 2.000000, 6.750000,-0.000000;;, - 27;3; 2.000000, 6.750000, 0.000000;;, - 28;3; 2.000000, 6.750000, 0.000000;;, - 29;3; 2.000000, 6.750000, 0.000000;;, - 30;3; 2.000000, 6.750000, 0.000000;;, - 31;3; 2.000000, 6.750000, 0.000000;;, - 32;3; 2.000000, 6.750000,-0.000000;;, - 33;3; 2.000000, 6.750000,-0.000000;;, - 34;3; 2.000000, 6.750000, 0.000000;;, - 35;3; 2.000000, 6.750000, 0.000000;;, - 36;3; 2.000000, 6.750000,-0.000000;;, - 37;3; 2.000000, 6.750000, 0.000000;;, - 38;3; 2.000000, 6.750000, 0.000000;;, - 39;3; 2.000000, 6.750000, 0.000000;;, - 40;3; 2.000000, 6.750000, 0.000000;;, - 41;3; 2.000000, 6.750000, 0.000000;;, - 42;3; 2.000000, 6.750000, 0.000000;;, - 43;3; 2.000000, 6.750000, 0.000000;;, - 44;3; 2.000000, 6.750000, 0.000000;;, - 45;3; 2.000000, 6.750000, 0.000000;;, - 46;3; 2.000000, 6.750000,-0.000000;;, - 47;3; 2.000000, 6.750000, 0.000000;;, - 48;3; 2.000000, 6.750000, 0.000000;;, - 49;3; 2.000000, 6.750000, 0.000000;;, - 50;3; 2.000000, 6.750000,-0.000000;;, - 51;3; 2.000000, 6.750000, 0.000000;;, - 52;3; 2.000000, 6.750000, 0.000000;;, - 53;3; 2.000000, 6.750000, 0.000000;;, - 54;3; 2.000000, 6.750000, 0.000000;;, - 55;3; 2.000000, 6.750000,-0.000000;;, - 56;3; 2.000000, 6.750000, 0.000000;;, - 57;3; 2.000000, 6.750001,-0.000000;;, - 58;3; 2.000000, 6.750000, 0.000000;;, - 59;3; 2.000000, 6.750000, 0.000000;;, - 60;3; 2.000000, 6.750000, 0.000000;;, - 61;3; 2.000000, 6.750000, 0.000000;;, - 62;3; 2.000000, 6.750000, 0.000000;;, - 63;3; 2.000000, 6.750000,-0.000000;;, - 64;3; 2.000000, 6.750000, 0.000000;;, - 65;3; 2.000000, 6.750000, 0.000000;;, - 66;3; 2.000000, 6.750000, 0.000000;;, - 67;3; 2.000000, 6.750000, 0.000000;;, - 68;3; 2.000000, 6.750000, 0.000000;;, - 69;3; 2.000000, 6.750000,-0.000000;;, - 70;3; 2.000000, 6.750000,-0.000000;;, - 71;3; 2.000000, 6.750000,-0.000000;;, - 72;3; 2.000000, 6.750000,-0.000000;;, - 73;3; 2.000000, 6.749999, 0.000000;;, - 74;3; 2.000000, 6.750000, 0.000000;;, - 75;3; 2.000000, 6.750000, 0.000000;;, - 76;3; 2.000000, 6.750000,-0.000000;;, - 77;3; 2.000000, 6.750000, 0.000000;;, - 78;3; 2.000000, 6.750000,-0.000000;;, - 79;3; 2.000000, 6.750000, 0.000000;;, - 80;3; 2.000000, 6.750000, 0.000000;;, - 81;3; 2.000000, 6.750000,-0.000000;;, - 82;3; 2.000000, 6.750000, 0.000000;;, - 83;3; 2.000000, 6.750000,-0.000000;;, - 84;3; 2.000000, 6.750000, 0.000000;;, - 85;3; 2.000000, 6.750000,-0.000000;;, - 86;3; 2.000000, 6.750000, 0.000000;;, - 87;3; 2.000000, 6.750000,-0.000000;;, - 88;3; 2.000000, 6.750000, 0.000000;;, - 89;3; 2.000000, 6.750000,-0.000000;;, - 90;3; 2.000000, 6.750000,-0.000000;;, - 91;3; 2.000000, 6.750000, 0.000000;;, - 92;3; 2.000000, 6.750000,-0.000000;;, - 93;3; 2.000000, 6.750000,-0.000000;;, - 94;3; 2.000000, 6.750000,-0.000000;;, - 95;3; 2.000000, 6.750000, 0.000000;;, - 96;3; 2.000000, 6.750000,-0.000000;;, - 97;3; 2.000000, 6.750000, 0.000000;;, - 98;3; 2.000000, 6.750000, 0.000000;;, - 99;3; 2.000000, 6.750000,-0.000000;;, - 100;3; 2.000000, 6.750000, 0.000000;;, - 101;3; 2.000000, 6.750000, 0.000000;;, - 102;3; 2.000000, 6.750000,-0.000000;;, - 103;3; 2.000000, 6.750000, 0.000000;;, - 104;3; 2.000000, 6.750000, 0.000000;;, - 105;3; 2.000000, 6.750000, 0.000000;;, - 106;3; 2.000000, 6.750000, 0.000000;;, - 107;3; 2.000000, 6.750000,-0.000000;;, - 108;3; 2.000000, 6.750000, 0.000000;;, - 109;3; 2.000000, 6.750000, 0.000000;;, - 110;3; 2.000000, 6.750000,-0.000000;;, - 111;3; 2.000000, 6.750000,-0.000000;;, - 112;3; 2.000000, 6.750000,-0.000000;;, - 113;3; 2.000000, 6.750000,-0.000000;;, - 114;3; 2.000000, 6.750000, 0.000000;;, - 115;3; 2.000000, 6.750000, 0.000000;;, - 116;3; 2.000000, 6.750000, 0.000000;;, - 117;3; 2.000000, 6.750000,-0.000000;;, - 118;3; 2.000000, 6.750000,-0.000000;;, - 119;3; 2.000000, 6.750000,-0.000000;;, - 120;3; 2.000000, 6.750000, 0.000000;;, - 121;3; 2.000000, 6.750000,-0.000000;;, - 122;3; 2.000000, 6.750000,-0.000000;;, - 123;3; 2.000000, 6.750000,-0.000000;;, - 124;3; 2.000000, 6.750000, 0.000000;;, - 125;3; 2.000000, 6.750000,-0.000000;;, - 126;3; 2.000000, 6.750000, 0.000000;;, - 127;3; 2.000000, 6.750000,-0.000000;;, - 128;3; 2.000000, 6.750000, 0.000000;;, - 129;3; 2.000000, 6.750000,-0.000000;;, - 130;3; 2.000000, 6.750000,-0.000000;;, - 131;3; 2.000000, 6.750000,-0.000000;;, - 132;3; 2.000000, 6.750000,-0.000000;;, - 133;3; 2.000000, 6.750000, 0.000000;;, - 134;3; 2.000000, 6.750000,-0.000000;;, - 135;3; 2.000000, 6.750000, 0.000000;;, - 136;3; 2.000000, 6.750000, 0.000000;;, - 137;3; 2.000000, 6.750000, 0.000000;;, - 138;3; 2.000000, 6.750000, 0.000000;;, - 139;3; 2.000000, 6.750000,-0.000000;;, - 140;3; 2.000000, 6.750000,-0.000000;;, - 141;3; 2.000000, 6.750000, 0.000000;;, - 142;3; 2.000000, 6.750000, 0.000000;;, - 143;3; 2.000000, 6.750000,-0.000000;;, - 144;3; 2.000000, 6.750000, 0.000000;;, - 145;3; 2.000000, 6.750000, 0.000000;;, - 146;3; 2.000000, 6.750000, 0.000000;;, - 147;3; 2.000000, 6.750000,-0.000000;;, - 148;3; 2.000000, 6.750000, 0.000000;;, - 149;3; 2.000000, 6.750000, 0.000000;;, - 150;3; 2.000000, 6.750000,-0.000000;;, - 151;3; 2.000000, 6.750000,-0.000000;;, - 152;3; 2.000000, 6.750000,-0.000000;;, - 153;3; 2.000000, 6.750000,-0.000000;;, - 154;3; 2.000000, 6.750000,-0.000000;;, - 155;3; 2.000000, 6.750000,-0.000000;;, - 156;3; 2.000000, 6.750000,-0.000000;;, - 157;3; 2.000000, 6.750000, 0.000000;;, - 158;3; 2.000000, 6.750000, 0.000000;;, - 159;3; 2.000000, 6.750000,-0.000000;;, - 160;3; 2.000000, 6.750000, 0.000000;;, - 161;3; 2.000000, 6.750000,-0.000000;;, - 162;3; 2.000000, 6.750000, 0.000000;;, - 163;3; 2.000000, 6.750000, 0.000000;;, - 164;3; 2.000000, 6.750000, 0.000000;;, - 165;3; 2.000000, 6.750000, 0.000000;;, - 166;3; 2.000000, 6.750000, 0.000000;;, - 167;3; 2.000000, 6.750000, 0.000000;;, - 168;3; 2.000000, 6.750000, 0.000000;;, - 169;3; 2.000000, 6.750000, 0.000000;;, - 170;3; 2.000000, 6.750000, 0.000000;;, - 171;3; 2.000000, 6.750000, 0.000000;;, - 172;3; 2.000000, 6.750000, 0.000000;;, - 173;3; 2.000000, 6.750000, 0.000000;;, - 174;3; 2.000000, 6.750000, 0.000000;;, - 175;3; 2.000000, 6.750000, 0.000000;;, - 176;3; 2.000000, 6.750000, 0.000000;;, - 177;3; 2.000000, 6.750000, 0.000000;;, - 178;3; 2.000000, 6.750000, 0.000000;;, - 179;3; 2.000000, 6.750000, 0.000000;;, - 180;3; 2.000000, 6.750000, 0.000000;;, - 181;3; 2.000000, 6.750000, 0.000000;;, - 182;3; 2.000000, 6.750000, 0.000000;;, - 183;3; 2.000000, 6.750000, 0.000000;;, - 184;3; 2.000000, 6.750000, 0.000000;;, - 185;3; 2.000000, 6.750000, 0.000000;;, - 186;3; 2.000000, 6.750000, 0.000000;;, - 187;3; 2.000000, 6.750000, 0.000000;;, - 188;3; 2.000000, 6.750000, 0.000000;;; - } - } - Animation { - {Armature_Leg_Right} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 15;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 25;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 40;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 55;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, - 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, - 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, - 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, - 65;4;-0.043249, 0.999151,-0.000000,-0.000000;;, - 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, - 67;4;-0.042626, 0.999235,-0.000000,-0.000000;;, - 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, - 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, - 70;4;-0.040725, 0.999391,-0.000000,-0.000000;;, - 71;4;-0.039732, 0.999450,-0.000000,-0.000000;;, - 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, - 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, - 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, - 75;4;-0.032769, 0.999707,-0.000000,-0.000000;;, - 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, - 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, - 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, - 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, - 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, - 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, - 85;4; 0.699534, 0.714271, 0.000000,-0.000000;;, - 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, - 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, - 88;4; 0.692952, 0.720584, 0.000000,-0.000000;;, - 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, - 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, - 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, - 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 98;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 100;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 105;4; 0.678392, 0.734595, 0.000000,-0.000000;;, - 106;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 108;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 111;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 113;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 129;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 131;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 134;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 136;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 142;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 144;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, - 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 150;4; 0.685070, 0.728162, 0.000000,-0.000000;;, - 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, - 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, - 154;4; 0.692952, 0.720583, 0.000000,-0.000000;;, - 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, - 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, - 157;4; 0.699534, 0.714270, 0.000000,-0.000000;;, - 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, - 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, - 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, - 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 162;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 163;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 164;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 165;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 166;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 167;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 168;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 169;4; 0.034052, 0.993234, 0.000000,-0.000000;;, - 170;4; 0.129904, 0.974175, 0.000000,-0.000000;;, - 171;4; 0.252901, 0.949704, 0.000000,-0.000000;;, - 172;4; 0.348675, 0.930646, 0.000000,-0.000000;;, - 173;4; 0.382684, 0.923880, 0.000000,-0.000000;;, - 174;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 175;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 176;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 177;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 178;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 179;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 180;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 181;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 182;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 183;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 184;4;-0.348675, 0.930646,-0.000000,-0.000000;;, - 185;4;-0.252901, 0.949704,-0.000000,-0.000000;;, - 186;4;-0.129903, 0.974175,-0.000000,-0.000000;;, - 187;4;-0.034052, 0.993234,-0.000000,-0.000000;;, - 188;4; 0.000000, 1.000000,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 0.999999;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 0.999999;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 0.999999;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 1.000000, 0.000000,-0.000001;;, - 1;3; 1.000000,-0.000000,-0.000001;;, - 2;3; 1.000000,-0.000000,-0.000001;;, - 3;3; 1.000000,-0.000000,-0.000001;;, - 4;3; 1.000000,-0.000000,-0.000001;;, - 5;3; 1.000000,-0.000000,-0.000001;;, - 6;3; 1.000000,-0.000000,-0.000001;;, - 7;3; 1.000000,-0.000000,-0.000001;;, - 8;3; 1.000000,-0.000000,-0.000001;;, - 9;3; 1.000000,-0.000000,-0.000001;;, - 10;3; 1.000000,-0.000000,-0.000000;;, - 11;3; 1.000000,-0.000000,-0.000000;;, - 12;3; 1.000000,-0.000000,-0.000000;;, - 13;3; 1.000000,-0.000000,-0.000000;;, - 14;3; 1.000000,-0.000000,-0.000000;;, - 15;3; 1.000000,-0.000000,-0.000001;;, - 16;3; 1.000000,-0.000000,-0.000001;;, - 17;3; 1.000000,-0.000000,-0.000001;;, - 18;3; 1.000000,-0.000000,-0.000001;;, - 19;3; 1.000000,-0.000000,-0.000001;;, - 20;3; 1.000000,-0.000000,-0.000001;;, - 21;3; 1.000000,-0.000000,-0.000001;;, - 22;3; 1.000000,-0.000000,-0.000000;;, - 23;3; 1.000000,-0.000000,-0.000001;;, - 24;3; 1.000000,-0.000000,-0.000001;;, - 25;3; 1.000000,-0.000000,-0.000001;;, - 26;3; 1.000000,-0.000000,-0.000000;;, - 27;3; 1.000000,-0.000000,-0.000000;;, - 28;3; 1.000000,-0.000000,-0.000000;;, - 29;3; 1.000000,-0.000000,-0.000000;;, - 30;3; 1.000000,-0.000000,-0.000000;;, - 31;3; 1.000000,-0.000000,-0.000001;;, - 32;3; 1.000000,-0.000000,-0.000001;;, - 33;3; 1.000000,-0.000000,-0.000001;;, - 34;3; 1.000000,-0.000000,-0.000001;;, - 35;3; 1.000000,-0.000000,-0.000001;;, - 36;3; 1.000000,-0.000000,-0.000001;;, - 37;3; 1.000000,-0.000000,-0.000001;;, - 38;3; 1.000000,-0.000000,-0.000001;;, - 39;3; 1.000000,-0.000000,-0.000001;;, - 40;3; 1.000000, 0.000000,-0.000001;;, - 41;3; 1.000000,-0.000000,-0.000001;;, - 42;3; 1.000000,-0.000000,-0.000001;;, - 43;3; 1.000000,-0.000000,-0.000001;;, - 44;3; 1.000000,-0.000000,-0.000001;;, - 45;3; 1.000000,-0.000000,-0.000001;;, - 46;3; 1.000000,-0.000000,-0.000001;;, - 47;3; 1.000000,-0.000000,-0.000001;;, - 48;3; 1.000000,-0.000000,-0.000001;;, - 49;3; 1.000000,-0.000000,-0.000001;;, - 50;3; 1.000000,-0.000000,-0.000000;;, - 51;3; 1.000000,-0.000000,-0.000000;;, - 52;3; 1.000000,-0.000000,-0.000000;;, - 53;3; 1.000000,-0.000000,-0.000000;;, - 54;3; 1.000000,-0.000000,-0.000000;;, - 55;3; 1.000000,-0.000000,-0.000001;;, - 56;3; 1.000000,-0.000000,-0.000001;;, - 57;3; 1.000000,-0.000000,-0.000001;;, - 58;3; 1.000000,-0.000000,-0.000001;;, - 59;3; 1.000000,-0.000000,-0.000001;;, - 60;3; 1.000000,-0.000000,-0.000001;;, - 61;3; 1.000000,-0.000000,-0.000001;;, - 62;3; 1.000000,-0.000000,-0.000001;;, - 63;3; 1.000000,-0.000000,-0.000001;;, - 64;3; 1.000000,-0.000000,-0.000001;;, - 65;3; 1.000000,-0.000000,-0.000001;;, - 66;3; 1.000000,-0.000000,-0.000001;;, - 67;3; 1.000000,-0.000000,-0.000000;;, - 68;3; 1.000000,-0.000000,-0.000000;;, - 69;3; 1.000000,-0.000000,-0.000000;;, - 70;3; 1.000000,-0.000000,-0.000000;;, - 71;3; 1.000000,-0.000000,-0.000000;;, - 72;3; 1.000000,-0.000000,-0.000000;;, - 73;3; 1.000000,-0.000000,-0.000000;;, - 74;3; 1.000000,-0.000000,-0.000001;;, - 75;3; 1.000000,-0.000000,-0.000001;;, - 76;3; 1.000000,-0.000000,-0.000001;;, - 77;3; 1.000000,-0.000000,-0.000001;;, - 78;3; 1.000000,-0.000000,-0.000001;;, - 79;3; 1.000000,-0.000000,-0.000001;;, - 80;3; 1.000000, 0.000000,-0.000001;;, - 81;3; 1.000000, 0.000000,-0.000001;;, - 82;3; 1.000000,-0.000000,-0.000001;;, - 83;3; 1.000000,-0.000000,-0.000001;;, - 84;3; 1.000000,-0.000000,-0.000001;;, - 85;3; 1.000000,-0.000000,-0.000001;;, - 86;3; 1.000000,-0.000000,-0.000001;;, - 87;3; 1.000000,-0.000000,-0.000001;;, - 88;3; 1.000000,-0.000000,-0.000001;;, - 89;3; 1.000000,-0.000000,-0.000001;;, - 90;3; 1.000000,-0.000000,-0.000001;;, - 91;3; 1.000000,-0.000000,-0.000001;;, - 92;3; 1.000000,-0.000000,-0.000001;;, - 93;3; 1.000000,-0.000000,-0.000001;;, - 94;3; 1.000000,-0.000000,-0.000001;;, - 95;3; 1.000000,-0.000000,-0.000001;;, - 96;3; 1.000000,-0.000000,-0.000001;;, - 97;3; 1.000000,-0.000000,-0.000001;;, - 98;3; 1.000000,-0.000000,-0.000001;;, - 99;3; 1.000000,-0.000000,-0.000001;;, - 100;3; 1.000000,-0.000000,-0.000001;;, - 101;3; 1.000000,-0.000000,-0.000001;;, - 102;3; 1.000000,-0.000000,-0.000001;;, - 103;3; 1.000000,-0.000000,-0.000001;;, - 104;3; 1.000000,-0.000000,-0.000001;;, - 105;3; 1.000000,-0.000000,-0.000001;;, - 106;3; 1.000000,-0.000000,-0.000001;;, - 107;3; 1.000000,-0.000000,-0.000001;;, - 108;3; 1.000000,-0.000000,-0.000001;;, - 109;3; 1.000000,-0.000000,-0.000001;;, - 110;3; 1.000000,-0.000000,-0.000001;;, - 111;3; 1.000000,-0.000000,-0.000001;;, - 112;3; 1.000000,-0.000000,-0.000001;;, - 113;3; 1.000000,-0.000000,-0.000001;;, - 114;3; 1.000000,-0.000000,-0.000001;;, - 115;3; 1.000000,-0.000000,-0.000001;;, - 116;3; 1.000000,-0.000000,-0.000001;;, - 117;3; 1.000000,-0.000000,-0.000001;;, - 118;3; 1.000000,-0.000000,-0.000001;;, - 119;3; 1.000000,-0.000000,-0.000001;;, - 120;3; 1.000000,-0.000000,-0.000001;;, - 121;3; 1.000000, 0.000000,-0.000001;;, - 122;3; 1.000000,-0.000000,-0.000001;;, - 123;3; 1.000000,-0.000000,-0.000001;;, - 124;3; 1.000000,-0.000000,-0.000001;;, - 125;3; 1.000000,-0.000000,-0.000001;;, - 126;3; 1.000000,-0.000000,-0.000001;;, - 127;3; 1.000000,-0.000000,-0.000001;;, - 128;3; 1.000000,-0.000000,-0.000001;;, - 129;3; 1.000000,-0.000000,-0.000001;;, - 130;3; 1.000000,-0.000000,-0.000001;;, - 131;3; 1.000000,-0.000000,-0.000001;;, - 132;3; 1.000000,-0.000000,-0.000001;;, - 133;3; 1.000000,-0.000000,-0.000001;;, - 134;3; 1.000000,-0.000000,-0.000001;;, - 135;3; 1.000000,-0.000000,-0.000001;;, - 136;3; 1.000000,-0.000000,-0.000001;;, - 137;3; 1.000000,-0.000000,-0.000001;;, - 138;3; 1.000000,-0.000000,-0.000001;;, - 139;3; 1.000000,-0.000000,-0.000001;;, - 140;3; 1.000000,-0.000000,-0.000001;;, - 141;3; 1.000000,-0.000000,-0.000001;;, - 142;3; 1.000000,-0.000000,-0.000001;;, - 143;3; 1.000000,-0.000000,-0.000001;;, - 144;3; 1.000000,-0.000000,-0.000001;;, - 145;3; 1.000000,-0.000000,-0.000001;;, - 146;3; 1.000000,-0.000000,-0.000001;;, - 147;3; 1.000000,-0.000000,-0.000001;;, - 148;3; 1.000000,-0.000000,-0.000001;;, - 149;3; 1.000000,-0.000000,-0.000001;;, - 150;3; 1.000000,-0.000000,-0.000001;;, - 151;3; 1.000000,-0.000000,-0.000001;;, - 152;3; 1.000000,-0.000000,-0.000001;;, - 153;3; 1.000000,-0.000000,-0.000001;;, - 154;3; 1.000000,-0.000000,-0.000001;;, - 155;3; 1.000000,-0.000000,-0.000001;;, - 156;3; 1.000000,-0.000000,-0.000001;;, - 157;3; 1.000000,-0.000000,-0.000001;;, - 158;3; 1.000000,-0.000000,-0.000001;;, - 159;3; 1.000000,-0.000000,-0.000001;;, - 160;3; 1.000000,-0.000000,-0.000001;;, - 161;3; 1.000000, 0.000000,-0.000001;;, - 162;3; 1.000000,-0.000000,-0.000000;;, - 163;3; 1.000000,-0.000000,-0.000000;;, - 164;3; 1.000000,-0.000000,-0.000000;;, - 165;3; 1.000000,-0.000000,-0.000000;;, - 166;3; 1.000000,-0.000000,-0.000000;;, - 167;3; 1.000000,-0.000000,-0.000000;;, - 168;3; 1.000000, 0.000000,-0.000001;;, - 169;3; 1.000000, 0.000000,-0.000001;;, - 170;3; 1.000000, 0.000000,-0.000001;;, - 171;3; 1.000000, 0.000000,-0.000001;;, - 172;3; 1.000000, 0.000000,-0.000001;;, - 173;3; 1.000000, 0.000000,-0.000001;;, - 174;3; 1.000000, 0.000000,-0.000001;;, - 175;3; 1.000000, 0.000000,-0.000001;;, - 176;3; 1.000000, 0.000000,-0.000001;;, - 177;3; 1.000000, 0.000000,-0.000001;;, - 178;3; 1.000000, 0.000000,-0.000001;;, - 179;3; 1.000000, 0.000000,-0.000001;;, - 180;3; 1.000000, 0.000000,-0.000001;;, - 181;3; 1.000000, 0.000000,-0.000001;;, - 182;3; 1.000000, 0.000000,-0.000001;;, - 183;3; 1.000000, 0.000000,-0.000001;;, - 184;3; 1.000000, 0.000000,-0.000001;;, - 185;3; 1.000000, 0.000000,-0.000001;;, - 186;3; 1.000000, 0.000000,-0.000001;;, - 187;3; 1.000000, 0.000000,-0.000001;;, - 188;3; 1.000000, 0.000000,-0.000001;;; - } - } - Animation { - {Armature_Leg_Left} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 15;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 25;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 40;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 55;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, - 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, - 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, - 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, - 65;4;-0.043249, 0.999151,-0.000000,-0.000000;;, - 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, - 67;4;-0.042626, 0.999235,-0.000000,-0.000000;;, - 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, - 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, - 70;4;-0.040725, 0.999391,-0.000000,-0.000000;;, - 71;4;-0.039732, 0.999450,-0.000000,-0.000000;;, - 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, - 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, - 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, - 75;4;-0.032769, 0.999707,-0.000000,-0.000000;;, - 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, - 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, - 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, - 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, - 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, - 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, - 85;4; 0.699534, 0.714271, 0.000000,-0.000000;;, - 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, - 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, - 88;4; 0.692952, 0.720584, 0.000000,-0.000000;;, - 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, - 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, - 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, - 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 98;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 100;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 105;4; 0.678392, 0.734595, 0.000000,-0.000000;;, - 106;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 108;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 111;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 113;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 129;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 131;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 134;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 136;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 142;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 144;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, - 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 150;4; 0.685070, 0.728162, 0.000000,-0.000000;;, - 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, - 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, - 154;4; 0.692952, 0.720583, 0.000000,-0.000000;;, - 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, - 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, - 157;4; 0.699534, 0.714270, 0.000000,-0.000000;;, - 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, - 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, - 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, - 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 162;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 163;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 164;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 165;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 166;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 167;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 168;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 169;4;-0.034052, 0.993234,-0.000000,-0.000000;;, - 170;4;-0.129903, 0.974175,-0.000000,-0.000000;;, - 171;4;-0.252901, 0.949704,-0.000000,-0.000000;;, - 172;4;-0.348675, 0.930646,-0.000000,-0.000000;;, - 173;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 174;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 175;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 176;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 177;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 178;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 179;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 180;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 181;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 182;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 183;4; 0.382684, 0.923880, 0.000000,-0.000000;;, - 184;4; 0.348675, 0.930646, 0.000000,-0.000000;;, - 185;4; 0.252901, 0.949704, 0.000000,-0.000000;;, - 186;4; 0.129904, 0.974175, 0.000000,-0.000000;;, - 187;4; 0.034052, 0.993234, 0.000000,-0.000000;;, - 188;4; 0.000000, 1.000000,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 0.999999;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 0.999999;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 0.999999;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-1.000000, 0.000000,-0.000001;;, - 1;3;-1.000000,-0.000000,-0.000001;;, - 2;3;-1.000000,-0.000000,-0.000001;;, - 3;3;-1.000000,-0.000000,-0.000001;;, - 4;3;-1.000000,-0.000000,-0.000001;;, - 5;3;-1.000000,-0.000000,-0.000001;;, - 6;3;-1.000000,-0.000000,-0.000001;;, - 7;3;-1.000000,-0.000000,-0.000001;;, - 8;3;-1.000000,-0.000000,-0.000001;;, - 9;3;-1.000000,-0.000000,-0.000001;;, - 10;3;-1.000000,-0.000000,-0.000000;;, - 11;3;-1.000000,-0.000000,-0.000000;;, - 12;3;-1.000000,-0.000000,-0.000000;;, - 13;3;-1.000000,-0.000000,-0.000000;;, - 14;3;-1.000000,-0.000000,-0.000000;;, - 15;3;-1.000000,-0.000000,-0.000001;;, - 16;3;-1.000000,-0.000000,-0.000001;;, - 17;3;-1.000000,-0.000000,-0.000001;;, - 18;3;-1.000000,-0.000000,-0.000001;;, - 19;3;-1.000000,-0.000000,-0.000001;;, - 20;3;-1.000000,-0.000000,-0.000001;;, - 21;3;-1.000000,-0.000000,-0.000001;;, - 22;3;-1.000000,-0.000000,-0.000000;;, - 23;3;-1.000000,-0.000000,-0.000001;;, - 24;3;-1.000000,-0.000000,-0.000001;;, - 25;3;-1.000000,-0.000000,-0.000001;;, - 26;3;-1.000000,-0.000000,-0.000000;;, - 27;3;-1.000000,-0.000000,-0.000000;;, - 28;3;-1.000000,-0.000000,-0.000000;;, - 29;3;-1.000000,-0.000000,-0.000000;;, - 30;3;-1.000000,-0.000000,-0.000000;;, - 31;3;-1.000000,-0.000000,-0.000001;;, - 32;3;-1.000000,-0.000000,-0.000001;;, - 33;3;-1.000000,-0.000000,-0.000001;;, - 34;3;-1.000000,-0.000000,-0.000001;;, - 35;3;-1.000000,-0.000000,-0.000001;;, - 36;3;-1.000000,-0.000000,-0.000001;;, - 37;3;-1.000000,-0.000000,-0.000001;;, - 38;3;-1.000000,-0.000000,-0.000001;;, - 39;3;-1.000000,-0.000000,-0.000001;;, - 40;3;-1.000000, 0.000000,-0.000001;;, - 41;3;-1.000000,-0.000000,-0.000001;;, - 42;3;-1.000000,-0.000000,-0.000001;;, - 43;3;-1.000000,-0.000000,-0.000001;;, - 44;3;-1.000000,-0.000000,-0.000001;;, - 45;3;-1.000000,-0.000000,-0.000001;;, - 46;3;-1.000000,-0.000000,-0.000001;;, - 47;3;-1.000000,-0.000000,-0.000001;;, - 48;3;-1.000000,-0.000000,-0.000001;;, - 49;3;-1.000000,-0.000000,-0.000001;;, - 50;3;-1.000000,-0.000000,-0.000000;;, - 51;3;-1.000000,-0.000000,-0.000000;;, - 52;3;-1.000000,-0.000000,-0.000000;;, - 53;3;-1.000000,-0.000000,-0.000000;;, - 54;3;-1.000000,-0.000000,-0.000000;;, - 55;3;-1.000000,-0.000000,-0.000001;;, - 56;3;-1.000000,-0.000000,-0.000001;;, - 57;3;-1.000000,-0.000000,-0.000001;;, - 58;3;-1.000000,-0.000000,-0.000001;;, - 59;3;-1.000000,-0.000000,-0.000001;;, - 60;3;-1.000000,-0.000000,-0.000001;;, - 61;3;-1.000000,-0.000000,-0.000001;;, - 62;3;-1.000000,-0.000000,-0.000001;;, - 63;3;-1.000000,-0.000000,-0.000001;;, - 64;3;-1.000000,-0.000000,-0.000001;;, - 65;3;-1.000000,-0.000000,-0.000001;;, - 66;3;-1.000000,-0.000000,-0.000001;;, - 67;3;-1.000000,-0.000000,-0.000000;;, - 68;3;-1.000000,-0.000000,-0.000000;;, - 69;3;-1.000000,-0.000000,-0.000000;;, - 70;3;-1.000000,-0.000000,-0.000000;;, - 71;3;-1.000000,-0.000000,-0.000000;;, - 72;3;-1.000000,-0.000000,-0.000000;;, - 73;3;-1.000000,-0.000000,-0.000000;;, - 74;3;-1.000000,-0.000000,-0.000001;;, - 75;3;-1.000000,-0.000000,-0.000001;;, - 76;3;-1.000000,-0.000000,-0.000001;;, - 77;3;-1.000000,-0.000000,-0.000001;;, - 78;3;-1.000000,-0.000000,-0.000001;;, - 79;3;-1.000000,-0.000000,-0.000001;;, - 80;3;-1.000000, 0.000000,-0.000001;;, - 81;3;-1.000000, 0.000000,-0.000001;;, - 82;3;-1.000000,-0.000000,-0.000001;;, - 83;3;-1.000000,-0.000000,-0.000001;;, - 84;3;-1.000000,-0.000000,-0.000001;;, - 85;3;-1.000000,-0.000000,-0.000001;;, - 86;3;-1.000000,-0.000000,-0.000001;;, - 87;3;-1.000000,-0.000000,-0.000001;;, - 88;3;-1.000000,-0.000000,-0.000001;;, - 89;3;-1.000000,-0.000000,-0.000001;;, - 90;3;-1.000000,-0.000000,-0.000001;;, - 91;3;-1.000000,-0.000000,-0.000001;;, - 92;3;-1.000000,-0.000000,-0.000001;;, - 93;3;-1.000000,-0.000000,-0.000001;;, - 94;3;-1.000000,-0.000000,-0.000001;;, - 95;3;-1.000000,-0.000000,-0.000001;;, - 96;3;-1.000000,-0.000000,-0.000001;;, - 97;3;-1.000000,-0.000000,-0.000001;;, - 98;3;-1.000000,-0.000000,-0.000001;;, - 99;3;-1.000000,-0.000000,-0.000001;;, - 100;3;-1.000000,-0.000000,-0.000001;;, - 101;3;-1.000000,-0.000000,-0.000001;;, - 102;3;-1.000000,-0.000000,-0.000001;;, - 103;3;-1.000000,-0.000000,-0.000001;;, - 104;3;-1.000000,-0.000000,-0.000001;;, - 105;3;-1.000000,-0.000000,-0.000001;;, - 106;3;-1.000000,-0.000000,-0.000001;;, - 107;3;-1.000000,-0.000000,-0.000001;;, - 108;3;-1.000000,-0.000000,-0.000001;;, - 109;3;-1.000000,-0.000000,-0.000001;;, - 110;3;-1.000000,-0.000000,-0.000001;;, - 111;3;-1.000000,-0.000000,-0.000001;;, - 112;3;-1.000000,-0.000000,-0.000001;;, - 113;3;-1.000000,-0.000000,-0.000001;;, - 114;3;-1.000000,-0.000000,-0.000001;;, - 115;3;-1.000000,-0.000000,-0.000001;;, - 116;3;-1.000000,-0.000000,-0.000001;;, - 117;3;-1.000000,-0.000000,-0.000001;;, - 118;3;-1.000000,-0.000000,-0.000001;;, - 119;3;-1.000000,-0.000000,-0.000001;;, - 120;3;-1.000000,-0.000000,-0.000001;;, - 121;3;-1.000000, 0.000000,-0.000001;;, - 122;3;-1.000000,-0.000000,-0.000001;;, - 123;3;-1.000000,-0.000000,-0.000001;;, - 124;3;-1.000000,-0.000000,-0.000001;;, - 125;3;-1.000000,-0.000000,-0.000001;;, - 126;3;-1.000000,-0.000000,-0.000001;;, - 127;3;-1.000000,-0.000000,-0.000001;;, - 128;3;-1.000000,-0.000000,-0.000001;;, - 129;3;-1.000000,-0.000000,-0.000001;;, - 130;3;-1.000000,-0.000000,-0.000001;;, - 131;3;-1.000000,-0.000000,-0.000001;;, - 132;3;-1.000000,-0.000000,-0.000001;;, - 133;3;-1.000000,-0.000000,-0.000001;;, - 134;3;-1.000000,-0.000000,-0.000001;;, - 135;3;-1.000000,-0.000000,-0.000001;;, - 136;3;-1.000000,-0.000000,-0.000001;;, - 137;3;-1.000000,-0.000000,-0.000001;;, - 138;3;-1.000000,-0.000000,-0.000001;;, - 139;3;-1.000000,-0.000000,-0.000001;;, - 140;3;-1.000000,-0.000000,-0.000001;;, - 141;3;-1.000000,-0.000000,-0.000001;;, - 142;3;-1.000000,-0.000000,-0.000001;;, - 143;3;-1.000000,-0.000000,-0.000001;;, - 144;3;-1.000000,-0.000000,-0.000001;;, - 145;3;-1.000000,-0.000000,-0.000001;;, - 146;3;-1.000000,-0.000000,-0.000001;;, - 147;3;-1.000000,-0.000000,-0.000001;;, - 148;3;-1.000000,-0.000000,-0.000001;;, - 149;3;-1.000000,-0.000000,-0.000001;;, - 150;3;-1.000000,-0.000000,-0.000001;;, - 151;3;-1.000000,-0.000000,-0.000001;;, - 152;3;-1.000000,-0.000000,-0.000001;;, - 153;3;-1.000000,-0.000000,-0.000001;;, - 154;3;-1.000000,-0.000000,-0.000001;;, - 155;3;-1.000000,-0.000000,-0.000001;;, - 156;3;-1.000000,-0.000000,-0.000001;;, - 157;3;-1.000000,-0.000000,-0.000001;;, - 158;3;-1.000000,-0.000000,-0.000001;;, - 159;3;-1.000000,-0.000000,-0.000001;;, - 160;3;-1.000000,-0.000000,-0.000001;;, - 161;3;-1.000000, 0.000000,-0.000001;;, - 162;3;-1.000000,-0.000000,-0.000000;;, - 163;3;-1.000000,-0.000000,-0.000000;;, - 164;3;-1.000000,-0.000000,-0.000000;;, - 165;3;-1.000000,-0.000000,-0.000000;;, - 166;3;-1.000000,-0.000000,-0.000000;;, - 167;3;-1.000000,-0.000000,-0.000000;;, - 168;3;-1.000000, 0.000000,-0.000001;;, - 169;3;-1.000000, 0.000000,-0.000001;;, - 170;3;-1.000000, 0.000000,-0.000001;;, - 171;3;-1.000000, 0.000000,-0.000001;;, - 172;3;-1.000000, 0.000000,-0.000001;;, - 173;3;-1.000000, 0.000000,-0.000001;;, - 174;3;-1.000000, 0.000000,-0.000001;;, - 175;3;-1.000000, 0.000000,-0.000001;;, - 176;3;-1.000000, 0.000000,-0.000001;;, - 177;3;-1.000000, 0.000000,-0.000001;;, - 178;3;-1.000000, 0.000000,-0.000001;;, - 179;3;-1.000000, 0.000000,-0.000001;;, - 180;3;-1.000000, 0.000000,-0.000001;;, - 181;3;-1.000000, 0.000000,-0.000001;;, - 182;3;-1.000000, 0.000000,-0.000001;;, - 183;3;-1.000000, 0.000000,-0.000001;;, - 184;3;-1.000000, 0.000000,-0.000001;;, - 185;3;-1.000000, 0.000000,-0.000001;;, - 186;3;-1.000000, 0.000000,-0.000001;;, - 187;3;-1.000000, 0.000000,-0.000001;;, - 188;3;-1.000000, 0.000000,-0.000001;;; - } - } -} // End of AnimationSet ArmatureAction -AnimationSet Default_Action { - Animation { - {Player} - AnimationKey { // Rotation - 0; - 189; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.000000, 0.000000, 0.000000;;, - 1;3; 0.000000, 0.000000, 0.000000;;, - 2;3; 0.000000, 0.000000, 0.000000;;, - 3;3; 0.000000, 0.000000, 0.000000;;, - 4;3; 0.000000, 0.000000, 0.000000;;, - 5;3; 0.000000, 0.000000, 0.000000;;, - 6;3; 0.000000, 0.000000, 0.000000;;, - 7;3; 0.000000, 0.000000, 0.000000;;, - 8;3; 0.000000, 0.000000, 0.000000;;, - 9;3; 0.000000, 0.000000, 0.000000;;, - 10;3; 0.000000, 0.000000, 0.000000;;, - 11;3; 0.000000, 0.000000, 0.000000;;, - 12;3; 0.000000, 0.000000, 0.000000;;, - 13;3; 0.000000, 0.000000, 0.000000;;, - 14;3; 0.000000, 0.000000, 0.000000;;, - 15;3; 0.000000, 0.000000, 0.000000;;, - 16;3; 0.000000, 0.000000, 0.000000;;, - 17;3; 0.000000, 0.000000, 0.000000;;, - 18;3; 0.000000, 0.000000, 0.000000;;, - 19;3; 0.000000, 0.000000, 0.000000;;, - 20;3; 0.000000, 0.000000, 0.000000;;, - 21;3; 0.000000, 0.000000, 0.000000;;, - 22;3; 0.000000, 0.000000, 0.000000;;, - 23;3; 0.000000, 0.000000, 0.000000;;, - 24;3; 0.000000, 0.000000, 0.000000;;, - 25;3; 0.000000, 0.000000, 0.000000;;, - 26;3; 0.000000, 0.000000, 0.000000;;, - 27;3; 0.000000, 0.000000, 0.000000;;, - 28;3; 0.000000, 0.000000, 0.000000;;, - 29;3; 0.000000, 0.000000, 0.000000;;, - 30;3; 0.000000, 0.000000, 0.000000;;, - 31;3; 0.000000, 0.000000, 0.000000;;, - 32;3; 0.000000, 0.000000, 0.000000;;, - 33;3; 0.000000, 0.000000, 0.000000;;, - 34;3; 0.000000, 0.000000, 0.000000;;, - 35;3; 0.000000, 0.000000, 0.000000;;, - 36;3; 0.000000, 0.000000, 0.000000;;, - 37;3; 0.000000, 0.000000, 0.000000;;, - 38;3; 0.000000, 0.000000, 0.000000;;, - 39;3; 0.000000, 0.000000, 0.000000;;, - 40;3; 0.000000, 0.000000, 0.000000;;, - 41;3; 0.000000, 0.000000, 0.000000;;, - 42;3; 0.000000, 0.000000, 0.000000;;, - 43;3; 0.000000, 0.000000, 0.000000;;, - 44;3; 0.000000, 0.000000, 0.000000;;, - 45;3; 0.000000, 0.000000, 0.000000;;, - 46;3; 0.000000, 0.000000, 0.000000;;, - 47;3; 0.000000, 0.000000, 0.000000;;, - 48;3; 0.000000, 0.000000, 0.000000;;, - 49;3; 0.000000, 0.000000, 0.000000;;, - 50;3; 0.000000, 0.000000, 0.000000;;, - 51;3; 0.000000, 0.000000, 0.000000;;, - 52;3; 0.000000, 0.000000, 0.000000;;, - 53;3; 0.000000, 0.000000, 0.000000;;, - 54;3; 0.000000, 0.000000, 0.000000;;, - 55;3; 0.000000, 0.000000, 0.000000;;, - 56;3; 0.000000, 0.000000, 0.000000;;, - 57;3; 0.000000, 0.000000, 0.000000;;, - 58;3; 0.000000, 0.000000, 0.000000;;, - 59;3; 0.000000, 0.000000, 0.000000;;, - 60;3; 0.000000, 0.000000, 0.000000;;, - 61;3; 0.000000, 0.000000, 0.000000;;, - 62;3; 0.000000, 0.000000, 0.000000;;, - 63;3; 0.000000, 0.000000, 0.000000;;, - 64;3; 0.000000, 0.000000, 0.000000;;, - 65;3; 0.000000, 0.000000, 0.000000;;, - 66;3; 0.000000, 0.000000, 0.000000;;, - 67;3; 0.000000, 0.000000, 0.000000;;, - 68;3; 0.000000, 0.000000, 0.000000;;, - 69;3; 0.000000, 0.000000, 0.000000;;, - 70;3; 0.000000, 0.000000, 0.000000;;, - 71;3; 0.000000, 0.000000, 0.000000;;, - 72;3; 0.000000, 0.000000, 0.000000;;, - 73;3; 0.000000, 0.000000, 0.000000;;, - 74;3; 0.000000, 0.000000, 0.000000;;, - 75;3; 0.000000, 0.000000, 0.000000;;, - 76;3; 0.000000, 0.000000, 0.000000;;, - 77;3; 0.000000, 0.000000, 0.000000;;, - 78;3; 0.000000, 0.000000, 0.000000;;, - 79;3; 0.000000, 0.000000, 0.000000;;, - 80;3; 0.000000, 0.000000, 0.000000;;, - 81;3; 0.000000, 0.000000, 0.000000;;, - 82;3; 0.000000, 0.000000, 0.000000;;, - 83;3; 0.000000, 0.000000, 0.000000;;, - 84;3; 0.000000, 0.000000, 0.000000;;, - 85;3; 0.000000, 0.000000, 0.000000;;, - 86;3; 0.000000, 0.000000, 0.000000;;, - 87;3; 0.000000, 0.000000, 0.000000;;, - 88;3; 0.000000, 0.000000, 0.000000;;, - 89;3; 0.000000, 0.000000, 0.000000;;, - 90;3; 0.000000, 0.000000, 0.000000;;, - 91;3; 0.000000, 0.000000, 0.000000;;, - 92;3; 0.000000, 0.000000, 0.000000;;, - 93;3; 0.000000, 0.000000, 0.000000;;, - 94;3; 0.000000, 0.000000, 0.000000;;, - 95;3; 0.000000, 0.000000, 0.000000;;, - 96;3; 0.000000, 0.000000, 0.000000;;, - 97;3; 0.000000, 0.000000, 0.000000;;, - 98;3; 0.000000, 0.000000, 0.000000;;, - 99;3; 0.000000, 0.000000, 0.000000;;, - 100;3; 0.000000, 0.000000, 0.000000;;, - 101;3; 0.000000, 0.000000, 0.000000;;, - 102;3; 0.000000, 0.000000, 0.000000;;, - 103;3; 0.000000, 0.000000, 0.000000;;, - 104;3; 0.000000, 0.000000, 0.000000;;, - 105;3; 0.000000, 0.000000, 0.000000;;, - 106;3; 0.000000, 0.000000, 0.000000;;, - 107;3; 0.000000, 0.000000, 0.000000;;, - 108;3; 0.000000, 0.000000, 0.000000;;, - 109;3; 0.000000, 0.000000, 0.000000;;, - 110;3; 0.000000, 0.000000, 0.000000;;, - 111;3; 0.000000, 0.000000, 0.000000;;, - 112;3; 0.000000, 0.000000, 0.000000;;, - 113;3; 0.000000, 0.000000, 0.000000;;, - 114;3; 0.000000, 0.000000, 0.000000;;, - 115;3; 0.000000, 0.000000, 0.000000;;, - 116;3; 0.000000, 0.000000, 0.000000;;, - 117;3; 0.000000, 0.000000, 0.000000;;, - 118;3; 0.000000, 0.000000, 0.000000;;, - 119;3; 0.000000, 0.000000, 0.000000;;, - 120;3; 0.000000, 0.000000, 0.000000;;, - 121;3; 0.000000, 0.000000, 0.000000;;, - 122;3; 0.000000, 0.000000, 0.000000;;, - 123;3; 0.000000, 0.000000, 0.000000;;, - 124;3; 0.000000, 0.000000, 0.000000;;, - 125;3; 0.000000, 0.000000, 0.000000;;, - 126;3; 0.000000, 0.000000, 0.000000;;, - 127;3; 0.000000, 0.000000, 0.000000;;, - 128;3; 0.000000, 0.000000, 0.000000;;, - 129;3; 0.000000, 0.000000, 0.000000;;, - 130;3; 0.000000, 0.000000, 0.000000;;, - 131;3; 0.000000, 0.000000, 0.000000;;, - 132;3; 0.000000, 0.000000, 0.000000;;, - 133;3; 0.000000, 0.000000, 0.000000;;, - 134;3; 0.000000, 0.000000, 0.000000;;, - 135;3; 0.000000, 0.000000, 0.000000;;, - 136;3; 0.000000, 0.000000, 0.000000;;, - 137;3; 0.000000, 0.000000, 0.000000;;, - 138;3; 0.000000, 0.000000, 0.000000;;, - 139;3; 0.000000, 0.000000, 0.000000;;, - 140;3; 0.000000, 0.000000, 0.000000;;, - 141;3; 0.000000, 0.000000, 0.000000;;, - 142;3; 0.000000, 0.000000, 0.000000;;, - 143;3; 0.000000, 0.000000, 0.000000;;, - 144;3; 0.000000, 0.000000, 0.000000;;, - 145;3; 0.000000, 0.000000, 0.000000;;, - 146;3; 0.000000, 0.000000, 0.000000;;, - 147;3; 0.000000, 0.000000, 0.000000;;, - 148;3; 0.000000, 0.000000, 0.000000;;, - 149;3; 0.000000, 0.000000, 0.000000;;, - 150;3; 0.000000, 0.000000, 0.000000;;, - 151;3; 0.000000, 0.000000, 0.000000;;, - 152;3; 0.000000, 0.000000, 0.000000;;, - 153;3; 0.000000, 0.000000, 0.000000;;, - 154;3; 0.000000, 0.000000, 0.000000;;, - 155;3; 0.000000, 0.000000, 0.000000;;, - 156;3; 0.000000, 0.000000, 0.000000;;, - 157;3; 0.000000, 0.000000, 0.000000;;, - 158;3; 0.000000, 0.000000, 0.000000;;, - 159;3; 0.000000, 0.000000, 0.000000;;, - 160;3; 0.000000, 0.000000, 0.000000;;, - 161;3; 0.000000, 0.000000, 0.000000;;, - 162;3; 0.000000, 0.000000, 0.000000;;, - 163;3; 0.000000, 0.000000, 0.000000;;, - 164;3; 0.000000, 0.000000, 0.000000;;, - 165;3; 0.000000, 0.000000, 0.000000;;, - 166;3; 0.000000, 0.000000, 0.000000;;, - 167;3; 0.000000, 0.000000, 0.000000;;, - 168;3; 0.000000, 0.000000, 0.000000;;, - 169;3; 0.000000, 0.000000, 0.000000;;, - 170;3; 0.000000, 0.000000, 0.000000;;, - 171;3; 0.000000, 0.000000, 0.000000;;, - 172;3; 0.000000, 0.000000, 0.000000;;, - 173;3; 0.000000, 0.000000, 0.000000;;, - 174;3; 0.000000, 0.000000, 0.000000;;, - 175;3; 0.000000, 0.000000, 0.000000;;, - 176;3; 0.000000, 0.000000, 0.000000;;, - 177;3; 0.000000, 0.000000, 0.000000;;, - 178;3; 0.000000, 0.000000, 0.000000;;, - 179;3; 0.000000, 0.000000, 0.000000;;, - 180;3; 0.000000, 0.000000, 0.000000;;, - 181;3; 0.000000, 0.000000, 0.000000;;, - 182;3; 0.000000, 0.000000, 0.000000;;, - 183;3; 0.000000, 0.000000, 0.000000;;, - 184;3; 0.000000, 0.000000, 0.000000;;, - 185;3; 0.000000, 0.000000, 0.000000;;, - 186;3; 0.000000, 0.000000, 0.000000;;, - 187;3; 0.000000, 0.000000, 0.000000;;, - 188;3; 0.000000, 0.000000, 0.000000;;; - } - } -} // End of AnimationSet Default_Action diff --git a/mods/mobs/models/creatures_sheep.png b/mods/mobs/models/creatures_sheep.png deleted file mode 100644 index 9a6dc57f5..000000000 Binary files a/mods/mobs/models/creatures_sheep.png and /dev/null differ diff --git a/mods/mobs/models/creatures_sheep.x b/mods/mobs/models/creatures_sheep.x deleted file mode 100644 index 1a6d7d54e..000000000 --- a/mods/mobs/models/creatures_sheep.x +++ /dev/null @@ -1,6751 +0,0 @@ -xof 0303txt 0032 - -template XSkinMeshHeader { - <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> - WORD nMaxSkinWeightsPerVertex; - WORD nMaxSkinWeightsPerFace; - WORD nBones; -} - -template SkinWeights { - <6f0d123b-bad2-4167-a0d0-80224f25fabb> - STRING transformNodeName; - DWORD nWeights; - array DWORD vertexIndices[nWeights]; - array float weights[nWeights]; - Matrix4x4 matrixOffset; -} - -Frame Root { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Frame Armature { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.020581, 0.043608, 0.162447, 1.000000;; - } - Frame Armature_Root { - FrameTransformMatrix { - -1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.030899,-0.009276, 5.987902, 1.000000;; - } - Frame Armature_Bone_001 { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 1.460671,-0.139217, 4.073730, 1.000000;; - } - } // End of Armature_Bone_001 - Frame Armature_Bone_002 { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 1.460671,-0.139216,-3.633328, 1.000000;; - } - } // End of Armature_Bone_002 - Frame Armature_Bone_003 { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - -1.438651,-0.139217, 4.073730, 1.000000;; - } - } // End of Armature_Bone_003 - Frame Armature_Head { - FrameTransformMatrix { - -1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - -0.000000, 4.052525, 3.788038, 1.000000;; - } - } // End of Armature_Head - Frame Armature_RR_leg { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - -1.438651,-0.139216,-3.633328, 1.000000;; - } - } // End of Armature_RR_leg - } // End of Armature_Root - Frame sheep { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000,-0.000000, 1.000000;; - } - Mesh { // sheep mesh - 348; - 1.998224; 6.883465; 8.227857;, - 1.998224; 6.883465;12.113163;, - 1.998223; 2.998159;12.113163;, - 1.998222; 2.998158; 8.227857;, - -1.887085; 2.998161;12.113163;, - -1.887084; 2.998160; 8.227857;, - 1.998222; 2.998158; 8.227857;, - 1.998223; 2.998159;12.113163;, - -1.887084; 2.998160; 8.227857;, - -1.887082; 6.883466; 8.227857;, - 1.998224; 6.883465; 8.227857;, - 1.998222; 2.998158; 8.227857;, - -1.887085; 2.998161;12.113163;, - 1.998223; 2.998159;12.113163;, - 1.998224; 6.883465;12.113163;, - -1.887081; 6.883467;12.113163;, - -1.887084; 2.998160; 8.227857;, - -1.887085; 2.998161;12.113163;, - -1.887081; 6.883467;12.113163;, - -1.887082; 6.883466; 8.227857;, - 1.998224; 6.883465; 8.227857;, - -1.887082; 6.883466; 8.227857;, - -1.887081; 6.883467;12.113163;, - 1.998224; 6.883465;12.113163;, - 0.595866; 5.025031; 3.317000;, - 0.595866; 5.025031; 6.125085;, - 2.704729; 5.025031; 6.125084;, - 2.704729; 5.025031; 3.316999;, - 0.595865; 3.054348; 3.317000;, - 2.704728; 3.054348; 3.317000;, - 2.704729; 3.054348; 6.125084;, - 0.595866; 3.054348; 6.125085;, - 0.595866; 5.025031; 3.317000;, - 0.595865; 3.054348; 3.317000;, - 0.595866; 3.054348; 6.125085;, - 0.595866; 5.025031; 6.125085;, - 0.595866; 5.025031; 6.125085;, - 0.595866; 3.054348; 6.125085;, - 2.704729; 3.054348; 6.125084;, - 2.704729; 5.025031; 6.125084;, - 2.704729; 5.025031; 6.125084;, - 2.704729; 3.054348; 6.125084;, - 2.704728; 3.054348; 3.317000;, - 2.704729; 5.025031; 3.316999;, - 2.704729; 5.025031; 3.316999;, - 2.704728; 3.054348; 3.317000;, - 2.445655; 3.296446; 3.317000;, - 2.445655; 4.782932; 3.317000;, - 0.854940; 4.782932; 3.317000;, - 2.445655; 4.782932; 3.317000;, - 2.445655; 4.782932;-0.213580;, - 0.854939; 4.782932;-0.213580;, - 2.445655; 4.782932; 3.317000;, - 2.445655; 3.296446; 3.317000;, - 2.445654; 3.296445;-0.213580;, - 2.445655; 4.782932;-0.213580;, - 2.445655; 3.296446; 3.317000;, - 0.854939; 3.296446; 3.317000;, - 0.854938; 3.296446;-0.213580;, - 2.445654; 3.296445;-0.213580;, - 0.854939; 4.782932;-0.213580;, - 2.445655; 4.782932;-0.213580;, - 2.445654; 3.296445;-0.213580;, - 0.854938; 3.296446;-0.213580;, - 0.595866; 5.025031; 3.317000;, - 2.704729; 5.025031; 3.316999;, - 2.445655; 4.782932; 3.317000;, - 0.854940; 4.782932; 3.317000;, - 0.595865; 3.054348; 3.317000;, - 0.595866; 5.025031; 3.317000;, - 0.854940; 4.782932; 3.317000;, - 0.854939; 3.296446; 3.317000;, - 2.704728; 3.054348; 3.317000;, - 0.595865; 3.054348; 3.317000;, - 0.854939; 3.296446; 3.317000;, - 2.445655; 3.296446; 3.317000;, - 0.854939; 3.296446; 3.317000;, - 0.854940; 4.782932; 3.317000;, - 0.854939; 4.782932;-0.213580;, - 0.854938; 3.296446;-0.213580;, - -0.241135;-2.928798; 3.317000;, - -2.349997;-2.928798; 3.316999;, - -2.349998;-2.928798; 6.125084;, - -0.241135;-2.928798; 6.125085;, - -0.241133;-4.899481; 3.317000;, - -0.241135;-4.899481; 6.125085;, - -2.349997;-4.899481; 6.125084;, - -2.349996;-4.899481; 3.317000;, - -0.241135;-2.928798; 3.317000;, - -0.241135;-2.928798; 6.125085;, - -0.241135;-4.899481; 6.125085;, - -0.241133;-4.899481; 3.317000;, - -0.241135;-2.928798; 6.125085;, - -2.349998;-2.928798; 6.125084;, - -2.349997;-4.899481; 6.125084;, - -0.241135;-4.899481; 6.125085;, - -2.349998;-2.928798; 6.125084;, - -2.349997;-2.928798; 3.316999;, - -2.349996;-4.899481; 3.317000;, - -2.349997;-4.899481; 6.125084;, - -2.349997;-2.928798; 3.316999;, - -2.090924;-3.170897; 3.317000;, - -2.090923;-4.657383; 3.317000;, - -2.349996;-4.899481; 3.317000;, - -0.500208;-3.170897; 3.317000;, - -0.500208;-3.170897;-0.213580;, - -2.090923;-3.170897;-0.213580;, - -2.090924;-3.170897; 3.317000;, - -2.090924;-3.170897; 3.317000;, - -2.090923;-3.170897;-0.213580;, - -2.090923;-4.657383;-0.213580;, - -2.090923;-4.657383; 3.317000;, - -2.090923;-4.657383; 3.317000;, - -2.090923;-4.657383;-0.213580;, - -0.500206;-4.657383;-0.213580;, - -0.500207;-4.657383; 3.317000;, - -0.500208;-3.170897;-0.213580;, - -0.500206;-4.657383;-0.213580;, - -2.090923;-4.657383;-0.213580;, - -2.090923;-3.170897;-0.213580;, - -0.241135;-2.928798; 3.317000;, - -0.500208;-3.170897; 3.317000;, - -2.090924;-3.170897; 3.317000;, - -2.349997;-2.928798; 3.316999;, - -0.241133;-4.899481; 3.317000;, - -0.500207;-4.657383; 3.317000;, - -0.500208;-3.170897; 3.317000;, - -0.241135;-2.928798; 3.317000;, - -2.349996;-4.899481; 3.317000;, - -2.090923;-4.657383; 3.317000;, - -0.500207;-4.657383; 3.317000;, - -0.241133;-4.899481; 3.317000;, - -0.500207;-4.657383; 3.317000;, - -0.500206;-4.657383;-0.213580;, - -0.500208;-3.170897;-0.213580;, - -0.500208;-3.170897; 3.317000;, - -0.500207; 3.296446; 3.317000;, - -0.500206; 3.296446;-0.213580;, - -0.500208; 4.782932;-0.213580;, - -0.500208; 4.782932; 3.317000;, - -2.349996; 3.054348; 3.317000;, - -2.090923; 3.296446; 3.317000;, - -0.500207; 3.296446; 3.317000;, - -0.241133; 3.054348; 3.317000;, - -0.241133; 3.054348; 3.317000;, - -0.500207; 3.296446; 3.317000;, - -0.500208; 4.782932; 3.317000;, - -0.241135; 5.025031; 3.317000;, - -0.241135; 5.025031; 3.317000;, - -0.500208; 4.782932; 3.317000;, - -2.090924; 4.782932; 3.317000;, - -2.349997; 5.025031; 3.316999;, - -0.500208; 4.782932;-0.213580;, - -0.500206; 3.296446;-0.213580;, - -2.090923; 3.296445;-0.213580;, - -2.090923; 4.782932;-0.213580;, - -2.090923; 3.296446; 3.317000;, - -2.090923; 3.296445;-0.213580;, - -0.500206; 3.296446;-0.213580;, - -0.500207; 3.296446; 3.317000;, - -2.090924; 4.782932; 3.317000;, - -2.090923; 4.782932;-0.213580;, - -2.090923; 3.296445;-0.213580;, - -2.090923; 3.296446; 3.317000;, - -0.500208; 4.782932; 3.317000;, - -0.500208; 4.782932;-0.213580;, - -2.090923; 4.782932;-0.213580;, - -2.090924; 4.782932; 3.317000;, - -2.349997; 5.025031; 3.316999;, - -2.090924; 4.782932; 3.317000;, - -2.090923; 3.296446; 3.317000;, - -2.349996; 3.054348; 3.317000;, - -2.349998; 5.025031; 6.125084;, - -2.349997; 5.025031; 3.316999;, - -2.349996; 3.054348; 3.317000;, - -2.349997; 3.054348; 6.125084;, - -0.241135; 5.025031; 6.125085;, - -2.349998; 5.025031; 6.125084;, - -2.349997; 3.054348; 6.125084;, - -0.241135; 3.054348; 6.125085;, - -0.241135; 5.025031; 3.317000;, - -0.241135; 5.025031; 6.125085;, - -0.241135; 3.054348; 6.125085;, - -0.241133; 3.054348; 3.317000;, - -0.241133; 3.054348; 3.317000;, - -0.241135; 3.054348; 6.125085;, - -2.349997; 3.054348; 6.125084;, - -2.349996; 3.054348; 3.317000;, - -0.241135; 5.025031; 3.317000;, - -2.349997; 5.025031; 3.316999;, - -2.349998; 5.025031; 6.125084;, - -0.241135; 5.025031; 6.125085;, - 0.854939;-4.657383; 3.317000;, - 0.854940;-3.170897; 3.317000;, - 0.854939;-3.170897;-0.213580;, - 0.854938;-4.657383;-0.213580;, - 2.704728;-4.899481; 3.317000;, - 0.595865;-4.899481; 3.317000;, - 0.854939;-4.657383; 3.317000;, - 2.445655;-4.657383; 3.317000;, - 0.595865;-4.899481; 3.317000;, - 0.595866;-2.928798; 3.317000;, - 0.854940;-3.170897; 3.317000;, - 0.854939;-4.657383; 3.317000;, - 0.595866;-2.928798; 3.317000;, - 2.704729;-2.928798; 3.316999;, - 2.445655;-3.170897; 3.317000;, - 0.854940;-3.170897; 3.317000;, - 0.854939;-3.170897;-0.213580;, - 2.445655;-3.170897;-0.213580;, - 2.445654;-4.657383;-0.213580;, - 0.854938;-4.657383;-0.213580;, - 2.445655;-4.657383; 3.317000;, - 0.854939;-4.657383; 3.317000;, - 0.854938;-4.657383;-0.213580;, - 2.445654;-4.657383;-0.213580;, - 2.445655;-3.170897; 3.317000;, - 2.445655;-4.657383; 3.317000;, - 2.445654;-4.657383;-0.213580;, - 2.445655;-3.170897;-0.213580;, - 0.854940;-3.170897; 3.317000;, - 2.445655;-3.170897; 3.317000;, - 2.445655;-3.170897;-0.213580;, - 0.854939;-3.170897;-0.213580;, - 2.704729;-2.928798; 3.316999;, - 2.704728;-4.899481; 3.317000;, - 2.445655;-4.657383; 3.317000;, - 2.445655;-3.170897; 3.317000;, - 2.704729;-2.928798; 6.125084;, - 2.704729;-4.899481; 6.125084;, - 2.704728;-4.899481; 3.317000;, - 2.704729;-2.928798; 3.316999;, - 0.595866;-2.928798; 6.125085;, - 0.595866;-4.899481; 6.125085;, - 2.704729;-4.899481; 6.125084;, - 2.704729;-2.928798; 6.125084;, - 0.595866;-2.928798; 3.317000;, - 0.595865;-4.899481; 3.317000;, - 0.595866;-4.899481; 6.125085;, - 0.595866;-2.928798; 6.125085;, - 0.595865;-4.899481; 3.317000;, - 2.704728;-4.899481; 3.317000;, - 2.704729;-4.899481; 6.125084;, - 0.595866;-4.899481; 6.125085;, - 0.595866;-2.928798; 3.317000;, - 0.595866;-2.928798; 6.125085;, - 2.704729;-2.928798; 6.125084;, - 2.704729;-2.928798; 3.316999;, - -2.644433;-5.423595; 5.058936;, - -2.644430; 5.376405; 5.058936;, - 2.755570; 5.376402; 5.058936;, - 2.755566;-5.423599; 5.058936;, - 2.755567;-5.423597;10.458936;, - 2.755571; 5.376401;10.458936;, - 2.755571; 5.376401;10.458936;, - 2.755567;-5.423597;10.458936;, - -2.644433;-5.423595; 5.058936;, - -2.644435;-5.423593;10.458936;, - -2.644428; 5.376408;10.458936;, - -2.644430; 5.376405; 5.058936;, - -2.644430; 5.376405; 5.058936;, - -2.644428; 5.376408;10.458936;, - 2.755571; 5.376401;10.458936;, - 2.755570; 5.376402; 5.058936;, - 2.755570; 5.376402; 5.058936;, - 2.755571; 5.376401;10.458936;, - 2.755567;-5.423597;10.458936;, - 2.755566;-5.423599; 5.058936;, - -0.346656;-5.423596; 9.828822;, - -0.346656;-5.423596; 7.673504;, - -0.346656;-6.180264; 7.673504;, - -0.346656;-6.180264; 9.828822;, - -0.346656;-6.180264; 9.828822;, - -0.346656;-6.180264; 7.673504;, - 0.457788;-6.180264; 7.673504;, - 0.457788;-6.180264; 9.828822;, - -2.644435;-5.423593;10.458936;, - -2.644433;-5.423595; 5.058936;, - 2.755566;-5.423599; 5.058936;, - 2.755567;-5.423597;10.458936;, - -0.346656;-5.423596; 7.673504;, - 0.457788;-5.423596; 7.673504;, - 0.457788;-6.180264; 7.673504;, - -0.346656;-6.180264; 7.673504;, - 0.457788;-5.423596; 7.673504;, - 0.457788;-5.423596; 9.828822;, - 0.457788;-6.180264; 9.828822;, - 0.457788;-6.180264; 7.673504;, - 0.457788;-5.423596; 9.828822;, - -0.346656;-5.423596; 9.828822;, - -0.346656;-6.180264; 9.828822;, - 0.457788;-6.180264; 9.828822;, - 1.668879; 7.180430; 8.557201;, - 1.668880; 7.180430;11.783818;, - 1.668878; 6.793243;11.783818;, - 1.668877; 6.793243; 8.557201;, - -1.557739; 6.793245; 8.557201;, - -1.557738; 7.180430; 8.557201;, - 1.668879; 7.180430; 8.557201;, - 1.668877; 6.793243; 8.557201;, - -1.557740; 6.793246;11.783818;, - 1.668878; 6.793243;11.783818;, - 1.668880; 7.180430;11.783818;, - -1.557737; 7.180432;11.783818;, - -1.557739; 6.793245; 8.557201;, - -1.557740; 6.793246;11.783818;, - -1.557737; 7.180432;11.783818;, - -1.557738; 7.180430; 8.557201;, - 1.668879; 7.180430; 8.557201;, - -1.557738; 7.180430; 8.557201;, - -1.557737; 7.180432;11.783818;, - 1.668880; 7.180430;11.783818;, - 1.133778; 7.466741; 8.575418;, - 1.133778; 7.466741;10.170522;, - 1.133777; 7.146296;10.170522;, - 1.133777; 7.146296; 8.575418;, - -1.022638; 7.146297; 8.575418;, - -1.022637; 7.466741; 8.575418;, - 1.133778; 7.466741; 8.575418;, - 1.133777; 7.146296; 8.575418;, - -1.022639; 7.146297;10.170522;, - 1.133777; 7.146296;10.170522;, - 1.133778; 7.466741;10.170522;, - -1.022637; 7.466742;10.170522;, - -1.022638; 7.146297; 8.575418;, - -1.022639; 7.146297;10.170522;, - -1.022637; 7.466742;10.170522;, - -1.022637; 7.466741; 8.575418;, - 1.133778; 7.466741; 8.575418;, - -1.022637; 7.466741; 8.575418;, - -1.022637; 7.466742;10.170522;, - 1.133778; 7.466741;10.170522;, - -2.644435;-5.423593;10.458936;, - 2.755567;-5.423597;10.458936;, - 2.755571; 5.376401;10.458936;, - -2.644428; 5.376408;10.458936;, - 2.755571; 5.376401;10.458936;, - -2.644428; 5.376408;10.458936;, - -2.644428; 5.376408;10.458936;, - 2.755571; 5.376401;10.458936;, - -2.644435;-5.423593;10.458936;, - 2.755567;-5.423597;10.458936;, - 2.755567;-5.423597;10.458936;, - -2.644435;-5.423593;10.458936;, - -2.644428; 5.376408;10.458936;, - -2.644435;-5.423593;10.458936;, - -2.644435;-5.423593;10.458936;, - -2.644428; 5.376408;10.458936;; - 87; - 4;3,2,1,0;, - 4;7,6,5,4;, - 4;11,10,9,8;, - 4;15,14,13,12;, - 4;19,18,17,16;, - 4;23,22,21,20;, - 4;27,26,25,24;, - 4;31,30,29,28;, - 4;35,34,33,32;, - 4;39,38,37,36;, - 4;43,42,41,40;, - 4;47,46,45,44;, - 4;51,50,49,48;, - 4;55,54,53,52;, - 4;59,58,57,56;, - 4;63,62,61,60;, - 4;67,66,65,64;, - 4;71,70,69,68;, - 4;75,74,73,72;, - 4;79,78,77,76;, - 4;83,82,81,80;, - 4;87,86,85,84;, - 4;91,90,89,88;, - 4;95,94,93,92;, - 4;99,98,97,96;, - 4;103,102,101,100;, - 4;107,106,105,104;, - 4;111,110,109,108;, - 4;115,114,113,112;, - 4;119,118,117,116;, - 4;123,122,121,120;, - 4;127,126,125,124;, - 4;131,130,129,128;, - 4;135,134,133,132;, - 4;139,138,137,136;, - 4;143,142,141,140;, - 4;147,146,145,144;, - 4;151,150,149,148;, - 4;155,154,153,152;, - 4;159,158,157,156;, - 4;163,162,161,160;, - 4;167,166,165,164;, - 4;171,170,169,168;, - 4;175,174,173,172;, - 4;179,178,177,176;, - 4;183,182,181,180;, - 4;187,186,185,184;, - 4;191,190,189,188;, - 4;195,194,193,192;, - 4;199,198,197,196;, - 4;203,202,201,200;, - 4;207,206,205,204;, - 4;211,210,209,208;, - 4;215,214,213,212;, - 4;219,218,217,216;, - 4;223,222,221,220;, - 4;227,226,225,224;, - 4;231,230,229,228;, - 4;235,234,233,232;, - 4;239,238,237,236;, - 4;243,242,241,240;, - 4;247,246,245,244;, - 4;251,250,249,248;, - 4;255,254,253,252;, - 4;259,258,257,256;, - 4;263,262,261,260;, - 4;267,266,265,264;, - 4;271,270,269,268;, - 4;275,274,273,272;, - 4;279,278,277,276;, - 4;283,282,281,280;, - 4;287,286,285,284;, - 4;291,290,289,288;, - 4;295,294,293,292;, - 4;299,298,297,296;, - 4;303,302,301,300;, - 4;307,306,305,304;, - 4;311,310,309,308;, - 4;315,314,313,312;, - 4;319,318,317,316;, - 4;323,322,321,320;, - 4;327,326,325,324;, - 4;331,330,329,328;, - 4;335,334,333,332;, - 4;339,338,337,336;, - 4;343,342,341,340;, - 4;347,346,345,344;; - MeshTextureCoords { // sheep UV coordinates - 348; - 0.125000; 0.640030;, - 0.125000; 0.320030;, - 0.000000; 0.319970;, - 0.000000; 0.639970;, - 0.375000; 0.320000;, - 0.375000; 0.640000;, - 0.500000; 0.640000;, - 0.500000; 0.320000;, - 0.250000; 0.000000;, - 0.250000; 0.320000;, - 0.375000; 0.320000;, - 0.375000; 0.000000;, - 0.124996; 0.320055;, - 0.250060; 0.319945;, - 0.249940;-0.000024;, - 0.125004; 0.000024;, - 0.375028; 0.640000;, - 0.374972; 0.320000;, - 0.249972; 0.320000;, - 0.250028; 0.640000;, - 0.125000; 0.640000;, - 0.250000; 0.640000;, - 0.250000; 0.320000;, - 0.125000; 0.320000;, - 0.125000; 0.760000;, - 0.125000; 0.640000;, - 0.062500; 0.640000;, - 0.062500; 0.760000;, - 0.187500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.640000;, - 0.187500; 0.640000;, - 0.125000; 0.760000;, - 0.187500; 0.760000;, - 0.187500; 0.640000;, - 0.125000; 0.640000;, - 0.759130;-0.193221;, - 0.759130;-0.304332;, - 0.659130;-0.304332;, - 0.659130;-0.193221;, - 0.062500; 0.640000;, - -0.000000; 0.640000;, - 0.000000; 0.760000;, - 0.062500; 0.760000;, - 0.312500; 0.720000;, - 0.250000; 0.720000;, - 0.250000; 0.760000;, - 0.312500; 0.760000;, - 0.125000; 0.640000;, - 0.062500; 0.640000;, - 0.062500; 1.000000;, - 0.125000; 1.000000;, - 0.062500; 0.639979;, - 0.000000; 0.640021;, - 0.000000; 1.000021;, - 0.062500; 0.999979;, - 0.250000; 0.639931;, - 0.187500; 0.640069;, - 0.187500; 1.000069;, - 0.250000; 0.999931;, - 0.312500; 0.840000;, - 0.250000; 0.840000;, - 0.250000; 1.000000;, - 0.312500; 1.000000;, - 0.312500; 0.720000;, - 0.250000; 0.720000;, - 0.250000; 0.760000;, - 0.312500; 0.760000;, - 0.312500; 0.720000;, - 0.250000; 0.720000;, - 0.250000; 0.760000;, - 0.312500; 0.760000;, - 0.312500; 0.720000;, - 0.250000; 0.720000;, - 0.250000; 0.760000;, - 0.312500; 0.760000;, - 0.187500; 0.640033;, - 0.125000; 0.640000;, - 0.125000; 0.999983;, - 0.187500; 1.000017;, - 0.125000; 0.760000;, - 0.062500; 0.760000;, - 0.062500; 0.640000;, - 0.125000; 0.640000;, - 0.187500; 0.760000;, - 0.187500; 0.640000;, - 0.250000; 0.640000;, - 0.250000; 0.760000;, - 0.125000; 0.760000;, - 0.125000; 0.640000;, - 0.187500; 0.640000;, - 0.187500; 0.760000;, - 0.890126;-0.161009;, - 0.790126;-0.161009;, - 0.790126;-0.272120;, - 0.890126;-0.272120;, - 0.062500; 0.640000;, - 0.062500; 0.760000;, - 0.000000; 0.760000;, - 0.000000; 0.640000;, - 0.312500; 0.719920;, - 0.312500; 0.759920;, - 0.250000; 0.760080;, - 0.250000; 0.720080;, - 0.125000; 0.640000;, - 0.125000; 1.000000;, - 0.062500; 1.000000;, - 0.062500; 0.640000;, - 0.062500; 0.640000;, - 0.062500; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 0.640000;, - 0.250000; 0.640000;, - 0.250000; 1.000000;, - 0.187500; 1.000000;, - 0.187500; 0.640000;, - 0.312500; 0.840000;, - 0.312500; 1.000000;, - 0.250000; 1.000000;, - 0.250000; 0.840000;, - 0.312500; 0.720000;, - 0.312500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.720000;, - 0.312500; 0.720000;, - 0.312500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.720000;, - 0.312500; 0.720000;, - 0.312500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.720000;, - 0.187500; 0.640000;, - 0.187500; 1.000000;, - 0.125000; 1.000000;, - 0.125000; 0.640000;, - 0.187500; 0.640000;, - 0.187500; 1.000000;, - 0.125000; 1.000000;, - 0.125000; 0.640000;, - 0.312500; 0.720000;, - 0.312500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.720000;, - 0.312500; 0.720000;, - 0.312500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.720000;, - 0.312500; 0.720000;, - 0.312500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.720000;, - 0.312500; 0.840000;, - 0.312500; 1.000000;, - 0.250000; 1.000000;, - 0.250000; 0.840000;, - 0.250000; 0.640000;, - 0.250000; 1.000000;, - 0.187500; 1.000000;, - 0.187500; 0.640000;, - 0.062500; 0.640000;, - 0.062500; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 0.640000;, - 0.125000; 0.640000;, - 0.124948; 1.000000;, - 0.062474; 1.000000;, - 0.062526; 0.640000;, - 0.312500; 0.720000;, - 0.312500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.720000;, - 0.062500; 0.640000;, - 0.062500; 0.760000;, - 0.000000; 0.760000;, - 0.000000; 0.640000;, - 1.015396;-0.183378;, - 0.915396;-0.183378;, - 0.915396;-0.294490;, - 1.015396;-0.294490;, - 0.125000; 0.760000;, - 0.125000; 0.640000;, - 0.187500; 0.640000;, - 0.187500; 0.760000;, - 0.187500; 0.760000;, - 0.187500; 0.640000;, - 0.250000; 0.640000;, - 0.250000; 0.760000;, - 0.125000; 0.759933;, - 0.062500; 0.760067;, - 0.062500; 0.640000;, - 0.125000; 0.639867;, - 0.187500; 0.640000;, - 0.125000; 0.640000;, - 0.125000; 1.000000;, - 0.187500; 1.000000;, - 0.312500; 0.720000;, - 0.250000; 0.720000;, - 0.250000; 0.760000;, - 0.312500; 0.760000;, - 0.312500; 0.720000;, - 0.250000; 0.720000;, - 0.250000; 0.760000;, - 0.312500; 0.760000;, - 0.312500; 0.719961;, - 0.250000; 0.720039;, - 0.250000; 0.760000;, - 0.312500; 0.759921;, - 0.312500; 0.840000;, - 0.250000; 0.840000;, - 0.250000; 1.000000;, - 0.312500; 1.000000;, - 0.250000; 0.640000;, - 0.187500; 0.640000;, - 0.187500; 1.000000;, - 0.250000; 1.000000;, - 0.062518; 0.640000;, - 0.000018; 0.640000;, - -0.000018; 1.000000;, - 0.062482; 1.000000;, - 0.125000; 0.640000;, - 0.062500; 0.640000;, - 0.062500; 1.000000;, - 0.125000; 1.000000;, - 0.312500; 0.720000;, - 0.250000; 0.720000;, - 0.250000; 0.760000;, - 0.312500; 0.760000;, - 0.062500; 0.640000;, - 0.000000; 0.640000;, - 0.000000; 0.760000;, - 0.062500; 0.760000;, - 1.167509;-0.196800;, - 1.167509;-0.307911;, - 1.067509;-0.307911;, - 1.067509;-0.196800;, - 0.125000; 0.760000;, - 0.187500; 0.760000;, - 0.187500; 0.640000;, - 0.125000; 0.640000;, - 0.187500; 0.760000;, - 0.250000; 0.760000;, - 0.250000; 0.640000;, - 0.187500; 0.640000;, - 0.125000; 0.760000;, - 0.125000; 0.640000;, - 0.062500; 0.640000;, - 0.062500; 0.760000;, - 0.625000; 0.000000;, - 0.625000; 0.640000;, - 0.750000; 0.640000;, - 0.750000; 0.000000;, - 0.022044; 1.042020;, - 0.022044; 1.514242;, - 0.022044; 1.514242;, - 0.022044; 1.042020;, - 1.000000; 0.000000;, - 0.875000; 0.000000;, - 0.875000; 0.640000;, - 1.000000; 0.640000;, - 0.625000; 0.640000;, - 0.500000; 0.640000;, - 0.500000; 0.960000;, - 0.625000; 0.960000;, - 0.750000; 0.640000;, - 0.875000; 0.640000;, - 0.875000; 0.000000;, - 0.750000; 0.000000;, - 0.750000; 0.083333;, - 0.750000; 0.194445;, - 0.775000; 0.194445;, - 0.775000; 0.083333;, - 0.775000; 0.083333;, - 0.775000; 0.194445;, - 0.825000; 0.194445;, - 0.825000; 0.083333;, - 0.750000; 0.640000;, - 0.625000; 0.640000;, - 0.625000; 0.960000;, - 0.750000; 0.960000;, - 0.775000; 0.222222;, - 0.825000; 0.222222;, - 0.825000; 0.194445;, - 0.775000; 0.194445;, - 0.850000; 0.194445;, - 0.850000; 0.083333;, - 0.825000; 0.083333;, - 0.825000; 0.194445;, - 0.825000; 0.055556;, - 0.775000; 0.055556;, - 0.775000; 0.083333;, - 0.825000; 0.083333;, - 0.140625; 0.599923;, - 0.140625; 0.359923;, - 0.125000; 0.360077;, - 0.125000; 0.600077;, - 0.250000; 0.640000;, - 0.250000; 0.600000;, - 0.125000; 0.600000;, - 0.125000; 0.640000;, - 0.250005; 0.320000;, - 0.125005; 0.320000;, - 0.124995; 0.360000;, - 0.249995; 0.360000;, - 0.250000; 0.640000;, - 0.250000; 0.320000;, - 0.234375; 0.320000;, - 0.234375; 0.640000;, - 0.140625; 0.600000;, - 0.234375; 0.600000;, - 0.234375; 0.360000;, - 0.140625; 0.360000;, - 0.156250; 0.520000;, - 0.156250; 0.600000;, - 0.171875; 0.600000;, - 0.171875; 0.520000;, - 0.156250; 0.480000;, - 0.156250; 0.520000;, - 0.218750; 0.520000;, - 0.218750; 0.480000;, - 0.156250; 0.520000;, - 0.218750; 0.520000;, - 0.218750; 0.480000;, - 0.156250; 0.480000;, - 0.203125; 0.520000;, - 0.203125; 0.600000;, - 0.218750; 0.600000;, - 0.218750; 0.520000;, - 0.218750; 0.520000;, - 0.156250; 0.520000;, - 0.156250; 0.600000;, - 0.218750; 0.600000;, - 0.625000; 0.000000;, - 0.500000; 0.000000;, - 0.500000; 0.640000;, - 0.625000; 0.640000;, - 0.040651; 1.362711;, - 0.040651; 1.140488;, - 0.040651; 1.140488;, - 0.040651; 1.362711;, - 1.000000; 0.027778;, - 1.000000; 0.250000;, - 1.000000; 0.250000;, - 1.000000; 0.027778;, - 0.004432; 1.505653;, - 0.004432; 1.033430;, - 0.004432; 1.033430;, - 0.004432; 1.505653;; - } // End of sheep UV coordinates - XSkinMeshHeader { - 5; - 15; - 6; - } - SkinWeights { - "Armature_Bone_003"; - 243; - 5, - 8, - 16, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63, - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247, - 248, - 249, - 251, - 252, - 255, - 256, - 259, - 260, - 266, - 267, - 277, - 278, - 279, - 333, - 341, - 342; - 0.000000, - 0.000000, - 0.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999417, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999417, - 1.000000, - 1.000000, - 0.999417, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.000000, - 0.000000, - 0.000002, - 0.000000, - 0.000000, - 0.000000, - 0.000015, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000002, - 0.000015, - 0.000000, - 0.000002, - 0.000000, - 0.000000, - 0.000015, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000192, - 0.000000, - 0.000000, - 0.000192, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000192, - 0.000000, - 0.000000, - 0.000008, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000008, - 0.000020, - 0.000020, - 0.000008, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.008993, - 0.000000, - 0.000000, - 0.008993, - 0.000000, - 0.000008, - 0.000000, - 0.000000, - 0.008993, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.002810, - 0.000000, - 0.000000, - 0.000024, - 0.000000, - 0.002810, - 0.000024, - 0.000020, - 0.000020, - 0.000024, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.002810, - 0.000000, - 0.000000, - 0.000000, - 0.000012, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000012, - 0.000000, - 0.000000, - 0.000012, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000; - -1.000000, 0.000000,-0.000000, 0.000000, - 0.000000, 0.000000,-1.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - 1.469550, 5.848685, 4.064454, 1.000000;; - } // End of Armature_Bone_003 skin weights - SkinWeights { - "Armature_Bone_002"; - 59; - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 175, - 178, - 186; - 1.000000, - 1.000000, - 0.999998, - 1.000000, - 1.000000, - 1.000000, - 0.999985, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999998, - 0.999985, - 1.000000, - 0.999998, - 1.000000, - 1.000000, - 0.999985, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999751, - 1.000000, - 1.000000, - 0.999751, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999751, - 1.000000, - 1.000000, - 0.000000, - 0.000000, - 0.000000; - -1.000000,-0.000000,-0.000000, 0.000000, - 0.000000,-0.000000,-1.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - -1.429772, 5.848685,-3.642603, 1.000000;; - } // End of Armature_Bone_002 skin weights - SkinWeights { - "Armature_Bone_001"; - 56; - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191; - 0.999992, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999992, - 0.999980, - 0.999980, - 0.999992, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.991007, - 1.000000, - 1.000000, - 0.991007, - 1.000000, - 0.999992, - 1.000000, - 1.000000, - 0.991007, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.997190, - 1.000000, - 1.000000, - 0.999976, - 1.000000, - 0.997190, - 0.999976, - 0.999980, - 0.999980, - 0.999976, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.997190; - -1.000000,-0.000000,-0.000000, 0.000000, - 0.000000,-0.000000,-1.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - -1.429771, 5.848686, 4.064455, 1.000000;; - } // End of Armature_Bone_001 skin weights - SkinWeights { - "Armature_RR_leg"; - 65; - 86, - 94, - 99, - 114, - 117, - 133, - 175, - 178, - 186, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 216, - 217, - 218, - 219, - 220, - 221, - 222, - 223, - 224, - 225, - 226, - 227, - 228, - 229, - 230, - 231, - 232, - 233, - 234, - 235, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 244, - 245, - 246, - 247; - 0.000000, - 0.000000, - 0.000000, - 0.000057, - 0.000057, - 0.000057, - 0.000000, - 0.000000, - 0.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999988, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999988, - 1.000000, - 1.000000, - 0.999988, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999976, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999976, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999976, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - -1.000000,-0.000000,-0.000000, 0.000000, - 0.000000,-0.000000,-1.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - 1.469550, 5.848685,-3.642604, 1.000000;; - } // End of Armature_RR_leg skin weights - SkinWeights { - "Armature_Head"; - 78; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 253, - 254, - 258, - 261, - 262, - 265, - 292, - 293, - 294, - 295, - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319, - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 334, - 335, - 336, - 337, - 338, - 339, - 344, - 347; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.000003, - 0.000003, - 0.000000, - 0.000000, - 0.000003, - 0.000003, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.000003, - 0.000000, - 0.000003, - 0.000000, - 0.000000, - 0.000003, - 0.000000, - 0.000000; - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000, 1.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.030900,-3.778762,-10.040427, 1.000000;; - } // End of Armature_Head skin weights - SkinWeights { - "Armature_Root"; - 78; - 3, - 6, - 11, - 30, - 31, - 34, - 37, - 38, - 41, - 86, - 94, - 99, - 175, - 178, - 186, - 229, - 234, - 242, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271, - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347; - 0.000000, - 0.000000, - 0.000000, - 0.000583, - 0.000000, - 0.000000, - 0.000000, - 0.000583, - 0.000583, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000000, - 0.000024, - 0.000024, - 0.000024, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999997, - 0.999997, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999997, - 1.000000, - 1.000000, - 0.999997, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 0.999997, - 1.000000, - 0.999997, - 1.000000, - 1.000000, - 0.999997, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - -1.000000,-0.000000, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.030899,-5.987902, 0.009275, 1.000000;; - } // End of Armature_Root skin weights - } // End of sheep mesh - } // End of sheep - } // End of Armature -} // End of Root -AnimationSet ArmatureAction { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 189; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.020581, 0.043608, 0.162447;;, - 1;3; 0.020581, 0.043608, 0.162447;;, - 2;3; 0.020581, 0.043608, 0.162447;;, - 3;3; 0.020581, 0.043608, 0.162447;;, - 4;3; 0.020581, 0.043608, 0.162447;;, - 5;3; 0.020581, 0.043608, 0.162447;;, - 6;3; 0.020581, 0.043608, 0.162447;;, - 7;3; 0.020581, 0.043608, 0.162447;;, - 8;3; 0.020581, 0.043608, 0.162447;;, - 9;3; 0.020581, 0.043608, 0.162447;;, - 10;3; 0.020581, 0.043608, 0.162447;;, - 11;3; 0.020581, 0.043608, 0.162447;;, - 12;3; 0.020581, 0.043608, 0.162447;;, - 13;3; 0.020581, 0.043608, 0.162447;;, - 14;3; 0.020581, 0.043608, 0.162447;;, - 15;3; 0.020581, 0.043608, 0.162447;;, - 16;3; 0.020581, 0.043608, 0.162447;;, - 17;3; 0.020581, 0.043608, 0.162447;;, - 18;3; 0.020581, 0.043608, 0.162447;;, - 19;3; 0.020581, 0.043608, 0.162447;;, - 20;3; 0.020581, 0.043608, 0.162447;;, - 21;3; 0.020581, 0.043608, 0.162447;;, - 22;3; 0.020581, 0.043608, 0.162447;;, - 23;3; 0.020581, 0.043608, 0.162447;;, - 24;3; 0.020581, 0.043608, 0.162447;;, - 25;3; 0.020581, 0.043608, 0.162447;;, - 26;3; 0.020581, 0.043608, 0.162447;;, - 27;3; 0.020581, 0.043608, 0.162447;;, - 28;3; 0.020581, 0.043608, 0.162447;;, - 29;3; 0.020581, 0.043608, 0.162447;;, - 30;3; 0.020581, 0.043608, 0.162447;;, - 31;3; 0.020581, 0.043608, 0.162447;;, - 32;3; 0.020581, 0.043608, 0.162447;;, - 33;3; 0.020581, 0.043608, 0.162447;;, - 34;3; 0.020581, 0.043608, 0.162447;;, - 35;3; 0.020581, 0.043608, 0.162447;;, - 36;3; 0.020581, 0.043608, 0.162447;;, - 37;3; 0.020581, 0.043608, 0.162447;;, - 38;3; 0.020581, 0.043608, 0.162447;;, - 39;3; 0.020581, 0.043608, 0.162447;;, - 40;3; 0.020581, 0.043608, 0.162447;;, - 41;3; 0.020581, 0.043608, 0.162447;;, - 42;3; 0.020581, 0.043608, 0.162447;;, - 43;3; 0.020581, 0.043608, 0.162447;;, - 44;3; 0.020581, 0.043608, 0.162447;;, - 45;3; 0.020581, 0.043608, 0.162447;;, - 46;3; 0.020581, 0.043608, 0.162447;;, - 47;3; 0.020581, 0.043608, 0.162447;;, - 48;3; 0.020581, 0.043608, 0.162447;;, - 49;3; 0.020581, 0.043608, 0.162447;;, - 50;3; 0.020581, 0.043608, 0.162447;;, - 51;3; 0.020581, 0.043608, 0.162447;;, - 52;3; 0.020581, 0.043608, 0.162447;;, - 53;3; 0.020581, 0.043608, 0.162447;;, - 54;3; 0.020581, 0.043608, 0.162447;;, - 55;3; 0.020581, 0.043608, 0.162447;;, - 56;3; 0.020581, 0.043608, 0.162447;;, - 57;3; 0.020581, 0.043608, 0.162447;;, - 58;3; 0.020581, 0.043608, 0.162447;;, - 59;3; 0.020581, 0.043608, 0.162447;;, - 60;3; 0.020581, 0.043608, 0.162447;;, - 61;3; 0.020581, 0.043608, 0.162447;;, - 62;3; 0.020581, 0.043608, 0.162447;;, - 63;3; 0.020581, 0.043608, 0.162447;;, - 64;3; 0.020581, 0.043608, 0.162447;;, - 65;3; 0.020581, 0.043608, 0.162447;;, - 66;3; 0.020581, 0.043608, 0.162447;;, - 67;3; 0.020581, 0.043608, 0.162447;;, - 68;3; 0.020581, 0.043608, 0.162447;;, - 69;3; 0.020581, 0.043608, 0.162447;;, - 70;3; 0.020581, 0.043608, 0.162447;;, - 71;3; 0.020581, 0.043608, 0.162447;;, - 72;3; 0.020581, 0.043608, 0.162447;;, - 73;3; 0.020581, 0.043608, 0.162447;;, - 74;3; 0.020581, 0.043608, 0.162447;;, - 75;3; 0.020581, 0.043608, 0.162447;;, - 76;3; 0.020581, 0.043608, 0.162447;;, - 77;3; 0.020581, 0.043608, 0.162447;;, - 78;3; 0.020581, 0.043608, 0.162447;;, - 79;3; 0.020581, 0.043608, 0.162447;;, - 80;3; 0.020581, 0.043608, 0.162447;;, - 81;3; 0.020581, 0.043608, 0.162447;;, - 82;3; 0.020581, 0.043608, 0.162447;;, - 83;3; 0.020581, 0.043608, 0.162447;;, - 84;3; 0.020581, 0.043608, 0.162447;;, - 85;3; 0.020581, 0.043608, 0.162447;;, - 86;3; 0.020581, 0.043608, 0.162447;;, - 87;3; 0.020581, 0.043608, 0.162447;;, - 88;3; 0.020581, 0.043608, 0.162447;;, - 89;3; 0.020581, 0.043608, 0.162447;;, - 90;3; 0.020581, 0.043608, 0.162447;;, - 91;3; 0.020581, 0.043608, 0.162447;;, - 92;3; 0.020581, 0.043608, 0.162447;;, - 93;3; 0.020581, 0.043608, 0.162447;;, - 94;3; 0.020581, 0.043608, 0.162447;;, - 95;3; 0.020581, 0.043608, 0.162447;;, - 96;3; 0.020581, 0.043608, 0.162447;;, - 97;3; 0.020581, 0.043608, 0.162447;;, - 98;3; 0.020581, 0.043608, 0.162447;;, - 99;3; 0.020581, 0.043608, 0.162447;;, - 100;3; 0.020581, 0.043608, 0.162447;;, - 101;3; 0.020581, 0.043608, 0.162447;;, - 102;3; 0.020581, 0.043608, 0.162447;;, - 103;3; 0.020581, 0.043608, 0.162447;;, - 104;3; 0.020581, 0.043608, 0.162447;;, - 105;3; 0.020581, 0.043608, 0.162447;;, - 106;3; 0.020581, 0.043608, 0.162447;;, - 107;3; 0.020581, 0.043608, 0.162447;;, - 108;3; 0.020581, 0.043608, 0.162447;;, - 109;3; 0.020581, 0.043608, 0.162447;;, - 110;3; 0.020581, 0.043608, 0.162447;;, - 111;3; 0.020581, 0.043608, 0.162447;;, - 112;3; 0.020581, 0.043608, 0.162447;;, - 113;3; 0.020581, 0.043608, 0.162447;;, - 114;3; 0.020581, 0.043608, 0.162447;;, - 115;3; 0.020581, 0.043608, 0.162447;;, - 116;3; 0.020581, 0.043608, 0.162447;;, - 117;3; 0.020581, 0.043608, 0.162447;;, - 118;3; 0.020581, 0.043608, 0.162447;;, - 119;3; 0.020581, 0.043608, 0.162447;;, - 120;3; 0.020581, 0.043608, 0.162447;;, - 121;3; 0.020581, 0.043608, 0.162447;;, - 122;3; 0.020581, 0.043608, 0.162447;;, - 123;3; 0.020581, 0.043608, 0.162447;;, - 124;3; 0.020581, 0.043608, 0.162447;;, - 125;3; 0.020581, 0.043608, 0.162447;;, - 126;3; 0.020581, 0.043608, 0.162447;;, - 127;3; 0.020581, 0.043608, 0.162447;;, - 128;3; 0.020581, 0.043608, 0.162447;;, - 129;3; 0.020581, 0.043608, 0.162447;;, - 130;3; 0.020581, 0.043608, 0.162447;;, - 131;3; 0.020581, 0.043608, 0.162447;;, - 132;3; 0.020581, 0.043608, 0.162447;;, - 133;3; 0.020581, 0.043608, 0.162447;;, - 134;3; 0.020581, 0.043608, 0.162447;;, - 135;3; 0.020581, 0.043608, 0.162447;;, - 136;3; 0.020581, 0.043608, 0.162447;;, - 137;3; 0.020581, 0.043608, 0.162447;;, - 138;3; 0.020581, 0.043608, 0.162447;;, - 139;3; 0.020581, 0.043608, 0.162447;;, - 140;3; 0.020581, 0.043608, 0.162447;;, - 141;3; 0.020581, 0.043608, 0.162447;;, - 142;3; 0.020581, 0.043608, 0.162447;;, - 143;3; 0.020581, 0.043608, 0.162447;;, - 144;3; 0.020581, 0.043608, 0.162447;;, - 145;3; 0.020581, 0.043608, 0.162447;;, - 146;3; 0.020581, 0.043608, 0.162447;;, - 147;3; 0.020581, 0.043608, 0.162447;;, - 148;3; 0.020581, 0.043608, 0.162447;;, - 149;3; 0.020581, 0.043608, 0.162447;;, - 150;3; 0.020581, 0.043608, 0.162447;;, - 151;3; 0.020581, 0.043608, 0.162447;;, - 152;3; 0.020581, 0.043608, 0.162447;;, - 153;3; 0.020581, 0.043608, 0.162447;;, - 154;3; 0.020581, 0.043608, 0.162447;;, - 155;3; 0.020581, 0.043608, 0.162447;;, - 156;3; 0.020581, 0.043608, 0.162447;;, - 157;3; 0.020581, 0.043608, 0.162447;;, - 158;3; 0.020581, 0.043608, 0.162447;;, - 159;3; 0.020581, 0.043608, 0.162447;;, - 160;3; 0.020581, 0.043608, 0.162447;;, - 161;3; 0.020581, 0.043608, 0.162447;;, - 162;3; 0.020581, 0.043608, 0.162447;;, - 163;3; 0.020581, 0.043608, 0.162447;;, - 164;3; 0.020581, 0.043608, 0.162447;;, - 165;3; 0.020581, 0.043608, 0.162447;;, - 166;3; 0.020581, 0.043608, 0.162447;;, - 167;3; 0.020581, 0.043608, 0.162447;;, - 168;3; 0.020581, 0.043608, 0.162447;;, - 169;3; 0.020581, 0.043608, 0.162447;;, - 170;3; 0.020581, 0.043608, 0.162447;;, - 171;3; 0.020581, 0.043608, 0.162447;;, - 172;3; 0.020581, 0.043608, 0.162447;;, - 173;3; 0.020581, 0.043608, 0.162447;;, - 174;3; 0.020581, 0.043608, 0.162447;;, - 175;3; 0.020581, 0.043608, 0.162447;;, - 176;3; 0.020581, 0.043608, 0.162447;;, - 177;3; 0.020581, 0.043608, 0.162447;;, - 178;3; 0.020581, 0.043608, 0.162447;;, - 179;3; 0.020581, 0.043608, 0.162447;;, - 180;3; 0.020581, 0.043608, 0.162447;;, - 181;3; 0.020581, 0.043608, 0.162447;;, - 182;3; 0.020581, 0.043608, 0.162447;;, - 183;3; 0.020581, 0.043608, 0.162447;;, - 184;3; 0.020581, 0.043608, 0.162447;;, - 185;3; 0.020581, 0.043608, 0.162447;;, - 186;3; 0.020581, 0.043608, 0.162447;;, - 187;3; 0.020581, 0.043608, 0.162447;;, - 188;3; 0.020581, 0.043608, 0.162447;;; - } - } - Animation { - {Armature_Root} - AnimationKey { // Rotation - 0; - 189; - 0;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 1;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 2;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 3;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 4;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 5;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 6;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 7;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 8;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 9;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 10;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 11;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 12;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 13;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 14;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 15;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 16;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 17;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 18;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 19;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 20;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 21;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 22;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 23;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 24;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 25;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 26;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 27;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 28;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 29;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 30;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 31;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 32;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 33;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 34;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 35;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 36;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 37;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 38;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 39;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 40;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 41;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 42;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 43;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 44;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 45;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 46;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 47;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 48;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 49;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 50;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 51;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 52;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 53;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 54;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 55;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 56;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 57;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 58;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 59;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 60;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 61;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 62;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 63;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 64;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 65;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 66;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 67;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 68;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 69;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 70;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 71;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 72;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 73;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 74;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 75;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 76;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 77;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 78;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 79;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 80;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 81;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 82;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 83;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 84;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 85;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 86;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 87;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 88;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 89;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 90;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 91;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 92;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 93;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 94;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 95;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 96;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 97;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 98;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 99;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 100;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 101;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 102;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 103;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 104;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 105;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 106;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 107;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 108;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 109;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 110;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 111;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 112;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 113;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 114;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 115;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 116;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 117;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 118;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 119;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 120;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 121;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 122;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 123;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 124;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 125;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 126;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 127;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 128;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 129;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 130;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 131;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 132;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 133;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 134;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 135;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 136;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 137;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 138;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 139;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 140;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 141;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 142;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 143;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 144;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 145;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 146;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 147;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 148;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 149;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 150;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 151;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 152;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 153;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 154;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 155;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 156;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 157;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 158;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 159;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 160;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 161;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 162;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 163;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 164;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 165;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 166;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 167;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 168;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 169;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 170;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 171;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 172;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 173;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 174;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 175;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 176;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 177;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 178;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 179;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 180;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 181;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 182;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 183;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 184;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 185;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 186;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 187;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 188;4;-0.000000, 0.000000, 0.707107, 0.707107;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.030899,-0.009276, 5.987902;;, - 1;3; 0.030899,-0.009276, 5.987902;;, - 2;3; 0.030899,-0.009276, 5.987902;;, - 3;3; 0.030899,-0.009276, 5.987902;;, - 4;3; 0.030899,-0.009276, 5.987902;;, - 5;3; 0.030899,-0.009276, 5.987902;;, - 6;3; 0.030899,-0.009276, 5.987902;;, - 7;3; 0.030899,-0.009276, 5.987902;;, - 8;3; 0.030899,-0.009276, 5.987902;;, - 9;3; 0.030899,-0.009276, 5.987902;;, - 10;3; 0.030899,-0.009276, 5.987902;;, - 11;3; 0.030899,-0.009276, 5.987902;;, - 12;3; 0.030899,-0.009276, 5.987902;;, - 13;3; 0.030899,-0.009276, 5.987902;;, - 14;3; 0.030899,-0.009276, 5.987902;;, - 15;3; 0.030899,-0.009276, 5.987902;;, - 16;3; 0.030899,-0.009276, 5.987902;;, - 17;3; 0.030899,-0.009276, 5.987902;;, - 18;3; 0.030899,-0.009276, 5.987902;;, - 19;3; 0.030899,-0.009276, 5.987902;;, - 20;3; 0.030899,-0.009276, 5.987902;;, - 21;3; 0.030899,-0.009276, 5.987902;;, - 22;3; 0.030899,-0.009276, 5.987902;;, - 23;3; 0.030899,-0.009276, 5.987902;;, - 24;3; 0.030899,-0.009276, 5.987902;;, - 25;3; 0.030899,-0.009276, 5.987902;;, - 26;3; 0.030899,-0.009276, 5.987902;;, - 27;3; 0.030899,-0.009276, 5.987902;;, - 28;3; 0.030899,-0.009276, 5.987902;;, - 29;3; 0.030899,-0.009276, 5.987902;;, - 30;3; 0.030899,-0.009276, 5.987902;;, - 31;3; 0.030899,-0.009276, 5.987902;;, - 32;3; 0.030899,-0.009276, 5.987902;;, - 33;3; 0.030899,-0.009276, 5.987902;;, - 34;3; 0.030899,-0.009276, 5.987902;;, - 35;3; 0.030899,-0.009276, 5.987902;;, - 36;3; 0.030899,-0.009276, 5.987902;;, - 37;3; 0.030899,-0.009276, 5.987902;;, - 38;3; 0.030899,-0.009276, 5.987902;;, - 39;3; 0.030899,-0.009276, 5.987902;;, - 40;3; 0.030899,-0.009276, 5.987902;;, - 41;3; 0.030899,-0.009276, 5.987902;;, - 42;3; 0.030899,-0.009276, 5.987902;;, - 43;3; 0.030899,-0.009276, 5.987902;;, - 44;3; 0.030899,-0.009276, 5.987902;;, - 45;3; 0.030899,-0.009276, 5.987902;;, - 46;3; 0.030899,-0.009276, 5.987902;;, - 47;3; 0.030899,-0.009276, 5.987902;;, - 48;3; 0.030899,-0.009276, 5.987902;;, - 49;3; 0.030899,-0.009276, 5.987902;;, - 50;3; 0.030899,-0.009276, 5.987902;;, - 51;3; 0.030899,-0.009276, 5.987902;;, - 52;3; 0.030899,-0.009276, 5.987902;;, - 53;3; 0.030899,-0.009276, 5.987902;;, - 54;3; 0.030899,-0.009276, 5.987902;;, - 55;3; 0.030899,-0.009276, 5.987902;;, - 56;3; 0.030899,-0.009276, 5.987902;;, - 57;3; 0.030899,-0.009276, 5.987902;;, - 58;3; 0.030899,-0.009276, 5.987902;;, - 59;3; 0.030899,-0.009276, 5.987902;;, - 60;3; 0.030899,-0.009276, 5.987902;;, - 61;3; 0.030899,-0.009276, 5.987902;;, - 62;3; 0.030899,-0.009276, 5.987902;;, - 63;3; 0.030899,-0.009276, 5.987902;;, - 64;3; 0.030899,-0.009276, 5.987902;;, - 65;3; 0.030899,-0.009276, 5.987902;;, - 66;3; 0.030899,-0.009276, 5.987902;;, - 67;3; 0.030899,-0.009276, 5.987902;;, - 68;3; 0.030899,-0.009276, 5.987902;;, - 69;3; 0.030899,-0.009276, 5.987902;;, - 70;3; 0.030899,-0.009276, 5.987902;;, - 71;3; 0.030899,-0.009276, 5.987902;;, - 72;3; 0.030899,-0.009276, 5.987902;;, - 73;3; 0.030899,-0.009276, 5.987902;;, - 74;3; 0.030899,-0.009276, 5.987902;;, - 75;3; 0.030899,-0.009276, 5.987902;;, - 76;3; 0.030899,-0.009276, 5.987902;;, - 77;3; 0.030899,-0.009276, 5.987902;;, - 78;3; 0.030899,-0.009276, 5.987902;;, - 79;3; 0.030899,-0.009276, 5.987902;;, - 80;3; 0.030899,-0.009276, 5.987902;;, - 81;3; 0.030899,-0.009276, 5.987902;;, - 82;3; 0.030899,-0.009276, 5.987902;;, - 83;3; 0.030899,-0.009276, 5.987902;;, - 84;3; 0.030899,-0.009276, 5.987902;;, - 85;3; 0.030899,-0.009276, 5.987902;;, - 86;3; 0.030899,-0.009276, 5.987902;;, - 87;3; 0.030899,-0.009276, 5.987902;;, - 88;3; 0.030899,-0.009276, 5.987902;;, - 89;3; 0.030899,-0.009276, 5.987902;;, - 90;3; 0.030899,-0.009276, 5.987902;;, - 91;3; 0.030899,-0.009276, 5.987902;;, - 92;3; 0.030899,-0.009276, 5.987902;;, - 93;3; 0.030899,-0.009276, 5.987902;;, - 94;3; 0.030899,-0.009276, 5.987902;;, - 95;3; 0.030899,-0.009276, 5.987902;;, - 96;3; 0.030899,-0.009276, 5.987902;;, - 97;3; 0.030899,-0.009276, 5.987902;;, - 98;3; 0.030899,-0.009276, 5.987902;;, - 99;3; 0.030899,-0.009276, 5.987902;;, - 100;3; 0.030899,-0.009276, 5.987902;;, - 101;3; 0.030899,-0.009276, 5.987902;;, - 102;3; 0.030899,-0.009276, 5.987902;;, - 103;3; 0.030899,-0.009276, 5.987902;;, - 104;3; 0.030899,-0.009276, 5.987902;;, - 105;3; 0.030899,-0.009276, 5.987902;;, - 106;3; 0.030899,-0.009276, 5.987902;;, - 107;3; 0.030899,-0.009276, 5.987902;;, - 108;3; 0.030899,-0.009276, 5.987902;;, - 109;3; 0.030899,-0.009276, 5.987902;;, - 110;3; 0.030899,-0.009276, 5.987902;;, - 111;3; 0.030899,-0.009276, 5.987902;;, - 112;3; 0.030899,-0.009276, 5.987902;;, - 113;3; 0.030899,-0.009276, 5.987902;;, - 114;3; 0.030899,-0.009276, 5.987902;;, - 115;3; 0.030899,-0.009276, 5.987902;;, - 116;3; 0.030899,-0.009276, 5.987902;;, - 117;3; 0.030899,-0.009276, 5.987902;;, - 118;3; 0.030899,-0.009276, 5.987902;;, - 119;3; 0.030899,-0.009276, 5.987902;;, - 120;3; 0.030899,-0.009276, 5.987902;;, - 121;3; 0.030899,-0.009276, 5.987902;;, - 122;3; 0.030899,-0.009276, 5.987902;;, - 123;3; 0.030899,-0.009276, 5.987902;;, - 124;3; 0.030899,-0.009276, 5.987902;;, - 125;3; 0.030899,-0.009276, 5.987902;;, - 126;3; 0.030899,-0.009276, 5.987902;;, - 127;3; 0.030899,-0.009276, 5.987902;;, - 128;3; 0.030899,-0.009276, 5.987902;;, - 129;3; 0.030899,-0.009276, 5.987902;;, - 130;3; 0.030899,-0.009276, 5.987902;;, - 131;3; 0.030899,-0.009276, 5.987902;;, - 132;3; 0.030899,-0.009276, 5.987902;;, - 133;3; 0.030899,-0.009276, 5.987902;;, - 134;3; 0.030899,-0.009276, 5.987902;;, - 135;3; 0.030899,-0.009276, 5.987902;;, - 136;3; 0.030899,-0.009276, 5.987902;;, - 137;3; 0.030899,-0.009276, 5.987902;;, - 138;3; 0.030899,-0.009276, 5.987902;;, - 139;3; 0.030899,-0.009276, 5.987902;;, - 140;3; 0.030899,-0.009276, 5.987902;;, - 141;3; 0.030899,-0.009276, 5.987902;;, - 142;3; 0.030899,-0.009276, 5.987902;;, - 143;3; 0.030899,-0.009276, 5.987902;;, - 144;3; 0.030899,-0.009276, 5.987902;;, - 145;3; 0.030899,-0.009276, 5.987902;;, - 146;3; 0.030899,-0.009276, 5.987902;;, - 147;3; 0.030899,-0.009276, 5.987902;;, - 148;3; 0.030899,-0.009276, 5.987902;;, - 149;3; 0.030899,-0.009276, 5.987902;;, - 150;3; 0.030899,-0.009276, 5.987902;;, - 151;3; 0.030899,-0.009276, 5.987902;;, - 152;3; 0.030899,-0.009276, 5.987902;;, - 153;3; 0.030899,-0.009276, 5.987902;;, - 154;3; 0.030899,-0.009276, 5.987902;;, - 155;3; 0.030899,-0.009276, 5.987902;;, - 156;3; 0.030899,-0.009276, 5.987902;;, - 157;3; 0.030899,-0.009276, 5.987902;;, - 158;3; 0.030899,-0.009276, 5.987902;;, - 159;3; 0.030899,-0.009276, 5.987902;;, - 160;3; 0.030899,-0.009276, 5.987902;;, - 161;3; 0.030899,-0.009276, 5.987902;;, - 162;3; 0.030899,-0.009276, 5.987902;;, - 163;3; 0.030899,-0.009276, 5.987902;;, - 164;3; 0.030899,-0.009276, 5.987902;;, - 165;3; 0.030899,-0.009276, 5.987902;;, - 166;3; 0.030899,-0.009276, 5.987902;;, - 167;3; 0.030899,-0.009276, 5.987902;;, - 168;3; 0.030899,-0.009276, 5.987902;;, - 169;3; 0.030899,-0.009276, 5.987902;;, - 170;3; 0.030899,-0.009276, 5.987902;;, - 171;3; 0.030899,-0.009276, 5.987902;;, - 172;3; 0.030899,-0.009276, 5.987902;;, - 173;3; 0.030899,-0.009276, 5.987902;;, - 174;3; 0.030899,-0.009276, 5.987902;;, - 175;3; 0.030899,-0.009276, 5.987902;;, - 176;3; 0.030899,-0.009276, 5.987902;;, - 177;3; 0.030899,-0.009276, 5.987902;;, - 178;3; 0.030899,-0.009276, 5.987902;;, - 179;3; 0.030899,-0.009276, 5.987902;;, - 180;3; 0.030899,-0.009276, 5.987902;;, - 181;3; 0.030899,-0.009276, 5.987902;;, - 182;3; 0.030899,-0.009276, 5.987902;;, - 183;3; 0.030899,-0.009276, 5.987902;;, - 184;3; 0.030899,-0.009276, 5.987902;;, - 185;3; 0.030899,-0.009276, 5.987902;;, - 186;3; 0.030899,-0.009276, 5.987902;;, - 187;3; 0.030899,-0.009276, 5.987902;;, - 188;3; 0.030899,-0.009276, 5.987902;;; - } - } - Animation { - {Armature_Bone_001} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 1;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 2;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 3;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 4;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 5;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 6;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 7;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 8;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 9;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 10;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 11;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 12;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 13;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 14;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 15;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 16;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 17;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 18;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 19;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 20;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 21;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 22;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 23;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 24;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 25;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 26;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 27;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 28;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 29;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 30;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 31;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 32;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 33;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 34;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 35;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 36;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 37;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 38;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 39;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 40;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 41;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 42;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 43;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 44;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 45;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 46;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 47;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 48;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 49;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 50;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 51;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 52;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 53;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 54;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 55;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 56;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 57;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 58;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 59;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 60;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 61;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 62;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 63;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 64;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 65;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 66;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 67;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 68;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 69;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 70;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 71;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 72;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 73;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 74;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 75;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 76;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 77;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 78;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 79;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 81;4;-0.023017, 0.996971,-0.000000,-0.000000;;, - 82;4;-0.087830, 0.988440,-0.000000,-0.000000;;, - 83;4;-0.171026, 0.977486,-0.000000,-0.000000;;, - 84;4;-0.235815, 0.968955,-0.000000,-0.000000;;, - 85;4;-0.258819, 0.965926,-0.000000,-0.000000;;, - 86;4;-0.247343, 0.965926,-0.000000,-0.000000;;, - 87;4;-0.212807, 0.965926,-0.000000,-0.000000;;, - 88;4;-0.156652, 0.965926,-0.000000,-0.000000;;, - 89;4;-0.083204, 0.965926,-0.000000,-0.000000;;, - 90;4; 0.000000, 0.965926, 0.000000,-0.000000;;, - 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, - 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, - 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, - 94;4; 0.247344, 0.965926, 0.000000,-0.000000;;, - 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, - 96;4; 0.235816, 0.968955, 0.000000,-0.000000;;, - 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, - 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, - 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, - 100;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 101;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 102;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 103;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 104;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 105;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 106;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 107;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 108;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 109;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 110;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 111;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 112;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 113;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 114;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 115;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 116;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 117;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 118;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 119;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 120;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 121;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 122;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 123;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 124;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 125;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 126;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 127;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 128;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 129;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 130;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 131;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 132;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 133;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 134;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 135;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 136;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 137;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 138;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 139;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 140;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 141;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 142;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 143;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 144;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 145;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 146;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 147;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 148;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 149;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 150;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 151;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 152;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 153;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 154;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 155;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 156;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 157;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 158;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 159;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 160;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 161;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 162;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 163;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 164;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 165;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 166;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 167;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 168;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 169;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 1.460671,-0.139217, 4.073730;;, - 1;3; 1.460671,-0.139217, 4.073730;;, - 2;3; 1.460671,-0.139217, 4.073730;;, - 3;3; 1.460671,-0.139217, 4.073730;;, - 4;3; 1.460671,-0.139217, 4.073730;;, - 5;3; 1.460671,-0.139217, 4.073730;;, - 6;3; 1.460671,-0.139217, 4.073730;;, - 7;3; 1.460671,-0.139217, 4.073730;;, - 8;3; 1.460671,-0.139217, 4.073730;;, - 9;3; 1.460671,-0.139217, 4.073730;;, - 10;3; 1.460671,-0.139217, 4.073730;;, - 11;3; 1.460671,-0.139217, 4.073730;;, - 12;3; 1.460671,-0.139217, 4.073730;;, - 13;3; 1.460671,-0.139217, 4.073730;;, - 14;3; 1.460671,-0.139217, 4.073730;;, - 15;3; 1.460671,-0.139217, 4.073730;;, - 16;3; 1.460671,-0.139217, 4.073730;;, - 17;3; 1.460671,-0.139217, 4.073730;;, - 18;3; 1.460671,-0.139217, 4.073730;;, - 19;3; 1.460671,-0.139217, 4.073730;;, - 20;3; 1.460671,-0.139217, 4.073730;;, - 21;3; 1.460671,-0.139217, 4.073730;;, - 22;3; 1.460671,-0.139217, 4.073730;;, - 23;3; 1.460671,-0.139217, 4.073730;;, - 24;3; 1.460671,-0.139217, 4.073730;;, - 25;3; 1.460671,-0.139217, 4.073730;;, - 26;3; 1.460671,-0.139217, 4.073730;;, - 27;3; 1.460671,-0.139217, 4.073730;;, - 28;3; 1.460671,-0.139217, 4.073730;;, - 29;3; 1.460671,-0.139217, 4.073730;;, - 30;3; 1.460671,-0.139217, 4.073730;;, - 31;3; 1.460671,-0.139217, 4.073730;;, - 32;3; 1.460671,-0.139217, 4.073730;;, - 33;3; 1.460671,-0.139217, 4.073730;;, - 34;3; 1.460671,-0.139217, 4.073730;;, - 35;3; 1.460671,-0.139217, 4.073730;;, - 36;3; 1.460671,-0.139217, 4.073730;;, - 37;3; 1.460671,-0.139217, 4.073730;;, - 38;3; 1.460671,-0.139217, 4.073730;;, - 39;3; 1.460671,-0.139217, 4.073730;;, - 40;3; 1.460671,-0.139217, 4.073730;;, - 41;3; 1.460671,-0.139217, 4.073730;;, - 42;3; 1.460671,-0.139217, 4.073730;;, - 43;3; 1.460671,-0.139217, 4.073730;;, - 44;3; 1.460671,-0.139217, 4.073730;;, - 45;3; 1.460671,-0.139217, 4.073730;;, - 46;3; 1.460671,-0.139217, 4.073730;;, - 47;3; 1.460671,-0.139217, 4.073730;;, - 48;3; 1.460671,-0.139217, 4.073730;;, - 49;3; 1.460671,-0.139217, 4.073730;;, - 50;3; 1.460671,-0.139217, 4.073730;;, - 51;3; 1.460671,-0.139217, 4.073730;;, - 52;3; 1.460671,-0.139217, 4.073730;;, - 53;3; 1.460671,-0.139217, 4.073730;;, - 54;3; 1.460671,-0.139217, 4.073730;;, - 55;3; 1.460671,-0.139217, 4.073730;;, - 56;3; 1.460671,-0.139217, 4.073730;;, - 57;3; 1.460671,-0.139217, 4.073730;;, - 58;3; 1.460671,-0.139217, 4.073730;;, - 59;3; 1.460671,-0.139217, 4.073730;;, - 60;3; 1.460671,-0.139217, 4.073730;;, - 61;3; 1.460671,-0.139217, 4.073730;;, - 62;3; 1.460671,-0.139217, 4.073730;;, - 63;3; 1.460671,-0.139217, 4.073730;;, - 64;3; 1.460671,-0.139217, 4.073730;;, - 65;3; 1.460671,-0.139217, 4.073730;;, - 66;3; 1.460671,-0.139217, 4.073730;;, - 67;3; 1.460671,-0.139217, 4.073730;;, - 68;3; 1.460671,-0.139217, 4.073730;;, - 69;3; 1.460671,-0.139217, 4.073730;;, - 70;3; 1.460671,-0.139217, 4.073730;;, - 71;3; 1.460671,-0.139217, 4.073730;;, - 72;3; 1.460671,-0.139217, 4.073730;;, - 73;3; 1.460671,-0.139217, 4.073730;;, - 74;3; 1.460671,-0.139217, 4.073730;;, - 75;3; 1.460671,-0.139217, 4.073730;;, - 76;3; 1.460671,-0.139217, 4.073730;;, - 77;3; 1.460671,-0.139217, 4.073730;;, - 78;3; 1.460671,-0.139217, 4.073730;;, - 79;3; 1.460671,-0.139217, 4.073730;;, - 80;3; 1.460671,-0.139217, 4.073730;;, - 81;3; 1.460671,-0.139217, 4.073730;;, - 82;3; 1.460671,-0.139217, 4.073730;;, - 83;3; 1.460671,-0.139217, 4.073730;;, - 84;3; 1.460671,-0.139217, 4.073730;;, - 85;3; 1.460671,-0.139217, 4.073730;;, - 86;3; 1.460671,-0.139217, 4.073730;;, - 87;3; 1.460671,-0.139217, 4.073730;;, - 88;3; 1.460671,-0.139217, 4.073730;;, - 89;3; 1.460671,-0.139217, 4.073730;;, - 90;3; 1.460671,-0.139217, 4.073730;;, - 91;3; 1.460671,-0.139217, 4.073730;;, - 92;3; 1.460671,-0.139217, 4.073730;;, - 93;3; 1.460671,-0.139217, 4.073730;;, - 94;3; 1.460671,-0.139217, 4.073730;;, - 95;3; 1.460671,-0.139217, 4.073730;;, - 96;3; 1.460671,-0.139217, 4.073730;;, - 97;3; 1.460671,-0.139217, 4.073730;;, - 98;3; 1.460671,-0.139217, 4.073730;;, - 99;3; 1.460671,-0.139217, 4.073730;;, - 100;3; 1.460671,-0.139217, 4.073730;;, - 101;3; 1.460671,-0.139217, 4.073730;;, - 102;3; 1.460671,-0.139217, 4.073730;;, - 103;3; 1.460671,-0.139217, 4.073730;;, - 104;3; 1.460671,-0.139217, 4.073730;;, - 105;3; 1.460671,-0.139217, 4.073730;;, - 106;3; 1.460671,-0.139217, 4.073730;;, - 107;3; 1.460671,-0.139217, 4.073730;;, - 108;3; 1.460671,-0.139217, 4.073730;;, - 109;3; 1.460671,-0.139217, 4.073730;;, - 110;3; 1.460671,-0.139217, 4.073730;;, - 111;3; 1.460671,-0.139217, 4.073730;;, - 112;3; 1.460671,-0.139217, 4.073730;;, - 113;3; 1.460671,-0.139217, 4.073730;;, - 114;3; 1.460671,-0.139217, 4.073730;;, - 115;3; 1.460671,-0.139217, 4.073730;;, - 116;3; 1.460671,-0.139217, 4.073730;;, - 117;3; 1.460671,-0.139217, 4.073730;;, - 118;3; 1.460671,-0.139217, 4.073730;;, - 119;3; 1.460671,-0.139217, 4.073730;;, - 120;3; 1.460671,-0.139217, 4.073730;;, - 121;3; 1.460671,-0.139217, 4.073730;;, - 122;3; 1.460671,-0.139217, 4.073730;;, - 123;3; 1.460671,-0.139217, 4.073730;;, - 124;3; 1.460671,-0.139217, 4.073730;;, - 125;3; 1.460671,-0.139217, 4.073730;;, - 126;3; 1.460671,-0.139217, 4.073730;;, - 127;3; 1.460671,-0.139217, 4.073730;;, - 128;3; 1.460671,-0.139217, 4.073730;;, - 129;3; 1.460671,-0.139217, 4.073730;;, - 130;3; 1.460671,-0.139217, 4.073730;;, - 131;3; 1.460671,-0.139217, 4.073730;;, - 132;3; 1.460671,-0.139217, 4.073730;;, - 133;3; 1.460671,-0.139217, 4.073730;;, - 134;3; 1.460671,-0.139217, 4.073730;;, - 135;3; 1.460671,-0.139217, 4.073730;;, - 136;3; 1.460671,-0.139217, 4.073730;;, - 137;3; 1.460671,-0.139217, 4.073730;;, - 138;3; 1.460671,-0.139217, 4.073730;;, - 139;3; 1.460671,-0.139217, 4.073730;;, - 140;3; 1.460671,-0.139217, 4.073730;;, - 141;3; 1.460671,-0.139217, 4.073730;;, - 142;3; 1.460671,-0.139217, 4.073730;;, - 143;3; 1.460671,-0.139217, 4.073730;;, - 144;3; 1.460671,-0.139217, 4.073730;;, - 145;3; 1.460671,-0.139217, 4.073730;;, - 146;3; 1.460671,-0.139217, 4.073730;;, - 147;3; 1.460671,-0.139217, 4.073730;;, - 148;3; 1.460671,-0.139217, 4.073730;;, - 149;3; 1.460671,-0.139217, 4.073730;;, - 150;3; 1.460671,-0.139217, 4.073730;;, - 151;3; 1.460671,-0.139217, 4.073730;;, - 152;3; 1.460671,-0.139217, 4.073730;;, - 153;3; 1.460671,-0.139217, 4.073730;;, - 154;3; 1.460671,-0.139217, 4.073730;;, - 155;3; 1.460671,-0.139217, 4.073730;;, - 156;3; 1.460671,-0.139217, 4.073730;;, - 157;3; 1.460671,-0.139217, 4.073730;;, - 158;3; 1.460671,-0.139217, 4.073730;;, - 159;3; 1.460671,-0.139217, 4.073730;;, - 160;3; 1.460671,-0.139217, 4.073730;;, - 161;3; 1.460671,-0.139217, 4.073730;;, - 162;3; 1.460671,-0.139217, 4.073730;;, - 163;3; 1.460671,-0.139217, 4.073730;;, - 164;3; 1.460671,-0.139217, 4.073730;;, - 165;3; 1.460671,-0.139217, 4.073730;;, - 166;3; 1.460671,-0.139217, 4.073730;;, - 167;3; 1.460671,-0.139217, 4.073730;;, - 168;3; 1.460671,-0.139217, 4.073730;;, - 169;3; 1.460671,-0.139217, 4.073730;;, - 170;3; 1.460671,-0.139217, 4.073730;;, - 171;3; 1.460671,-0.139217, 4.073730;;, - 172;3; 1.460671,-0.139217, 4.073730;;, - 173;3; 1.460671,-0.139217, 4.073730;;, - 174;3; 1.460671,-0.139217, 4.073730;;, - 175;3; 1.460671,-0.139217, 4.073730;;, - 176;3; 1.460671,-0.139217, 4.073730;;, - 177;3; 1.460671,-0.139217, 4.073730;;, - 178;3; 1.460671,-0.139217, 4.073730;;, - 179;3; 1.460671,-0.139217, 4.073730;;, - 180;3; 1.460671,-0.139217, 4.073730;;, - 181;3; 1.460671,-0.139217, 4.073730;;, - 182;3; 1.460671,-0.139217, 4.073730;;, - 183;3; 1.460671,-0.139217, 4.073730;;, - 184;3; 1.460671,-0.139217, 4.073730;;, - 185;3; 1.460671,-0.139217, 4.073730;;, - 186;3; 1.460671,-0.139217, 4.073730;;, - 187;3; 1.460671,-0.139217, 4.073730;;, - 188;3; 1.460671,-0.139217, 4.073730;;; - } - } - Animation { - {Armature_Bone_002} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 1;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 2;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 3;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 4;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 5;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 6;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 7;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 8;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 9;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 10;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 11;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 12;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 13;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 14;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 15;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 16;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 17;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 18;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 19;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 20;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 21;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 22;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 23;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 24;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 25;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 26;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 27;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 28;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 29;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 30;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 31;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 32;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 33;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 34;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 35;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 36;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 37;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 38;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 39;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 40;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 41;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 42;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 43;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 44;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 45;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 46;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 47;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 48;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 49;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 50;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 51;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 52;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 53;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 54;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 55;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 56;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 57;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 58;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 59;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 60;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 61;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 62;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 63;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 64;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 65;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 66;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 67;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 68;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 69;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 70;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 71;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 72;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 73;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 74;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 75;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 76;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 77;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 78;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 79;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, - 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, - 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, - 84;4; 0.235816, 0.968955, 0.000000,-0.000000;;, - 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, - 86;4; 0.247344, 0.965926, 0.000000,-0.000000;;, - 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, - 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, - 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, - 90;4; 0.000000, 0.965926, 0.000000,-0.000000;;, - 91;4;-0.083204, 0.965926,-0.000000,-0.000000;;, - 92;4;-0.156652, 0.965926,-0.000000,-0.000000;;, - 93;4;-0.212807, 0.965926,-0.000000,-0.000000;;, - 94;4;-0.247343, 0.965926,-0.000000,-0.000000;;, - 95;4;-0.258819, 0.965926,-0.000000,-0.000000;;, - 96;4;-0.235815, 0.968955,-0.000000,-0.000000;;, - 97;4;-0.171026, 0.977486,-0.000000,-0.000000;;, - 98;4;-0.087830, 0.988440,-0.000000,-0.000000;;, - 99;4;-0.023017, 0.996971,-0.000000,-0.000000;;, - 100;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 101;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 102;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 103;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 104;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 105;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 106;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 107;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 108;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 109;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 110;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 111;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 112;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 113;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 114;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 115;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 116;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 117;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 118;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 119;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 120;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 121;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 122;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 123;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 124;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 125;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 126;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 127;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 128;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 129;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 130;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 131;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 132;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 133;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 134;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 135;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 136;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 137;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 138;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 139;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 140;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 141;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 142;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 143;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 144;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 145;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 146;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 147;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 148;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 149;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 150;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 151;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 152;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 153;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 154;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 155;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 156;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 157;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 158;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 159;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 160;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 161;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 162;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 163;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 164;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 165;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 166;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 167;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 168;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 169;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 1.460671,-0.139216,-3.633328;;, - 1;3; 1.460671,-0.139216,-3.633328;;, - 2;3; 1.460671,-0.139216,-3.633328;;, - 3;3; 1.460671,-0.139216,-3.633328;;, - 4;3; 1.460671,-0.139216,-3.633328;;, - 5;3; 1.460671,-0.139216,-3.633328;;, - 6;3; 1.460671,-0.139216,-3.633328;;, - 7;3; 1.460671,-0.139216,-3.633328;;, - 8;3; 1.460671,-0.139216,-3.633328;;, - 9;3; 1.460671,-0.139216,-3.633328;;, - 10;3; 1.460671,-0.139216,-3.633328;;, - 11;3; 1.460671,-0.139216,-3.633328;;, - 12;3; 1.460671,-0.139216,-3.633328;;, - 13;3; 1.460671,-0.139216,-3.633328;;, - 14;3; 1.460671,-0.139216,-3.633328;;, - 15;3; 1.460671,-0.139216,-3.633328;;, - 16;3; 1.460671,-0.139216,-3.633328;;, - 17;3; 1.460671,-0.139216,-3.633328;;, - 18;3; 1.460671,-0.139216,-3.633328;;, - 19;3; 1.460671,-0.139216,-3.633328;;, - 20;3; 1.460671,-0.139216,-3.633328;;, - 21;3; 1.460671,-0.139216,-3.633328;;, - 22;3; 1.460671,-0.139216,-3.633328;;, - 23;3; 1.460671,-0.139216,-3.633328;;, - 24;3; 1.460671,-0.139216,-3.633328;;, - 25;3; 1.460671,-0.139216,-3.633328;;, - 26;3; 1.460671,-0.139216,-3.633328;;, - 27;3; 1.460671,-0.139216,-3.633328;;, - 28;3; 1.460671,-0.139216,-3.633328;;, - 29;3; 1.460671,-0.139216,-3.633328;;, - 30;3; 1.460671,-0.139216,-3.633328;;, - 31;3; 1.460671,-0.139216,-3.633328;;, - 32;3; 1.460671,-0.139216,-3.633328;;, - 33;3; 1.460671,-0.139216,-3.633328;;, - 34;3; 1.460671,-0.139216,-3.633328;;, - 35;3; 1.460671,-0.139216,-3.633328;;, - 36;3; 1.460671,-0.139216,-3.633328;;, - 37;3; 1.460671,-0.139216,-3.633328;;, - 38;3; 1.460671,-0.139216,-3.633328;;, - 39;3; 1.460671,-0.139216,-3.633328;;, - 40;3; 1.460671,-0.139216,-3.633328;;, - 41;3; 1.460671,-0.139216,-3.633328;;, - 42;3; 1.460671,-0.139216,-3.633328;;, - 43;3; 1.460671,-0.139216,-3.633328;;, - 44;3; 1.460671,-0.139216,-3.633328;;, - 45;3; 1.460671,-0.139216,-3.633328;;, - 46;3; 1.460671,-0.139216,-3.633328;;, - 47;3; 1.460671,-0.139216,-3.633328;;, - 48;3; 1.460671,-0.139216,-3.633328;;, - 49;3; 1.460671,-0.139216,-3.633328;;, - 50;3; 1.460671,-0.139216,-3.633328;;, - 51;3; 1.460671,-0.139216,-3.633328;;, - 52;3; 1.460671,-0.139216,-3.633328;;, - 53;3; 1.460671,-0.139216,-3.633328;;, - 54;3; 1.460671,-0.139216,-3.633328;;, - 55;3; 1.460671,-0.139216,-3.633328;;, - 56;3; 1.460671,-0.139216,-3.633328;;, - 57;3; 1.460671,-0.139216,-3.633328;;, - 58;3; 1.460671,-0.139216,-3.633328;;, - 59;3; 1.460671,-0.139216,-3.633328;;, - 60;3; 1.460671,-0.139216,-3.633328;;, - 61;3; 1.460671,-0.139216,-3.633328;;, - 62;3; 1.460671,-0.139216,-3.633328;;, - 63;3; 1.460671,-0.139216,-3.633328;;, - 64;3; 1.460671,-0.139216,-3.633328;;, - 65;3; 1.460671,-0.139216,-3.633328;;, - 66;3; 1.460671,-0.139216,-3.633328;;, - 67;3; 1.460671,-0.139216,-3.633328;;, - 68;3; 1.460671,-0.139216,-3.633328;;, - 69;3; 1.460671,-0.139216,-3.633328;;, - 70;3; 1.460671,-0.139216,-3.633328;;, - 71;3; 1.460671,-0.139216,-3.633328;;, - 72;3; 1.460671,-0.139216,-3.633328;;, - 73;3; 1.460671,-0.139216,-3.633328;;, - 74;3; 1.460671,-0.139216,-3.633328;;, - 75;3; 1.460671,-0.139216,-3.633328;;, - 76;3; 1.460671,-0.139216,-3.633328;;, - 77;3; 1.460671,-0.139216,-3.633328;;, - 78;3; 1.460671,-0.139216,-3.633328;;, - 79;3; 1.460671,-0.139216,-3.633328;;, - 80;3; 1.460671,-0.139216,-3.633328;;, - 81;3; 1.460671,-0.139216,-3.633328;;, - 82;3; 1.460671,-0.139216,-3.633328;;, - 83;3; 1.460671,-0.139216,-3.633328;;, - 84;3; 1.460671,-0.139216,-3.633328;;, - 85;3; 1.460671,-0.139216,-3.633328;;, - 86;3; 1.460671,-0.139216,-3.633328;;, - 87;3; 1.460671,-0.139216,-3.633328;;, - 88;3; 1.460671,-0.139216,-3.633328;;, - 89;3; 1.460671,-0.139216,-3.633328;;, - 90;3; 1.460671,-0.139216,-3.633328;;, - 91;3; 1.460671,-0.139216,-3.633328;;, - 92;3; 1.460671,-0.139216,-3.633328;;, - 93;3; 1.460671,-0.139216,-3.633328;;, - 94;3; 1.460671,-0.139216,-3.633328;;, - 95;3; 1.460671,-0.139216,-3.633328;;, - 96;3; 1.460671,-0.139216,-3.633328;;, - 97;3; 1.460671,-0.139216,-3.633328;;, - 98;3; 1.460671,-0.139216,-3.633328;;, - 99;3; 1.460671,-0.139216,-3.633328;;, - 100;3; 1.460671,-0.139216,-3.633328;;, - 101;3; 1.460671,-0.139216,-3.633328;;, - 102;3; 1.460671,-0.139216,-3.633328;;, - 103;3; 1.460671,-0.139216,-3.633328;;, - 104;3; 1.460671,-0.139216,-3.633328;;, - 105;3; 1.460671,-0.139216,-3.633328;;, - 106;3; 1.460671,-0.139216,-3.633328;;, - 107;3; 1.460671,-0.139216,-3.633328;;, - 108;3; 1.460671,-0.139216,-3.633328;;, - 109;3; 1.460671,-0.139216,-3.633328;;, - 110;3; 1.460671,-0.139216,-3.633328;;, - 111;3; 1.460671,-0.139216,-3.633328;;, - 112;3; 1.460671,-0.139216,-3.633328;;, - 113;3; 1.460671,-0.139216,-3.633328;;, - 114;3; 1.460671,-0.139216,-3.633328;;, - 115;3; 1.460671,-0.139216,-3.633328;;, - 116;3; 1.460671,-0.139216,-3.633328;;, - 117;3; 1.460671,-0.139216,-3.633328;;, - 118;3; 1.460671,-0.139216,-3.633328;;, - 119;3; 1.460671,-0.139216,-3.633328;;, - 120;3; 1.460671,-0.139216,-3.633328;;, - 121;3; 1.460671,-0.139216,-3.633328;;, - 122;3; 1.460671,-0.139216,-3.633328;;, - 123;3; 1.460671,-0.139216,-3.633328;;, - 124;3; 1.460671,-0.139216,-3.633328;;, - 125;3; 1.460671,-0.139216,-3.633328;;, - 126;3; 1.460671,-0.139216,-3.633328;;, - 127;3; 1.460671,-0.139216,-3.633328;;, - 128;3; 1.460671,-0.139216,-3.633328;;, - 129;3; 1.460671,-0.139216,-3.633328;;, - 130;3; 1.460671,-0.139216,-3.633328;;, - 131;3; 1.460671,-0.139216,-3.633328;;, - 132;3; 1.460671,-0.139216,-3.633328;;, - 133;3; 1.460671,-0.139216,-3.633328;;, - 134;3; 1.460671,-0.139216,-3.633328;;, - 135;3; 1.460671,-0.139216,-3.633328;;, - 136;3; 1.460671,-0.139216,-3.633328;;, - 137;3; 1.460671,-0.139216,-3.633328;;, - 138;3; 1.460671,-0.139216,-3.633328;;, - 139;3; 1.460671,-0.139216,-3.633328;;, - 140;3; 1.460671,-0.139216,-3.633328;;, - 141;3; 1.460671,-0.139216,-3.633328;;, - 142;3; 1.460671,-0.139216,-3.633328;;, - 143;3; 1.460671,-0.139216,-3.633328;;, - 144;3; 1.460671,-0.139216,-3.633328;;, - 145;3; 1.460671,-0.139216,-3.633328;;, - 146;3; 1.460671,-0.139216,-3.633328;;, - 147;3; 1.460671,-0.139216,-3.633328;;, - 148;3; 1.460671,-0.139216,-3.633328;;, - 149;3; 1.460671,-0.139216,-3.633328;;, - 150;3; 1.460671,-0.139216,-3.633328;;, - 151;3; 1.460671,-0.139216,-3.633328;;, - 152;3; 1.460671,-0.139216,-3.633328;;, - 153;3; 1.460671,-0.139216,-3.633328;;, - 154;3; 1.460671,-0.139216,-3.633328;;, - 155;3; 1.460671,-0.139216,-3.633328;;, - 156;3; 1.460671,-0.139216,-3.633328;;, - 157;3; 1.460671,-0.139216,-3.633328;;, - 158;3; 1.460671,-0.139216,-3.633328;;, - 159;3; 1.460671,-0.139216,-3.633328;;, - 160;3; 1.460671,-0.139216,-3.633328;;, - 161;3; 1.460671,-0.139216,-3.633328;;, - 162;3; 1.460671,-0.139216,-3.633328;;, - 163;3; 1.460671,-0.139216,-3.633328;;, - 164;3; 1.460671,-0.139216,-3.633328;;, - 165;3; 1.460671,-0.139216,-3.633328;;, - 166;3; 1.460671,-0.139216,-3.633328;;, - 167;3; 1.460671,-0.139216,-3.633328;;, - 168;3; 1.460671,-0.139216,-3.633328;;, - 169;3; 1.460671,-0.139216,-3.633328;;, - 170;3; 1.460671,-0.139216,-3.633328;;, - 171;3; 1.460671,-0.139216,-3.633328;;, - 172;3; 1.460671,-0.139216,-3.633328;;, - 173;3; 1.460671,-0.139216,-3.633328;;, - 174;3; 1.460671,-0.139216,-3.633328;;, - 175;3; 1.460671,-0.139216,-3.633328;;, - 176;3; 1.460671,-0.139216,-3.633328;;, - 177;3; 1.460671,-0.139216,-3.633328;;, - 178;3; 1.460671,-0.139216,-3.633328;;, - 179;3; 1.460671,-0.139216,-3.633328;;, - 180;3; 1.460671,-0.139216,-3.633328;;, - 181;3; 1.460671,-0.139216,-3.633328;;, - 182;3; 1.460671,-0.139216,-3.633328;;, - 183;3; 1.460671,-0.139216,-3.633328;;, - 184;3; 1.460671,-0.139216,-3.633328;;, - 185;3; 1.460671,-0.139216,-3.633328;;, - 186;3; 1.460671,-0.139216,-3.633328;;, - 187;3; 1.460671,-0.139216,-3.633328;;, - 188;3; 1.460671,-0.139216,-3.633328;;; - } - } - Animation { - {Armature_Bone_003} - AnimationKey { // Rotation - 0; - 189; - 0;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 1;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 2;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 3;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 4;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 5;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 6;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 7;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 8;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 9;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 10;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 11;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 12;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 13;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 14;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 15;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 16;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 17;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 18;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 19;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 20;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 21;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 22;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 23;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 24;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 25;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 26;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 27;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 28;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 29;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 30;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 31;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 32;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 33;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 34;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 35;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 36;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 37;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 38;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 39;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 40;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 41;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 42;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 43;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 44;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 45;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 46;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 47;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 48;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 49;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 50;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 51;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 52;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 53;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 54;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 55;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 56;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 57;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 58;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 59;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 60;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 61;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 62;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 63;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 64;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 65;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 66;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 67;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 68;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 69;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 70;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 71;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 72;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 73;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 74;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 75;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 76;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 77;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 78;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 79;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.023017, 0.996971, 0.000000,-0.000000;;, - 82;4; 0.087830, 0.988440, 0.000000,-0.000000;;, - 83;4; 0.171026, 0.977486, 0.000000,-0.000000;;, - 84;4; 0.235815, 0.968955, 0.000000,-0.000000;;, - 85;4; 0.258819, 0.965926, 0.000000,-0.000000;;, - 86;4; 0.247344, 0.965926, 0.000000,-0.000000;;, - 87;4; 0.212807, 0.965926, 0.000000,-0.000000;;, - 88;4; 0.156652, 0.965926, 0.000000,-0.000000;;, - 89;4; 0.083204, 0.965926, 0.000000,-0.000000;;, - 90;4;-0.000000, 0.965926, 0.000000,-0.000000;;, - 91;4;-0.083204, 0.965926,-0.000000,-0.000000;;, - 92;4;-0.156652, 0.965926,-0.000000,-0.000000;;, - 93;4;-0.212807, 0.965926,-0.000000,-0.000000;;, - 94;4;-0.247343, 0.965926,-0.000000,-0.000000;;, - 95;4;-0.258819, 0.965926,-0.000000,-0.000000;;, - 96;4;-0.235815, 0.968955,-0.000000,-0.000000;;, - 97;4;-0.171026, 0.977486,-0.000000,-0.000000;;, - 98;4;-0.087830, 0.988440,-0.000000,-0.000000;;, - 99;4;-0.023017, 0.996971,-0.000000,-0.000000;;, - 100;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 101;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 102;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 103;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 104;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 105;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 106;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 107;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 108;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 109;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 110;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 111;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 112;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 113;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 114;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 115;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 116;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 117;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 118;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 119;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 120;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 121;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 122;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 123;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 124;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 125;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 126;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 127;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 128;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 129;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 130;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 131;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 132;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 133;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 134;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 135;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 136;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 137;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 138;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 139;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 140;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 141;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 142;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 143;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 144;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 145;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 146;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 147;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 148;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 149;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 150;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 151;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 152;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 153;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 154;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 155;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 156;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 157;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 158;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 159;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 160;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 161;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 162;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 163;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 164;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 165;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 166;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 167;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 168;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 169;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 170;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 171;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 172;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 173;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 174;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 175;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 176;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 177;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 178;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 179;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 180;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 181;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 182;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 183;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 184;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 185;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 186;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 187;4;-0.000000, 1.000000, 0.000000,-0.000000;;, - 188;4;-0.000000, 1.000000, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-1.438651,-0.139217, 4.073730;;, - 1;3;-1.438651,-0.139217, 4.073730;;, - 2;3;-1.438651,-0.139217, 4.073730;;, - 3;3;-1.438651,-0.139217, 4.073730;;, - 4;3;-1.438651,-0.139217, 4.073730;;, - 5;3;-1.438651,-0.139217, 4.073730;;, - 6;3;-1.438651,-0.139217, 4.073730;;, - 7;3;-1.438651,-0.139217, 4.073730;;, - 8;3;-1.438651,-0.139217, 4.073730;;, - 9;3;-1.438651,-0.139217, 4.073730;;, - 10;3;-1.438651,-0.139217, 4.073730;;, - 11;3;-1.438651,-0.139217, 4.073730;;, - 12;3;-1.438651,-0.139217, 4.073730;;, - 13;3;-1.438651,-0.139217, 4.073730;;, - 14;3;-1.438651,-0.139217, 4.073730;;, - 15;3;-1.438651,-0.139217, 4.073730;;, - 16;3;-1.438651,-0.139217, 4.073730;;, - 17;3;-1.438651,-0.139217, 4.073730;;, - 18;3;-1.438651,-0.139217, 4.073730;;, - 19;3;-1.438651,-0.139217, 4.073730;;, - 20;3;-1.438651,-0.139217, 4.073730;;, - 21;3;-1.438651,-0.139217, 4.073730;;, - 22;3;-1.438651,-0.139217, 4.073730;;, - 23;3;-1.438651,-0.139217, 4.073730;;, - 24;3;-1.438651,-0.139217, 4.073730;;, - 25;3;-1.438651,-0.139217, 4.073730;;, - 26;3;-1.438651,-0.139217, 4.073730;;, - 27;3;-1.438651,-0.139217, 4.073730;;, - 28;3;-1.438651,-0.139217, 4.073730;;, - 29;3;-1.438651,-0.139217, 4.073730;;, - 30;3;-1.438651,-0.139217, 4.073730;;, - 31;3;-1.438651,-0.139217, 4.073730;;, - 32;3;-1.438651,-0.139217, 4.073730;;, - 33;3;-1.438651,-0.139217, 4.073730;;, - 34;3;-1.438651,-0.139217, 4.073730;;, - 35;3;-1.438651,-0.139217, 4.073730;;, - 36;3;-1.438651,-0.139217, 4.073730;;, - 37;3;-1.438651,-0.139217, 4.073730;;, - 38;3;-1.438651,-0.139217, 4.073730;;, - 39;3;-1.438651,-0.139217, 4.073730;;, - 40;3;-1.438651,-0.139217, 4.073730;;, - 41;3;-1.438651,-0.139217, 4.073730;;, - 42;3;-1.438651,-0.139217, 4.073730;;, - 43;3;-1.438651,-0.139217, 4.073730;;, - 44;3;-1.438651,-0.139217, 4.073730;;, - 45;3;-1.438651,-0.139217, 4.073730;;, - 46;3;-1.438651,-0.139217, 4.073730;;, - 47;3;-1.438651,-0.139217, 4.073730;;, - 48;3;-1.438651,-0.139217, 4.073730;;, - 49;3;-1.438651,-0.139217, 4.073730;;, - 50;3;-1.438651,-0.139217, 4.073730;;, - 51;3;-1.438651,-0.139217, 4.073730;;, - 52;3;-1.438651,-0.139217, 4.073730;;, - 53;3;-1.438651,-0.139217, 4.073730;;, - 54;3;-1.438651,-0.139217, 4.073730;;, - 55;3;-1.438651,-0.139217, 4.073730;;, - 56;3;-1.438651,-0.139217, 4.073730;;, - 57;3;-1.438651,-0.139217, 4.073730;;, - 58;3;-1.438651,-0.139217, 4.073730;;, - 59;3;-1.438651,-0.139217, 4.073730;;, - 60;3;-1.438651,-0.139217, 4.073730;;, - 61;3;-1.438651,-0.139217, 4.073730;;, - 62;3;-1.438651,-0.139217, 4.073730;;, - 63;3;-1.438651,-0.139217, 4.073730;;, - 64;3;-1.438651,-0.139217, 4.073730;;, - 65;3;-1.438651,-0.139217, 4.073730;;, - 66;3;-1.438651,-0.139217, 4.073730;;, - 67;3;-1.438651,-0.139217, 4.073730;;, - 68;3;-1.438651,-0.139217, 4.073730;;, - 69;3;-1.438651,-0.139217, 4.073730;;, - 70;3;-1.438651,-0.139217, 4.073730;;, - 71;3;-1.438651,-0.139217, 4.073730;;, - 72;3;-1.438651,-0.139217, 4.073730;;, - 73;3;-1.438651,-0.139217, 4.073730;;, - 74;3;-1.438651,-0.139217, 4.073730;;, - 75;3;-1.438651,-0.139217, 4.073730;;, - 76;3;-1.438651,-0.139217, 4.073730;;, - 77;3;-1.438651,-0.139217, 4.073730;;, - 78;3;-1.438651,-0.139217, 4.073730;;, - 79;3;-1.438651,-0.139217, 4.073730;;, - 80;3;-1.438651,-0.139217, 4.073730;;, - 81;3;-1.438651,-0.139217, 4.073730;;, - 82;3;-1.438651,-0.139217, 4.073730;;, - 83;3;-1.438651,-0.139217, 4.073730;;, - 84;3;-1.438651,-0.139217, 4.073730;;, - 85;3;-1.438651,-0.139217, 4.073730;;, - 86;3;-1.438651,-0.139217, 4.073730;;, - 87;3;-1.438651,-0.139217, 4.073730;;, - 88;3;-1.438651,-0.139217, 4.073730;;, - 89;3;-1.438651,-0.139217, 4.073730;;, - 90;3;-1.438651,-0.139217, 4.073730;;, - 91;3;-1.438651,-0.139217, 4.073730;;, - 92;3;-1.438651,-0.139217, 4.073730;;, - 93;3;-1.438651,-0.139217, 4.073730;;, - 94;3;-1.438651,-0.139217, 4.073730;;, - 95;3;-1.438651,-0.139217, 4.073730;;, - 96;3;-1.438651,-0.139217, 4.073730;;, - 97;3;-1.438651,-0.139217, 4.073730;;, - 98;3;-1.438651,-0.139217, 4.073730;;, - 99;3;-1.438651,-0.139217, 4.073730;;, - 100;3;-1.438651,-0.139217, 4.073730;;, - 101;3;-1.438651,-0.139217, 4.073730;;, - 102;3;-1.438651,-0.139217, 4.073730;;, - 103;3;-1.438651,-0.139217, 4.073730;;, - 104;3;-1.438651,-0.139217, 4.073730;;, - 105;3;-1.438651,-0.139217, 4.073730;;, - 106;3;-1.438651,-0.139217, 4.073730;;, - 107;3;-1.438651,-0.139217, 4.073730;;, - 108;3;-1.438651,-0.139217, 4.073730;;, - 109;3;-1.438651,-0.139217, 4.073730;;, - 110;3;-1.438651,-0.139217, 4.073730;;, - 111;3;-1.438651,-0.139217, 4.073730;;, - 112;3;-1.438651,-0.139217, 4.073730;;, - 113;3;-1.438651,-0.139217, 4.073730;;, - 114;3;-1.438651,-0.139217, 4.073730;;, - 115;3;-1.438651,-0.139217, 4.073730;;, - 116;3;-1.438651,-0.139217, 4.073730;;, - 117;3;-1.438651,-0.139217, 4.073730;;, - 118;3;-1.438651,-0.139217, 4.073730;;, - 119;3;-1.438651,-0.139217, 4.073730;;, - 120;3;-1.438651,-0.139217, 4.073730;;, - 121;3;-1.438651,-0.139217, 4.073730;;, - 122;3;-1.438651,-0.139217, 4.073730;;, - 123;3;-1.438651,-0.139217, 4.073730;;, - 124;3;-1.438651,-0.139217, 4.073730;;, - 125;3;-1.438651,-0.139217, 4.073730;;, - 126;3;-1.438651,-0.139217, 4.073730;;, - 127;3;-1.438651,-0.139217, 4.073730;;, - 128;3;-1.438651,-0.139217, 4.073730;;, - 129;3;-1.438651,-0.139217, 4.073730;;, - 130;3;-1.438651,-0.139217, 4.073730;;, - 131;3;-1.438651,-0.139217, 4.073730;;, - 132;3;-1.438651,-0.139217, 4.073730;;, - 133;3;-1.438651,-0.139217, 4.073730;;, - 134;3;-1.438651,-0.139217, 4.073730;;, - 135;3;-1.438651,-0.139217, 4.073730;;, - 136;3;-1.438651,-0.139217, 4.073730;;, - 137;3;-1.438651,-0.139217, 4.073730;;, - 138;3;-1.438651,-0.139217, 4.073730;;, - 139;3;-1.438651,-0.139217, 4.073730;;, - 140;3;-1.438651,-0.139217, 4.073730;;, - 141;3;-1.438651,-0.139217, 4.073730;;, - 142;3;-1.438651,-0.139217, 4.073730;;, - 143;3;-1.438651,-0.139217, 4.073730;;, - 144;3;-1.438651,-0.139217, 4.073730;;, - 145;3;-1.438651,-0.139217, 4.073730;;, - 146;3;-1.438651,-0.139217, 4.073730;;, - 147;3;-1.438651,-0.139217, 4.073730;;, - 148;3;-1.438651,-0.139217, 4.073730;;, - 149;3;-1.438651,-0.139217, 4.073730;;, - 150;3;-1.438651,-0.139217, 4.073730;;, - 151;3;-1.438651,-0.139217, 4.073730;;, - 152;3;-1.438651,-0.139217, 4.073730;;, - 153;3;-1.438651,-0.139217, 4.073730;;, - 154;3;-1.438651,-0.139217, 4.073730;;, - 155;3;-1.438651,-0.139217, 4.073730;;, - 156;3;-1.438651,-0.139217, 4.073730;;, - 157;3;-1.438651,-0.139217, 4.073730;;, - 158;3;-1.438651,-0.139217, 4.073730;;, - 159;3;-1.438651,-0.139217, 4.073730;;, - 160;3;-1.438651,-0.139217, 4.073730;;, - 161;3;-1.438651,-0.139217, 4.073730;;, - 162;3;-1.438651,-0.139217, 4.073730;;, - 163;3;-1.438651,-0.139217, 4.073730;;, - 164;3;-1.438651,-0.139217, 4.073730;;, - 165;3;-1.438651,-0.139217, 4.073730;;, - 166;3;-1.438651,-0.139217, 4.073730;;, - 167;3;-1.438651,-0.139217, 4.073730;;, - 168;3;-1.438651,-0.139217, 4.073730;;, - 169;3;-1.438651,-0.139217, 4.073730;;, - 170;3;-1.438651,-0.139217, 4.073730;;, - 171;3;-1.438651,-0.139217, 4.073730;;, - 172;3;-1.438651,-0.139217, 4.073730;;, - 173;3;-1.438651,-0.139217, 4.073730;;, - 174;3;-1.438651,-0.139217, 4.073730;;, - 175;3;-1.438651,-0.139217, 4.073730;;, - 176;3;-1.438651,-0.139217, 4.073730;;, - 177;3;-1.438651,-0.139217, 4.073730;;, - 178;3;-1.438651,-0.139217, 4.073730;;, - 179;3;-1.438651,-0.139217, 4.073730;;, - 180;3;-1.438651,-0.139217, 4.073730;;, - 181;3;-1.438651,-0.139217, 4.073730;;, - 182;3;-1.438651,-0.139217, 4.073730;;, - 183;3;-1.438651,-0.139217, 4.073730;;, - 184;3;-1.438651,-0.139217, 4.073730;;, - 185;3;-1.438651,-0.139217, 4.073730;;, - 186;3;-1.438651,-0.139217, 4.073730;;, - 187;3;-1.438651,-0.139217, 4.073730;;, - 188;3;-1.438651,-0.139217, 4.073730;;; - } - } - Animation { - {Armature_RR_leg} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 1;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 2;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 3;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 4;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 5;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 6;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 7;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 8;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 9;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 10;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 11;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 12;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 13;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 14;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 15;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 16;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 17;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 18;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 19;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 20;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 21;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 22;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 23;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 24;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 25;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 26;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 27;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 28;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 29;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 30;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 31;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 32;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 33;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 34;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 35;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 36;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 37;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 38;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 39;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 40;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 41;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 42;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 43;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 44;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 45;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 46;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 47;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 48;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 49;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 50;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 51;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 52;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 53;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 54;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 55;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 56;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 57;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 58;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 59;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 60;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 61;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 62;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 63;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 64;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 65;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 66;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 67;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 68;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 69;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 70;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 71;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 72;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 73;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 74;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 75;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 76;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 77;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 78;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 79;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 81;4;-0.023017, 0.996971,-0.000000,-0.000000;;, - 82;4;-0.087830, 0.988440,-0.000000,-0.000000;;, - 83;4;-0.171026, 0.977486,-0.000000,-0.000000;;, - 84;4;-0.235815, 0.968955,-0.000000,-0.000000;;, - 85;4;-0.258819, 0.965926,-0.000000,-0.000000;;, - 86;4;-0.247343, 0.965926,-0.000000,-0.000000;;, - 87;4;-0.212807, 0.965926,-0.000000,-0.000000;;, - 88;4;-0.156652, 0.965926,-0.000000,-0.000000;;, - 89;4;-0.083204, 0.965926,-0.000000,-0.000000;;, - 90;4; 0.000000, 0.965926, 0.000000,-0.000000;;, - 91;4; 0.083204, 0.965926, 0.000000,-0.000000;;, - 92;4; 0.156652, 0.965926, 0.000000,-0.000000;;, - 93;4; 0.212807, 0.965926, 0.000000,-0.000000;;, - 94;4; 0.247344, 0.965926, 0.000000,-0.000000;;, - 95;4; 0.258819, 0.965926, 0.000000,-0.000000;;, - 96;4; 0.235816, 0.968955, 0.000000,-0.000000;;, - 97;4; 0.171026, 0.977486, 0.000000,-0.000000;;, - 98;4; 0.087830, 0.988440, 0.000000,-0.000000;;, - 99;4; 0.023017, 0.996971, 0.000000,-0.000000;;, - 100;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 101;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 102;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 103;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 104;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 105;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 106;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 107;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 108;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 109;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 110;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 111;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 112;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 113;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 114;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 115;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 116;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 117;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 118;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 119;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 120;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 121;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 122;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 123;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 124;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 125;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 126;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 127;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 128;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 129;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 130;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 131;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 132;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 133;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 134;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 135;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 136;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 137;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 138;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 139;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 140;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 141;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 142;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 143;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 144;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 145;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 146;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 147;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 148;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 149;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 150;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 151;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 152;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 153;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 154;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 155;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 156;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 157;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 158;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 159;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 160;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 161;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 162;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 163;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 164;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 165;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 166;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 167;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 168;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 169;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 170;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 171;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 172;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 173;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 174;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 175;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 176;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 177;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 178;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 179;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 180;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 181;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 182;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 183;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 184;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 185;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 186;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 187;4; 0.000000, 1.000000, 0.000000,-0.000000;;, - 188;4; 0.000000, 1.000000, 0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-1.438651,-0.139216,-3.633328;;, - 1;3;-1.438651,-0.139216,-3.633328;;, - 2;3;-1.438651,-0.139216,-3.633328;;, - 3;3;-1.438651,-0.139216,-3.633328;;, - 4;3;-1.438651,-0.139216,-3.633328;;, - 5;3;-1.438651,-0.139216,-3.633328;;, - 6;3;-1.438651,-0.139216,-3.633328;;, - 7;3;-1.438651,-0.139216,-3.633328;;, - 8;3;-1.438651,-0.139216,-3.633328;;, - 9;3;-1.438651,-0.139216,-3.633328;;, - 10;3;-1.438651,-0.139216,-3.633328;;, - 11;3;-1.438651,-0.139216,-3.633328;;, - 12;3;-1.438651,-0.139216,-3.633328;;, - 13;3;-1.438651,-0.139216,-3.633328;;, - 14;3;-1.438651,-0.139216,-3.633328;;, - 15;3;-1.438651,-0.139216,-3.633328;;, - 16;3;-1.438651,-0.139216,-3.633328;;, - 17;3;-1.438651,-0.139216,-3.633328;;, - 18;3;-1.438651,-0.139216,-3.633328;;, - 19;3;-1.438651,-0.139216,-3.633328;;, - 20;3;-1.438651,-0.139216,-3.633328;;, - 21;3;-1.438651,-0.139216,-3.633328;;, - 22;3;-1.438651,-0.139216,-3.633328;;, - 23;3;-1.438651,-0.139216,-3.633328;;, - 24;3;-1.438651,-0.139216,-3.633328;;, - 25;3;-1.438651,-0.139216,-3.633328;;, - 26;3;-1.438651,-0.139216,-3.633328;;, - 27;3;-1.438651,-0.139216,-3.633328;;, - 28;3;-1.438651,-0.139216,-3.633328;;, - 29;3;-1.438651,-0.139216,-3.633328;;, - 30;3;-1.438651,-0.139216,-3.633328;;, - 31;3;-1.438651,-0.139216,-3.633328;;, - 32;3;-1.438651,-0.139216,-3.633328;;, - 33;3;-1.438651,-0.139216,-3.633328;;, - 34;3;-1.438651,-0.139216,-3.633328;;, - 35;3;-1.438651,-0.139216,-3.633328;;, - 36;3;-1.438651,-0.139216,-3.633328;;, - 37;3;-1.438651,-0.139216,-3.633328;;, - 38;3;-1.438651,-0.139216,-3.633328;;, - 39;3;-1.438651,-0.139216,-3.633328;;, - 40;3;-1.438651,-0.139216,-3.633328;;, - 41;3;-1.438651,-0.139216,-3.633328;;, - 42;3;-1.438651,-0.139216,-3.633328;;, - 43;3;-1.438651,-0.139216,-3.633328;;, - 44;3;-1.438651,-0.139216,-3.633328;;, - 45;3;-1.438651,-0.139216,-3.633328;;, - 46;3;-1.438651,-0.139216,-3.633328;;, - 47;3;-1.438651,-0.139216,-3.633328;;, - 48;3;-1.438651,-0.139216,-3.633328;;, - 49;3;-1.438651,-0.139216,-3.633328;;, - 50;3;-1.438651,-0.139216,-3.633328;;, - 51;3;-1.438651,-0.139216,-3.633328;;, - 52;3;-1.438651,-0.139216,-3.633328;;, - 53;3;-1.438651,-0.139216,-3.633328;;, - 54;3;-1.438651,-0.139216,-3.633328;;, - 55;3;-1.438651,-0.139216,-3.633328;;, - 56;3;-1.438651,-0.139216,-3.633328;;, - 57;3;-1.438651,-0.139216,-3.633328;;, - 58;3;-1.438651,-0.139216,-3.633328;;, - 59;3;-1.438651,-0.139216,-3.633328;;, - 60;3;-1.438651,-0.139216,-3.633328;;, - 61;3;-1.438651,-0.139216,-3.633328;;, - 62;3;-1.438651,-0.139216,-3.633328;;, - 63;3;-1.438651,-0.139216,-3.633328;;, - 64;3;-1.438651,-0.139216,-3.633328;;, - 65;3;-1.438651,-0.139216,-3.633328;;, - 66;3;-1.438651,-0.139216,-3.633328;;, - 67;3;-1.438651,-0.139216,-3.633328;;, - 68;3;-1.438651,-0.139216,-3.633328;;, - 69;3;-1.438651,-0.139216,-3.633328;;, - 70;3;-1.438651,-0.139216,-3.633328;;, - 71;3;-1.438651,-0.139216,-3.633328;;, - 72;3;-1.438651,-0.139216,-3.633328;;, - 73;3;-1.438651,-0.139216,-3.633328;;, - 74;3;-1.438651,-0.139216,-3.633328;;, - 75;3;-1.438651,-0.139216,-3.633328;;, - 76;3;-1.438651,-0.139216,-3.633328;;, - 77;3;-1.438651,-0.139216,-3.633328;;, - 78;3;-1.438651,-0.139216,-3.633328;;, - 79;3;-1.438651,-0.139216,-3.633328;;, - 80;3;-1.438651,-0.139216,-3.633328;;, - 81;3;-1.438651,-0.139216,-3.633328;;, - 82;3;-1.438651,-0.139216,-3.633328;;, - 83;3;-1.438651,-0.139216,-3.633328;;, - 84;3;-1.438651,-0.139216,-3.633328;;, - 85;3;-1.438651,-0.139216,-3.633328;;, - 86;3;-1.438651,-0.139216,-3.633328;;, - 87;3;-1.438651,-0.139216,-3.633328;;, - 88;3;-1.438651,-0.139216,-3.633328;;, - 89;3;-1.438651,-0.139216,-3.633328;;, - 90;3;-1.438651,-0.139216,-3.633328;;, - 91;3;-1.438651,-0.139216,-3.633328;;, - 92;3;-1.438651,-0.139216,-3.633328;;, - 93;3;-1.438651,-0.139216,-3.633328;;, - 94;3;-1.438651,-0.139216,-3.633328;;, - 95;3;-1.438651,-0.139216,-3.633328;;, - 96;3;-1.438651,-0.139216,-3.633328;;, - 97;3;-1.438651,-0.139216,-3.633328;;, - 98;3;-1.438651,-0.139216,-3.633328;;, - 99;3;-1.438651,-0.139216,-3.633328;;, - 100;3;-1.438651,-0.139216,-3.633328;;, - 101;3;-1.438651,-0.139216,-3.633328;;, - 102;3;-1.438651,-0.139216,-3.633328;;, - 103;3;-1.438651,-0.139216,-3.633328;;, - 104;3;-1.438651,-0.139216,-3.633328;;, - 105;3;-1.438651,-0.139216,-3.633328;;, - 106;3;-1.438651,-0.139216,-3.633328;;, - 107;3;-1.438651,-0.139216,-3.633328;;, - 108;3;-1.438651,-0.139216,-3.633328;;, - 109;3;-1.438651,-0.139216,-3.633328;;, - 110;3;-1.438651,-0.139216,-3.633328;;, - 111;3;-1.438651,-0.139216,-3.633328;;, - 112;3;-1.438651,-0.139216,-3.633328;;, - 113;3;-1.438651,-0.139216,-3.633328;;, - 114;3;-1.438651,-0.139216,-3.633328;;, - 115;3;-1.438651,-0.139216,-3.633328;;, - 116;3;-1.438651,-0.139216,-3.633328;;, - 117;3;-1.438651,-0.139216,-3.633328;;, - 118;3;-1.438651,-0.139216,-3.633328;;, - 119;3;-1.438651,-0.139216,-3.633328;;, - 120;3;-1.438651,-0.139216,-3.633328;;, - 121;3;-1.438651,-0.139216,-3.633328;;, - 122;3;-1.438651,-0.139216,-3.633328;;, - 123;3;-1.438651,-0.139216,-3.633328;;, - 124;3;-1.438651,-0.139216,-3.633328;;, - 125;3;-1.438651,-0.139216,-3.633328;;, - 126;3;-1.438651,-0.139216,-3.633328;;, - 127;3;-1.438651,-0.139216,-3.633328;;, - 128;3;-1.438651,-0.139216,-3.633328;;, - 129;3;-1.438651,-0.139216,-3.633328;;, - 130;3;-1.438651,-0.139216,-3.633328;;, - 131;3;-1.438651,-0.139216,-3.633328;;, - 132;3;-1.438651,-0.139216,-3.633328;;, - 133;3;-1.438651,-0.139216,-3.633328;;, - 134;3;-1.438651,-0.139216,-3.633328;;, - 135;3;-1.438651,-0.139216,-3.633328;;, - 136;3;-1.438651,-0.139216,-3.633328;;, - 137;3;-1.438651,-0.139216,-3.633328;;, - 138;3;-1.438651,-0.139216,-3.633328;;, - 139;3;-1.438651,-0.139216,-3.633328;;, - 140;3;-1.438651,-0.139216,-3.633328;;, - 141;3;-1.438651,-0.139216,-3.633328;;, - 142;3;-1.438651,-0.139216,-3.633328;;, - 143;3;-1.438651,-0.139216,-3.633328;;, - 144;3;-1.438651,-0.139216,-3.633328;;, - 145;3;-1.438651,-0.139216,-3.633328;;, - 146;3;-1.438651,-0.139216,-3.633328;;, - 147;3;-1.438651,-0.139216,-3.633328;;, - 148;3;-1.438651,-0.139216,-3.633328;;, - 149;3;-1.438651,-0.139216,-3.633328;;, - 150;3;-1.438651,-0.139216,-3.633328;;, - 151;3;-1.438651,-0.139216,-3.633328;;, - 152;3;-1.438651,-0.139216,-3.633328;;, - 153;3;-1.438651,-0.139216,-3.633328;;, - 154;3;-1.438651,-0.139216,-3.633328;;, - 155;3;-1.438651,-0.139216,-3.633328;;, - 156;3;-1.438651,-0.139216,-3.633328;;, - 157;3;-1.438651,-0.139216,-3.633328;;, - 158;3;-1.438651,-0.139216,-3.633328;;, - 159;3;-1.438651,-0.139216,-3.633328;;, - 160;3;-1.438651,-0.139216,-3.633328;;, - 161;3;-1.438651,-0.139216,-3.633328;;, - 162;3;-1.438651,-0.139216,-3.633328;;, - 163;3;-1.438651,-0.139216,-3.633328;;, - 164;3;-1.438651,-0.139216,-3.633328;;, - 165;3;-1.438651,-0.139216,-3.633328;;, - 166;3;-1.438651,-0.139216,-3.633328;;, - 167;3;-1.438651,-0.139216,-3.633328;;, - 168;3;-1.438651,-0.139216,-3.633328;;, - 169;3;-1.438651,-0.139216,-3.633328;;, - 170;3;-1.438651,-0.139216,-3.633328;;, - 171;3;-1.438651,-0.139216,-3.633328;;, - 172;3;-1.438651,-0.139216,-3.633328;;, - 173;3;-1.438651,-0.139216,-3.633328;;, - 174;3;-1.438651,-0.139216,-3.633328;;, - 175;3;-1.438651,-0.139216,-3.633328;;, - 176;3;-1.438651,-0.139216,-3.633328;;, - 177;3;-1.438651,-0.139216,-3.633328;;, - 178;3;-1.438651,-0.139216,-3.633328;;, - 179;3;-1.438651,-0.139216,-3.633328;;, - 180;3;-1.438651,-0.139216,-3.633328;;, - 181;3;-1.438651,-0.139216,-3.633328;;, - 182;3;-1.438651,-0.139216,-3.633328;;, - 183;3;-1.438651,-0.139216,-3.633328;;, - 184;3;-1.438651,-0.139216,-3.633328;;, - 185;3;-1.438651,-0.139216,-3.633328;;, - 186;3;-1.438651,-0.139216,-3.633328;;, - 187;3;-1.438651,-0.139216,-3.633328;;, - 188;3;-1.438651,-0.139216,-3.633328;;; - } - } - Animation { - {Armature_Head} - AnimationKey { // Rotation - 0; - 189; - 0;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 1;4;-0.000000, 0.000000, 0.706989, 0.707223;;, - 2;4;-0.000000, 0.000000, 0.706631, 0.707575;;, - 3;4;-0.000000, 0.000000, 0.706034, 0.708164;;, - 4;4;-0.000000, 0.000000, 0.705202, 0.708983;;, - 5;4;-0.000000, 0.000000, 0.704147, 0.710022;;, - 6;4;-0.000000, 0.000000, 0.702890, 0.711259;;, - 7;4;-0.000000, 0.000000, 0.701461, 0.712663;;, - 8;4;-0.000000, 0.000000, 0.699901, 0.714196;;, - 9;4;-0.000000, 0.000000, 0.698257, 0.715808;;, - 10;4;-0.000000, 0.000000, 0.696584, 0.717447;;, - 11;4;-0.000000, 0.000000, 0.694937, 0.719057;;, - 12;4;-0.000000, 0.000000, 0.693372, 0.720585;;, - 13;4;-0.000000, 0.000000, 0.691936, 0.721982;;, - 14;4;-0.000000, 0.000000, 0.690669, 0.723209;;, - 15;4;-0.000000, 0.000000, 0.689603, 0.724237;;, - 16;4;-0.000000, 0.000000, 0.688758, 0.725043;;, - 17;4;-0.000000, 0.000000, 0.688146, 0.725617;;, - 18;4;-0.000000, 0.000000, 0.687773, 0.725954;;, - 19;4;-0.000000, 0.000000, 0.687638, 0.726054;;, - 20;4;-0.000000, 0.000000, 0.687896, 0.725759;;, - 21;4;-0.000000, 0.000000, 0.688709, 0.724905;;, - 22;4;-0.000000, 0.000000, 0.690081, 0.723489;;, - 23;4;-0.000000, 0.000000, 0.692002, 0.721519;;, - 24;4;-0.000000, 0.000000, 0.694448, 0.719020;;, - 25;4;-0.000000, 0.000000, 0.697377, 0.716035;;, - 26;4;-0.000000, 0.000000, 0.700729, 0.712626;;, - 27;4;-0.000000, 0.000000, 0.704421, 0.708875;;, - 28;4;-0.000000, 0.000000, 0.708352, 0.704885;;, - 29;4;-0.000000, 0.000000, 0.712408, 0.700772;;, - 30;4;-0.000000, 0.000000, 0.716464, 0.696660;;, - 31;4;-0.000000, 0.000000, 0.720399, 0.692673;;, - 32;4;-0.000000, 0.000000, 0.724097, 0.688928;;, - 33;4;-0.000000, 0.000000, 0.727457, 0.685527;;, - 34;4;-0.000000, 0.000000, 0.730396, 0.682552;;, - 35;4;-0.000000, 0.000000, 0.732854, 0.680065;;, - 36;4;-0.000000, 0.000000, 0.734788, 0.678108;;, - 37;4;-0.000000, 0.000000, 0.736174, 0.676706;;, - 38;4;-0.000000, 0.000000, 0.737003, 0.675868;;, - 39;4;-0.000000, 0.000000, 0.737277, 0.675590;;, - 40;4;-0.000000, 0.000000, 0.737111, 0.675764;;, - 41;4;-0.000000, 0.000000, 0.736609, 0.676289;;, - 42;4;-0.000000, 0.000000, 0.735768, 0.677167;;, - 43;4;-0.000000, 0.000000, 0.734596, 0.678392;;, - 44;4;-0.000000, 0.000000, 0.733105, 0.679949;;, - 45;4;-0.000000, 0.000000, 0.731323, 0.681811;;, - 46;4;-0.000000, 0.000000, 0.729285, 0.683939;;, - 47;4;-0.000000, 0.000000, 0.727042, 0.686283;;, - 48;4;-0.000000, 0.000000, 0.724654, 0.688777;;, - 49;4;-0.000000, 0.000000, 0.722192, 0.691348;;, - 50;4;-0.000000, 0.000000, 0.719730, 0.693920;;, - 51;4;-0.000000, 0.000000, 0.717343, 0.696415;;, - 52;4;-0.000000, 0.000000, 0.715099, 0.698758;;, - 53;4;-0.000000, 0.000000, 0.713062, 0.700886;;, - 54;4;-0.000000, 0.000000, 0.711279, 0.702749;;, - 55;4;-0.000000, 0.000000, 0.709789, 0.704305;;, - 56;4;-0.000000, 0.000000, 0.708616, 0.705530;;, - 57;4;-0.000000, 0.000000, 0.707776, 0.706408;;, - 58;4;-0.000000, 0.000000, 0.707273, 0.706933;;, - 59;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 60;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 61;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 62;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 63;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 64;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 65;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 66;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 67;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 68;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 69;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 70;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 71;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 72;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 73;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 74;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 75;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 76;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 77;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 78;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 79;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 80;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 81;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 82;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 83;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 84;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 85;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 86;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 87;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 88;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 89;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 90;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 91;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 92;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 93;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 94;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 95;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 96;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 97;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 98;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 99;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 100;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 101;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 102;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 103;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 104;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 105;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 106;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 107;4;-0.000000, 0.000000, 0.702783, 0.710362;;, - 108;4;-0.000000, 0.000000, 0.689580, 0.720281;;, - 109;4;-0.000000, 0.000000, 0.667667, 0.736697;;, - 110;4;-0.000000, 0.000000, 0.638196, 0.758693;;, - 111;4;-0.000000, 0.000000, 0.603489, 0.784465;;, - 112;4;-0.000000, 0.000000, 0.566792, 0.811525;;, - 113;4;-0.000000, 0.000000, 0.531551, 0.837258;;, - 114;4;-0.000000, 0.000000, 0.500609, 0.859521;;, - 115;4;-0.000000, 0.000000, 0.475786, 0.876966;;, - 116;4;-0.000000, 0.000000, 0.457903, 0.889002;;, - 117;4; 0.000798, 0.001625, 0.444429, 0.897363;;, - 118;4; 0.003160, 0.006431, 0.433080, 0.903630;;, - 119;4; 0.006758, 0.013754, 0.424417, 0.907592;;, - 120;4; 0.010840, 0.022060, 0.418667, 0.909446;;, - 121;4; 0.014438, 0.029383, 0.415494, 0.909852;;, - 122;4; 0.016800, 0.034189, 0.414148, 0.909642;;, - 123;4; 0.017598, 0.035813, 0.413843, 0.909474;;, - 124;4; 0.017276, 0.035158, 0.413906, 0.909503;;, - 125;4; 0.016304, 0.033181, 0.414201, 0.909536;;, - 126;4; 0.014712, 0.029940, 0.414923, 0.909460;;, - 127;4; 0.012590, 0.025621, 0.416312, 0.909126;;, - 128;4; 0.010106, 0.020566, 0.418624, 0.908362;;, - 129;4; 0.007492, 0.015247, 0.422084, 0.906999;;, - 130;4; 0.005008, 0.010192, 0.426831, 0.904911;;, - 131;4; 0.002886, 0.005874, 0.432890, 0.902037;;, - 132;4; 0.001293, 0.002633, 0.440187, 0.898384;;, - 133;4; 0.000322, 0.000656, 0.448580, 0.894011;;, - 134;4;-0.000000, 0.000000, 0.457903, 0.889002;;, - 135;4;-0.000000, 0.000000, 0.471819, 0.880404;;, - 136;4;-0.000000, 0.000000, 0.494009, 0.865242;;, - 137;4;-0.000000, 0.000000, 0.523692, 0.844071;;, - 138;4;-0.000000, 0.000000, 0.558965, 0.818312;;, - 139;4;-0.000000, 0.000000, 0.596735, 0.790321;;, - 140;4;-0.000000, 0.000000, 0.633158, 0.763062;;, - 141;4;-0.000000, 0.000000, 0.664523, 0.739424;;, - 142;4;-0.000000, 0.000000, 0.688086, 0.721577;;, - 143;4;-0.000000, 0.000000, 0.702395, 0.710699;;, - 144;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 145;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 146;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 147;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 148;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 149;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 150;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 151;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 152;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 153;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 154;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 155;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 156;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 157;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 158;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 159;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 160;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 161;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 162;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 163;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 164;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 165;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 166;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 167;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 168;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 169;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 170;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 171;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 172;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 173;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 174;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 175;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 176;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 177;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 178;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 179;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 180;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 181;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 182;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 183;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 184;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 185;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 186;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 187;4;-0.000000, 0.000000, 0.707107, 0.707107;;, - 188;4;-0.000000, 0.000000, 0.707107, 0.707107;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-0.000000, 4.052526, 3.788038;;, - 1;3;-0.000000, 4.052526, 3.788038;;, - 2;3;-0.000000, 4.052526, 3.788038;;, - 3;3;-0.000000, 4.052526, 3.788038;;, - 4;3;-0.000000, 4.052526, 3.788038;;, - 5;3;-0.000000, 4.052526, 3.788038;;, - 6;3;-0.000000, 4.052526, 3.788038;;, - 7;3;-0.000000, 4.052526, 3.788038;;, - 8;3;-0.000000, 4.052526, 3.788038;;, - 9;3;-0.000000, 4.052526, 3.788038;;, - 10;3;-0.000000, 4.052526, 3.788038;;, - 11;3;-0.000000, 4.052526, 3.788038;;, - 12;3;-0.000000, 4.052526, 3.788038;;, - 13;3;-0.000000, 4.052526, 3.788038;;, - 14;3;-0.000000, 4.052526, 3.788038;;, - 15;3;-0.000000, 4.052526, 3.788038;;, - 16;3;-0.000000, 4.052526, 3.788038;;, - 17;3;-0.000000, 4.052526, 3.788038;;, - 18;3;-0.000000, 4.052526, 3.788038;;, - 19;3;-0.000000, 4.052526, 3.788038;;, - 20;3;-0.000000, 4.052526, 3.788038;;, - 21;3;-0.000000, 4.052526, 3.788038;;, - 22;3;-0.000000, 4.052526, 3.788038;;, - 23;3;-0.000000, 4.052526, 3.788038;;, - 24;3;-0.000000, 4.052526, 3.788038;;, - 25;3;-0.000000, 4.052526, 3.788038;;, - 26;3;-0.000000, 4.052526, 3.788038;;, - 27;3;-0.000000, 4.052526, 3.788038;;, - 28;3;-0.000000, 4.052526, 3.788038;;, - 29;3;-0.000000, 4.052526, 3.788038;;, - 30;3;-0.000000, 4.052526, 3.788038;;, - 31;3;-0.000000, 4.052526, 3.788038;;, - 32;3;-0.000000, 4.052526, 3.788038;;, - 33;3;-0.000000, 4.052526, 3.788038;;, - 34;3;-0.000000, 4.052526, 3.788038;;, - 35;3;-0.000000, 4.052526, 3.788038;;, - 36;3;-0.000000, 4.052526, 3.788038;;, - 37;3;-0.000000, 4.052526, 3.788038;;, - 38;3;-0.000000, 4.052526, 3.788038;;, - 39;3;-0.000000, 4.052526, 3.788038;;, - 40;3;-0.000000, 4.052526, 3.788038;;, - 41;3;-0.000000, 4.052526, 3.788038;;, - 42;3;-0.000000, 4.052526, 3.788038;;, - 43;3;-0.000000, 4.052526, 3.788038;;, - 44;3;-0.000000, 4.052526, 3.788038;;, - 45;3;-0.000000, 4.052526, 3.788038;;, - 46;3;-0.000000, 4.052526, 3.788038;;, - 47;3;-0.000000, 4.052526, 3.788038;;, - 48;3;-0.000000, 4.052526, 3.788038;;, - 49;3;-0.000000, 4.052526, 3.788038;;, - 50;3;-0.000000, 4.052526, 3.788038;;, - 51;3;-0.000000, 4.052526, 3.788038;;, - 52;3;-0.000000, 4.052526, 3.788038;;, - 53;3;-0.000000, 4.052526, 3.788038;;, - 54;3;-0.000000, 4.052526, 3.788038;;, - 55;3;-0.000000, 4.052526, 3.788038;;, - 56;3;-0.000000, 4.052526, 3.788038;;, - 57;3;-0.000000, 4.052526, 3.788038;;, - 58;3;-0.000000, 4.052526, 3.788038;;, - 59;3;-0.000000, 4.052526, 3.788038;;, - 60;3;-0.000000, 4.052526, 3.788038;;, - 61;3;-0.000000, 4.052526, 3.788038;;, - 62;3;-0.000000, 4.052526, 3.788038;;, - 63;3;-0.000000, 4.052526, 3.788038;;, - 64;3;-0.000000, 4.052526, 3.788038;;, - 65;3;-0.000000, 4.052526, 3.788038;;, - 66;3;-0.000000, 4.052526, 3.788038;;, - 67;3;-0.000000, 4.052526, 3.788038;;, - 68;3;-0.000000, 4.052526, 3.788038;;, - 69;3;-0.000000, 4.052526, 3.788038;;, - 70;3;-0.000000, 4.052526, 3.788038;;, - 71;3;-0.000000, 4.052526, 3.788038;;, - 72;3;-0.000000, 4.052526, 3.788038;;, - 73;3;-0.000000, 4.052526, 3.788038;;, - 74;3;-0.000000, 4.052526, 3.788038;;, - 75;3;-0.000000, 4.052526, 3.788038;;, - 76;3;-0.000000, 4.052526, 3.788038;;, - 77;3;-0.000000, 4.052526, 3.788038;;, - 78;3;-0.000000, 4.052526, 3.788038;;, - 79;3;-0.000000, 4.052526, 3.788038;;, - 80;3;-0.000000, 4.052526, 3.788038;;, - 81;3;-0.000000, 4.052526, 3.788038;;, - 82;3;-0.000000, 4.052526, 3.788038;;, - 83;3;-0.000000, 4.052526, 3.788038;;, - 84;3;-0.000000, 4.052526, 3.788038;;, - 85;3;-0.000000, 4.052526, 3.788038;;, - 86;3;-0.000000, 4.052526, 3.788038;;, - 87;3;-0.000000, 4.052526, 3.788038;;, - 88;3;-0.000000, 4.052526, 3.788038;;, - 89;3;-0.000000, 4.052526, 3.788038;;, - 90;3;-0.000000, 4.052526, 3.788038;;, - 91;3;-0.000000, 4.052526, 3.788038;;, - 92;3;-0.000000, 4.052526, 3.788038;;, - 93;3;-0.000000, 4.052526, 3.788038;;, - 94;3;-0.000000, 4.052526, 3.788038;;, - 95;3;-0.000000, 4.052526, 3.788038;;, - 96;3;-0.000000, 4.052526, 3.788038;;, - 97;3;-0.000000, 4.052526, 3.788038;;, - 98;3;-0.000000, 4.052526, 3.788038;;, - 99;3;-0.000000, 4.052526, 3.788038;;, - 100;3;-0.000000, 4.052526, 3.788038;;, - 101;3;-0.000000, 4.052526, 3.788038;;, - 102;3;-0.000000, 4.052526, 3.788038;;, - 103;3;-0.000000, 4.052526, 3.788038;;, - 104;3;-0.000000, 4.052526, 3.788038;;, - 105;3;-0.000000, 4.052526, 3.788038;;, - 106;3;-0.000000, 4.052526, 3.788038;;, - 107;3; 0.000000, 3.932556, 3.817408;;, - 108;3; 0.000000, 3.578606, 3.905683;;, - 109;3; 0.000000, 3.015022, 4.049008;;, - 110;3; 0.000000, 2.290478, 4.236245;;, - 111;3; 0.000000, 1.477738, 4.448205;;, - 112;3; 0.000000, 0.664999, 4.660165;;, - 113;3; 0.000000,-0.059545, 4.847402;;, - 114;3; 0.000000,-0.623131, 4.990727;;, - 115;3; 0.000000,-0.977079, 5.079002;;, - 116;3; 0.000000,-1.097050, 5.108373;;, - 117;3; 0.000000,-1.097050, 5.108373;;, - 118;3; 0.000000,-1.097050, 5.108373;;, - 119;3; 0.000000,-1.097050, 5.108373;;, - 120;3; 0.000000,-1.097050, 5.108373;;, - 121;3; 0.000000,-1.097050, 5.108373;;, - 122;3; 0.000000,-1.097050, 5.108373;;, - 123;3; 0.000000,-1.097050, 5.108373;;, - 124;3; 0.000000,-1.097050, 5.108373;;, - 125;3; 0.000000,-1.097050, 5.108373;;, - 126;3; 0.000000,-1.097050, 5.108373;;, - 127;3; 0.000000,-1.097050, 5.108373;;, - 128;3; 0.000000,-1.097050, 5.108373;;, - 129;3; 0.000000,-1.097050, 5.108373;;, - 130;3; 0.000000,-1.097050, 5.108373;;, - 131;3; 0.000000,-1.097050, 5.108373;;, - 132;3; 0.000000,-1.097050, 5.108373;;, - 133;3; 0.000000,-1.097050, 5.108373;;, - 134;3; 0.000000,-1.097050, 5.108373;;, - 135;3; 0.000000,-0.978723, 5.079034;;, - 136;3; 0.000000,-0.635073, 4.990970;;, - 137;3; 0.000000,-0.094211, 4.848135;;, - 138;3; 0.000000, 0.599206, 4.661588;;, - 139;3; 0.000000, 1.383935, 4.450237;;, - 140;3; 0.000000, 2.185637, 4.238466;;, - 141;3; 0.000001, 2.924005, 4.050854;;, - 142;3; 0.000001, 3.521967, 3.906768;;, - 143;3; 0.000001, 3.914200, 3.817738;;, - 144;3; 0.000001, 4.052526, 3.788038;;, - 145;3; 0.000001, 4.052526, 3.788038;;, - 146;3; 0.000001, 4.052526, 3.788038;;, - 147;3; 0.000001, 4.052526, 3.788038;;, - 148;3; 0.000001, 4.052526, 3.788038;;, - 149;3; 0.000001, 4.052526, 3.788038;;, - 150;3; 0.000001, 4.052526, 3.788038;;, - 151;3; 0.000001, 4.052526, 3.788038;;, - 152;3; 0.000001, 4.052526, 3.788038;;, - 153;3; 0.000001, 4.052526, 3.788038;;, - 154;3; 0.000001, 4.052526, 3.788038;;, - 155;3; 0.000001, 4.052526, 3.788038;;, - 156;3; 0.000001, 4.052526, 3.788038;;, - 157;3; 0.000001, 4.052526, 3.788038;;, - 158;3; 0.000001, 4.052526, 3.788038;;, - 159;3; 0.000001, 4.052526, 3.788038;;, - 160;3; 0.000001, 4.052526, 3.788038;;, - 161;3; 0.000001, 4.052526, 3.788038;;, - 162;3; 0.000001, 4.052526, 3.788038;;, - 163;3; 0.000001, 4.052526, 3.788038;;, - 164;3; 0.000001, 4.052526, 3.788038;;, - 165;3; 0.000001, 4.052526, 3.788038;;, - 166;3; 0.000001, 4.052526, 3.788038;;, - 167;3; 0.000001, 4.052526, 3.788038;;, - 168;3; 0.000001, 4.052526, 3.788038;;, - 169;3; 0.000001, 4.052526, 3.788038;;, - 170;3; 0.000001, 4.052526, 3.788038;;, - 171;3; 0.000001, 4.052526, 3.788038;;, - 172;3; 0.000001, 4.052526, 3.788038;;, - 173;3; 0.000001, 4.052526, 3.788038;;, - 174;3; 0.000001, 4.052526, 3.788038;;, - 175;3; 0.000001, 4.052526, 3.788038;;, - 176;3; 0.000001, 4.052526, 3.788038;;, - 177;3; 0.000001, 4.052526, 3.788038;;, - 178;3; 0.000001, 4.052526, 3.788038;;, - 179;3; 0.000001, 4.052526, 3.788038;;, - 180;3; 0.000001, 4.052526, 3.788038;;, - 181;3; 0.000001, 4.052526, 3.788038;;, - 182;3; 0.000001, 4.052526, 3.788038;;, - 183;3; 0.000001, 4.052526, 3.788038;;, - 184;3; 0.000001, 4.052526, 3.788038;;, - 185;3; 0.000001, 4.052526, 3.788038;;, - 186;3; 0.000001, 4.052526, 3.788038;;, - 187;3; 0.000001, 4.052526, 3.788038;;, - 188;3; 0.000001, 4.052526, 3.788038;;; - } - } -} // End of AnimationSet ArmatureAction -AnimationSet Default_Action { - Animation { - {sheep} - AnimationKey { // Rotation - 0; - 189; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.000000, 0.000000,-0.000000;;, - 1;3; 0.000000, 0.000000,-0.000000;;, - 2;3; 0.000000, 0.000000,-0.000000;;, - 3;3; 0.000000, 0.000000,-0.000000;;, - 4;3; 0.000000, 0.000000,-0.000000;;, - 5;3; 0.000000, 0.000000,-0.000000;;, - 6;3; 0.000000, 0.000000,-0.000000;;, - 7;3; 0.000000, 0.000000,-0.000000;;, - 8;3; 0.000000, 0.000000,-0.000000;;, - 9;3; 0.000000, 0.000000,-0.000000;;, - 10;3; 0.000000, 0.000000,-0.000000;;, - 11;3; 0.000000, 0.000000,-0.000000;;, - 12;3; 0.000000, 0.000000,-0.000000;;, - 13;3; 0.000000, 0.000000,-0.000000;;, - 14;3; 0.000000, 0.000000,-0.000000;;, - 15;3; 0.000000, 0.000000,-0.000000;;, - 16;3; 0.000000, 0.000000,-0.000000;;, - 17;3; 0.000000, 0.000000,-0.000000;;, - 18;3; 0.000000, 0.000000,-0.000000;;, - 19;3; 0.000000, 0.000000,-0.000000;;, - 20;3; 0.000000, 0.000000,-0.000000;;, - 21;3; 0.000000, 0.000000,-0.000000;;, - 22;3; 0.000000, 0.000000,-0.000000;;, - 23;3; 0.000000, 0.000000,-0.000000;;, - 24;3; 0.000000, 0.000000,-0.000000;;, - 25;3; 0.000000, 0.000000,-0.000000;;, - 26;3; 0.000000, 0.000000,-0.000000;;, - 27;3; 0.000000, 0.000000,-0.000000;;, - 28;3; 0.000000, 0.000000,-0.000000;;, - 29;3; 0.000000, 0.000000,-0.000000;;, - 30;3; 0.000000, 0.000000,-0.000000;;, - 31;3; 0.000000, 0.000000,-0.000000;;, - 32;3; 0.000000, 0.000000,-0.000000;;, - 33;3; 0.000000, 0.000000,-0.000000;;, - 34;3; 0.000000, 0.000000,-0.000000;;, - 35;3; 0.000000, 0.000000,-0.000000;;, - 36;3; 0.000000, 0.000000,-0.000000;;, - 37;3; 0.000000, 0.000000,-0.000000;;, - 38;3; 0.000000, 0.000000,-0.000000;;, - 39;3; 0.000000, 0.000000,-0.000000;;, - 40;3; 0.000000, 0.000000,-0.000000;;, - 41;3; 0.000000, 0.000000,-0.000000;;, - 42;3; 0.000000, 0.000000,-0.000000;;, - 43;3; 0.000000, 0.000000,-0.000000;;, - 44;3; 0.000000, 0.000000,-0.000000;;, - 45;3; 0.000000, 0.000000,-0.000000;;, - 46;3; 0.000000, 0.000000,-0.000000;;, - 47;3; 0.000000, 0.000000,-0.000000;;, - 48;3; 0.000000, 0.000000,-0.000000;;, - 49;3; 0.000000, 0.000000,-0.000000;;, - 50;3; 0.000000, 0.000000,-0.000000;;, - 51;3; 0.000000, 0.000000,-0.000000;;, - 52;3; 0.000000, 0.000000,-0.000000;;, - 53;3; 0.000000, 0.000000,-0.000000;;, - 54;3; 0.000000, 0.000000,-0.000000;;, - 55;3; 0.000000, 0.000000,-0.000000;;, - 56;3; 0.000000, 0.000000,-0.000000;;, - 57;3; 0.000000, 0.000000,-0.000000;;, - 58;3; 0.000000, 0.000000,-0.000000;;, - 59;3; 0.000000, 0.000000,-0.000000;;, - 60;3; 0.000000, 0.000000,-0.000000;;, - 61;3; 0.000000, 0.000000,-0.000000;;, - 62;3; 0.000000, 0.000000,-0.000000;;, - 63;3; 0.000000, 0.000000,-0.000000;;, - 64;3; 0.000000, 0.000000,-0.000000;;, - 65;3; 0.000000, 0.000000,-0.000000;;, - 66;3; 0.000000, 0.000000,-0.000000;;, - 67;3; 0.000000, 0.000000,-0.000000;;, - 68;3; 0.000000, 0.000000,-0.000000;;, - 69;3; 0.000000, 0.000000,-0.000000;;, - 70;3; 0.000000, 0.000000,-0.000000;;, - 71;3; 0.000000, 0.000000,-0.000000;;, - 72;3; 0.000000, 0.000000,-0.000000;;, - 73;3; 0.000000, 0.000000,-0.000000;;, - 74;3; 0.000000, 0.000000,-0.000000;;, - 75;3; 0.000000, 0.000000,-0.000000;;, - 76;3; 0.000000, 0.000000,-0.000000;;, - 77;3; 0.000000, 0.000000,-0.000000;;, - 78;3; 0.000000, 0.000000,-0.000000;;, - 79;3; 0.000000, 0.000000,-0.000000;;, - 80;3; 0.000000, 0.000000,-0.000000;;, - 81;3; 0.000000, 0.000000,-0.000000;;, - 82;3; 0.000000, 0.000000,-0.000000;;, - 83;3; 0.000000, 0.000000,-0.000000;;, - 84;3; 0.000000, 0.000000,-0.000000;;, - 85;3; 0.000000, 0.000000,-0.000000;;, - 86;3; 0.000000, 0.000000,-0.000000;;, - 87;3; 0.000000, 0.000000,-0.000000;;, - 88;3; 0.000000, 0.000000,-0.000000;;, - 89;3; 0.000000, 0.000000,-0.000000;;, - 90;3; 0.000000, 0.000000,-0.000000;;, - 91;3; 0.000000, 0.000000,-0.000000;;, - 92;3; 0.000000, 0.000000,-0.000000;;, - 93;3; 0.000000, 0.000000,-0.000000;;, - 94;3; 0.000000, 0.000000,-0.000000;;, - 95;3; 0.000000, 0.000000,-0.000000;;, - 96;3; 0.000000, 0.000000,-0.000000;;, - 97;3; 0.000000, 0.000000,-0.000000;;, - 98;3; 0.000000, 0.000000,-0.000000;;, - 99;3; 0.000000, 0.000000,-0.000000;;, - 100;3; 0.000000, 0.000000,-0.000000;;, - 101;3; 0.000000, 0.000000,-0.000000;;, - 102;3; 0.000000, 0.000000,-0.000000;;, - 103;3; 0.000000, 0.000000,-0.000000;;, - 104;3; 0.000000, 0.000000,-0.000000;;, - 105;3; 0.000000, 0.000000,-0.000000;;, - 106;3; 0.000000, 0.000000,-0.000000;;, - 107;3; 0.000000, 0.000000,-0.000000;;, - 108;3; 0.000000, 0.000000,-0.000000;;, - 109;3; 0.000000, 0.000000,-0.000000;;, - 110;3; 0.000000, 0.000000,-0.000000;;, - 111;3; 0.000000, 0.000000,-0.000000;;, - 112;3; 0.000000, 0.000000,-0.000000;;, - 113;3; 0.000000, 0.000000,-0.000000;;, - 114;3; 0.000000, 0.000000,-0.000000;;, - 115;3; 0.000000, 0.000000,-0.000000;;, - 116;3; 0.000000, 0.000000,-0.000000;;, - 117;3; 0.000000, 0.000000,-0.000000;;, - 118;3; 0.000000, 0.000000,-0.000000;;, - 119;3; 0.000000, 0.000000,-0.000000;;, - 120;3; 0.000000, 0.000000,-0.000000;;, - 121;3; 0.000000, 0.000000,-0.000000;;, - 122;3; 0.000000, 0.000000,-0.000000;;, - 123;3; 0.000000, 0.000000,-0.000000;;, - 124;3; 0.000000, 0.000000,-0.000000;;, - 125;3; 0.000000, 0.000000,-0.000000;;, - 126;3; 0.000000, 0.000000,-0.000000;;, - 127;3; 0.000000, 0.000000,-0.000000;;, - 128;3; 0.000000, 0.000000,-0.000000;;, - 129;3; 0.000000, 0.000000,-0.000000;;, - 130;3; 0.000000, 0.000000,-0.000000;;, - 131;3; 0.000000, 0.000000,-0.000000;;, - 132;3; 0.000000, 0.000000,-0.000000;;, - 133;3; 0.000000, 0.000000,-0.000000;;, - 134;3; 0.000000, 0.000000,-0.000000;;, - 135;3; 0.000000, 0.000000,-0.000000;;, - 136;3; 0.000000, 0.000000,-0.000000;;, - 137;3; 0.000000, 0.000000,-0.000000;;, - 138;3; 0.000000, 0.000000,-0.000000;;, - 139;3; 0.000000, 0.000000,-0.000000;;, - 140;3; 0.000000, 0.000000,-0.000000;;, - 141;3; 0.000000, 0.000000,-0.000000;;, - 142;3; 0.000000, 0.000000,-0.000000;;, - 143;3; 0.000000, 0.000000,-0.000000;;, - 144;3; 0.000000, 0.000000,-0.000000;;, - 145;3; 0.000000, 0.000000,-0.000000;;, - 146;3; 0.000000, 0.000000,-0.000000;;, - 147;3; 0.000000, 0.000000,-0.000000;;, - 148;3; 0.000000, 0.000000,-0.000000;;, - 149;3; 0.000000, 0.000000,-0.000000;;, - 150;3; 0.000000, 0.000000,-0.000000;;, - 151;3; 0.000000, 0.000000,-0.000000;;, - 152;3; 0.000000, 0.000000,-0.000000;;, - 153;3; 0.000000, 0.000000,-0.000000;;, - 154;3; 0.000000, 0.000000,-0.000000;;, - 155;3; 0.000000, 0.000000,-0.000000;;, - 156;3; 0.000000, 0.000000,-0.000000;;, - 157;3; 0.000000, 0.000000,-0.000000;;, - 158;3; 0.000000, 0.000000,-0.000000;;, - 159;3; 0.000000, 0.000000,-0.000000;;, - 160;3; 0.000000, 0.000000,-0.000000;;, - 161;3; 0.000000, 0.000000,-0.000000;;, - 162;3; 0.000000, 0.000000,-0.000000;;, - 163;3; 0.000000, 0.000000,-0.000000;;, - 164;3; 0.000000, 0.000000,-0.000000;;, - 165;3; 0.000000, 0.000000,-0.000000;;, - 166;3; 0.000000, 0.000000,-0.000000;;, - 167;3; 0.000000, 0.000000,-0.000000;;, - 168;3; 0.000000, 0.000000,-0.000000;;, - 169;3; 0.000000, 0.000000,-0.000000;;, - 170;3; 0.000000, 0.000000,-0.000000;;, - 171;3; 0.000000, 0.000000,-0.000000;;, - 172;3; 0.000000, 0.000000,-0.000000;;, - 173;3; 0.000000, 0.000000,-0.000000;;, - 174;3; 0.000000, 0.000000,-0.000000;;, - 175;3; 0.000000, 0.000000,-0.000000;;, - 176;3; 0.000000, 0.000000,-0.000000;;, - 177;3; 0.000000, 0.000000,-0.000000;;, - 178;3; 0.000000, 0.000000,-0.000000;;, - 179;3; 0.000000, 0.000000,-0.000000;;, - 180;3; 0.000000, 0.000000,-0.000000;;, - 181;3; 0.000000, 0.000000,-0.000000;;, - 182;3; 0.000000, 0.000000,-0.000000;;, - 183;3; 0.000000, 0.000000,-0.000000;;, - 184;3; 0.000000, 0.000000,-0.000000;;, - 185;3; 0.000000, 0.000000,-0.000000;;, - 186;3; 0.000000, 0.000000,-0.000000;;, - 187;3; 0.000000, 0.000000,-0.000000;;, - 188;3; 0.000000, 0.000000,-0.000000;;; - } - } -} // End of AnimationSet Default_Action diff --git a/mods/mobs/models/creatures_sheep_shaved.png b/mods/mobs/models/creatures_sheep_shaved.png deleted file mode 100644 index e270077a2..000000000 Binary files a/mods/mobs/models/creatures_sheep_shaved.png and /dev/null differ diff --git a/mods/mobs/models/creatures_zombie.x b/mods/mobs/models/creatures_zombie.x deleted file mode 100644 index 186943fbc..000000000 --- a/mods/mobs/models/creatures_zombie.x +++ /dev/null @@ -1,5524 +0,0 @@ -xof 0303txt 0032 - -template XSkinMeshHeader { - <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> - WORD nMaxSkinWeightsPerVertex; - WORD nMaxSkinWeightsPerFace; - WORD nBones; -} - -template SkinWeights { - <6f0d123b-bad2-4167-a0d0-80224f25fabb> - STRING transformNodeName; - DWORD nWeights; - array DWORD vertexIndices[nWeights]; - array float weights[nWeights]; - Matrix4x4 matrixOffset; -} - -Frame Root { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Frame Armature { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000,-10.000000, 1.000000;; - } - Frame Armature_Body { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - -0.000000, 0.000000, 6.750000, 1.000000;; - } - Frame Armature_Arm_Left { - FrameTransformMatrix { - 0.989214,-0.143886,-0.027450, 0.000000, - -0.143940,-0.989586,-0.000000, 0.000000, - -0.027164, 0.003951,-0.999623, 0.000000, - -2.000000, 6.750000, 0.000000, 1.000000;; - } - } // End of Armature_Arm_Left - Frame Armature_Arm_Right { - FrameTransformMatrix { - 0.989214, 0.143886, 0.027450, 0.000000, - 0.143940,-0.989586,-0.000000, 0.000000, - 0.027164, 0.003951,-0.999623, 0.000000, - 2.000000, 6.750000, 0.000000, 1.000000;; - } - } // End of Armature_Arm_Right - Frame Armature_Head { - FrameTransformMatrix { - -1.000000,-0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 0.000000, 6.750000, 0.000000, 1.000000;; - } - } // End of Armature_Head - Frame Armature_Leg_Left { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - -1.000000, 0.000000,-0.000001, 1.000000;; - } - } // End of Armature_Leg_Left - Frame Armature_Leg_Right { - FrameTransformMatrix { - 1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - 1.000000, 0.000000,-0.000001, 1.000000;; - } - } // End of Armature_Leg_Right - } // End of Armature_Body - Frame Player { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Mesh { // Player mesh - 168; - 2.000000;-1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - 2.000000;-1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 0.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 6.750000;, - -2.000000;-1.000000;13.500000;, - -4.000000;-1.000000;13.500000;, - -4.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - -2.000000;-1.000000; 0.000000;, - -2.000000; 1.000000; 0.000000;, - -2.000000;-1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 0.000000;, - -2.000000;-1.000000; 0.000000;, - 2.000000;-2.000000;17.500000;, - -2.000000;-2.000000;17.500000;, - -2.000000;-2.000000;13.500000;, - 2.000000;-2.000000;13.500000;, - -2.000000;-2.000000;17.500000;, - -2.000000; 2.000000;17.500000;, - -2.000000; 2.000000;13.500000;, - -2.000000;-2.000000;13.500000;, - -2.000000; 2.000000;17.500000;, - 2.000000; 2.000000;17.500000;, - 2.000000; 2.000000;13.500000;, - -2.000000; 2.000000;13.500000;, - 2.000000; 2.000000;13.500000;, - 2.000000;-2.000000;13.500000;, - -2.000000;-2.000000;13.500000;, - -2.000000; 2.000000;13.500000;, - -2.000000; 2.000000;17.500000;, - -2.000000;-2.000000;17.500000;, - 2.000000;-2.000000;17.500000;, - 2.000000; 2.000000;17.500000;, - 0.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -2.000000;-1.000000; 0.000000;, - -0.000000;-1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 6.750000;, - -2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 0.000000;, - -2.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 4.000000; 1.000000; 6.750000;, - 4.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 4.000000; 1.000000;13.500000;, - 2.000000; 1.000000;13.500000;, - 2.000000;-1.000000;13.500000;, - 4.000000;-1.000000;13.500000;, - 0.000000;-1.000000; 6.750000;, - 0.000000;-1.000000; 0.000000;, - 2.000000;-1.000000; 0.000000;, - 2.000000;-1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - -0.000000;-1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 0.000000;, - 2.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - 2.000000;-1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000;13.500000;, - 2.000000;-2.000000;17.500000;, - 2.000000;-2.000000;13.500000;, - 2.000000; 2.000000;13.500000;, - 2.000000; 2.000000;17.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - -4.000000; 1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -4.000000; 1.000000; 6.750000;, - -4.000000;-1.000000;13.500000;, - -4.000000; 1.000000;13.500000;, - -4.000000; 1.000000; 6.750000;, - -4.000000;-1.000000; 6.750000;, - 4.000000;-1.000000;13.500000;, - 4.000000;-1.000000; 6.750000;, - 4.000000; 1.000000; 6.750000;, - 4.000000; 1.000000;13.500000;, - -4.000000; 1.000000;13.500000;, - -4.000000;-1.000000;13.500000;, - -2.000000;-1.000000;13.500000;, - -2.000000; 1.000000;13.500000;, - 4.000000; 1.000000;13.500000;, - 4.000000; 1.000000; 6.750000;, - 2.000000; 1.000000; 6.750000;, - 2.000000; 1.000000;13.500000;, - 0.000000; 1.000000; 0.000000;, - 2.000000; 1.000000; 0.000000;, - 2.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 2.000000; 1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - -2.000000; 1.000000; 6.750000;, - -2.000000;-1.000000; 6.750000;, - -4.000000;-1.000000; 6.750000;, - -4.000000; 1.000000; 6.750000;, - 2.000000;-1.000000;13.500000;, - 2.000000;-1.000000; 6.750000;, - 4.000000;-1.000000; 6.750000;, - 4.000000;-1.000000;13.500000;, - 2.000000; 1.000000; 6.750000;, - 0.000000; 1.000000; 6.750000;, - 0.000000;-1.000000; 6.750000;, - 2.000000;-1.000000; 6.750000;, - 2.200000;-2.200000;17.700001;, - -2.200000;-2.200000;17.700001;, - -2.200000;-2.200000;13.300000;, - 2.200000;-2.200000;13.300000;, - -2.200000;-2.200000;17.700001;, - -2.200000; 2.200000;17.700001;, - -2.200000; 2.200000;13.300000;, - -2.200000;-2.200000;13.300000;, - -2.200000; 2.200000;17.700001;, - 2.200000; 2.200000;17.700001;, - 2.200000; 2.200000;13.300000;, - -2.200000; 2.200000;13.300000;, - 2.200000; 2.200000;13.300000;, - 2.200000;-2.200000;13.300000;, - -2.200000;-2.200000;13.300000;, - -2.200000; 2.200000;13.300000;, - -2.200000; 2.200000;17.700001;, - -2.200000;-2.200000;17.700001;, - 2.200000;-2.200000;17.700001;, - 2.200000; 2.200000;17.700001;, - 2.200000;-2.200000;17.700001;, - 2.200000;-2.200000;13.300000;, - 2.200000; 2.200000;13.300000;, - 2.200000; 2.200000;17.700001;; - 42; - 4;3,2,1,0;, - 4;7,6,5,4;, - 4;11,10,9,8;, - 4;15,14,13,12;, - 4;19,18,17,16;, - 4;23,22,21,20;, - 4;27,26,25,24;, - 4;31,30,29,28;, - 4;35,34,33,32;, - 4;39,38,37,36;, - 4;43,42,41,40;, - 4;47,46,45,44;, - 4;51,50,49,48;, - 4;55,54,53,52;, - 4;59,58,57,56;, - 4;63,62,61,60;, - 4;67,66,65,64;, - 4;71,70,69,68;, - 4;75,74,73,72;, - 4;79,78,77,76;, - 4;83,82,81,80;, - 4;87,86,85,84;, - 4;91,90,89,88;, - 4;95,94,93,92;, - 4;99,98,97,96;, - 4;103,102,101,100;, - 4;107,106,105,104;, - 4;111,110,109,108;, - 4;115,114,113,112;, - 4;119,118,117,116;, - 4;123,122,121,120;, - 4;127,126,125,124;, - 4;131,130,129,128;, - 4;135,134,133,132;, - 4;139,138,137,136;, - 4;143,142,141,140;, - 4;147,146,145,144;, - 4;151,150,149,148;, - 4;155,154,153,152;, - 4;159,158,157,156;, - 4;163,162,161,160;, - 4;167,166,165,164;; - MeshTextureCoords { // Player UV coordinates - 168; - 0.625000; 0.625000;, - 0.500000; 0.625000;, - 0.500000; 1.000000;, - 0.625000; 1.000000;, - 0.500000; 0.625000;, - 0.437500; 0.625000;, - 0.437500; 1.000000;, - 0.500000; 1.000000;, - 0.437500; 0.625000;, - 0.312500; 0.625000;, - 0.312500; 1.000000;, - 0.437500; 1.000000;, - 0.562500; 0.625000;, - 0.562500; 0.500000;, - 0.437500; 0.500000;, - 0.437500; 0.625000;, - 0.437500; 0.625000;, - 0.437500; 0.500000;, - 0.312500; 0.500000;, - 0.312500; 0.625000;, - 0.187500; 0.625000;, - 0.187500; 1.000000;, - 0.125000; 1.000000;, - 0.125000; 0.625000;, - 0.812500; 0.625000;, - 0.875000; 0.625000;, - 0.875000; 1.000000;, - 0.812500; 1.000000;, - 0.750000; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 1.000000;, - 0.750000; 1.000000;, - 0.187500; 0.625000;, - 0.187500; 0.500000;, - 0.125000; 0.500000;, - 0.125000; 0.625000;, - 0.000000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 1.000000;, - 0.000000; 1.000000;, - 0.500000; 0.250000;, - 0.375000; 0.250000;, - 0.375000; 0.500000;, - 0.500000; 0.500000;, - 0.375000; 0.250000;, - 0.250000; 0.250000;, - 0.250000; 0.500000;, - 0.375000; 0.500000;, - 0.250000; 0.250000;, - 0.125000; 0.250000;, - 0.125000; 0.500000;, - 0.250000; 0.500000;, - 0.375000; 0.250000;, - 0.375000; 0.000000;, - 0.250000; 0.000000;, - 0.250000; 0.250000;, - 0.250000; 0.250000;, - 0.250000; 0.000000;, - 0.125000; 0.000000;, - 0.125000; 0.250000;, - 0.250000; 0.625000;, - 0.187500; 0.625000;, - 0.187500; 1.000000;, - 0.250000; 1.000000;, - 0.125000; 0.625000;, - 0.125000; 1.000000;, - 0.062500; 1.000000;, - 0.062500; 0.625000;, - 0.125000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 1.000000;, - 0.125000; 1.000000;, - 0.750000; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 0.500000;, - 0.750000; 0.500000;, - 0.687500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 0.500000;, - 0.687500; 0.500000;, - 0.250000; 0.625000;, - 0.250000; 1.000000;, - 0.187500; 1.000000;, - 0.187500; 0.625000;, - 0.187500; 0.625000;, - 0.125000; 0.625000;, - 0.125000; 1.000000;, - 0.187500; 1.000000;, - 0.000000; 0.625000;, - 0.000000; 1.000000;, - 0.062500; 1.000000;, - 0.062500; 0.625000;, - 0.250000; 0.625000;, - 0.250000; 1.000000;, - 0.312500; 1.000000;, - 0.312500; 0.625000;, - 0.000000; 0.250000;, - 0.000000; 0.500000;, - 0.125000; 0.500000;, - 0.125000; 0.250000;, - 0.125000; 0.625000;, - 0.125000; 0.500000;, - 0.062500; 0.500000;, - 0.062500; 0.625000;, - 0.687500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 1.000000;, - 0.687500; 1.000000;, - 0.687500; 0.625000;, - 0.625000; 0.625000;, - 0.625000; 1.000000;, - 0.687500; 1.000000;, - 0.687500; 0.625000;, - 0.687500; 1.000000;, - 0.625000; 1.000000;, - 0.625000; 0.625000;, - 0.687500; 0.625000;, - 0.687500; 0.500000;, - 0.750000; 0.500000;, - 0.750000; 0.625000;, - 0.687500; 0.625000;, - 0.687500; 1.000000;, - 0.750000; 1.000000;, - 0.750000; 0.625000;, - 0.187500; 0.625000;, - 0.125000; 0.625000;, - 0.125000; 0.500000;, - 0.187500; 0.500000;, - 0.750000; 0.625000;, - 0.750000; 1.000000;, - 0.812500; 1.000000;, - 0.812500; 0.625000;, - 0.750000; 0.625000;, - 0.750000; 0.500000;, - 0.812500; 0.500000;, - 0.812500; 0.625000;, - 0.812500; 0.625000;, - 0.812500; 1.000000;, - 0.875000; 1.000000;, - 0.875000; 0.625000;, - 0.125000; 0.625000;, - 0.062500; 0.625000;, - 0.062500; 0.500000;, - 0.125000; 0.500000;, - 1.000000; 0.250000;, - 0.875000; 0.250000;, - 0.875000; 0.500000;, - 1.000000; 0.500000;, - 0.875000; 0.250000;, - 0.750000; 0.250000;, - 0.750000; 0.500000;, - 0.875000; 0.500000;, - 0.750000; 0.250000;, - 0.625000; 0.250000;, - 0.625000; 0.500000;, - 0.750000; 0.500000;, - 0.875000; 0.250000;, - 0.875000; 0.000000;, - 0.750000; 0.000000;, - 0.750000; 0.250000;, - 0.750000; 0.250000;, - 0.750000; 0.000000;, - 0.625000; 0.000000;, - 0.625000; 0.250000;, - 0.500000; 0.250000;, - 0.500000; 0.500000;, - 0.625000; 0.500000;, - 0.625000; 0.250000;; - } // End of Player UV coordinates - XSkinMeshHeader { - 1; - 3; - 6; - } - SkinWeights { - "Armature_Leg_Right"; - 24; - 20, - 21, - 22, - 23, - 64, - 65, - 66, - 67, - 80, - 81, - 82, - 83, - 88, - 89, - 90, - 91, - 124, - 125, - 126, - 127, - 140, - 141, - 142, - 143; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000,-1.000000, 0.000000, 0.000000, - -1.000000, 6.750001,-0.000001, 1.000000;; - } // End of Armature_Leg_Right skin weights - SkinWeights { - "Armature_Body"; - 24; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 92, - 93, - 94, - 95; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.000000,-1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - 0.000000,-6.750000,-0.000001, 1.000000;; - } // End of Armature_Body skin weights - SkinWeights { - "Armature_Arm_Right"; - 24; - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 112, - 113, - 114, - 115, - 120, - 121, - 122, - 123, - 128, - 129, - 130, - 131, - 136, - 137, - 138, - 139; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.989214, 0.143940, 0.027164, 0.000000, - -0.027450,-0.000000, 0.999623, 0.000000, - 0.143886,-0.989587, 0.003951, 0.000000, - -3.920884,13.071540,-0.107668, 1.000000;; - } // End of Armature_Arm_Right skin weights - SkinWeights { - "Armature_Leg_Left"; - 24; - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 60, - 61, - 62, - 63, - 68, - 69, - 70, - 71, - 84, - 85, - 86, - 87, - 100, - 101, - 102, - 103; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000,-0.000000,-0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - -0.000000,-1.000000, 0.000000, 0.000000, - 1.000000, 6.750001,-0.000001, 1.000000;; - } // End of Armature_Leg_Left skin weights - SkinWeights { - "Armature_Arm_Left"; - 24; - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 116, - 117, - 118, - 119, - 132, - 133, - 134, - 135; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.989214,-0.143940,-0.027164, 0.000000, - 0.027450,-0.000000, 0.999623, 0.000000, - -0.143886,-0.989587, 0.003951, 0.000000, - 3.920884,13.071540,-0.107668, 1.000000;; - } // End of Armature_Arm_Left skin weights - SkinWeights { - "Armature_Head"; - 48; - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 96, - 97, - 98, - 99, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - -1.000000, 0.000000,-0.000000, 0.000000, - -0.000000,-0.000000, 1.000000, 0.000000, - 0.000000, 1.000000, 0.000000, 0.000000, - -0.000000,-13.500000,-0.000002, 1.000000;; - } // End of Armature_Head skin weights - } // End of Player mesh - } // End of Player - } // End of Armature -} // End of Root -AnimationSet ArmatureAction { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 189; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.000000, 0.000000,-10.000000;;, - 1;3; 0.000000, 0.000000,-10.000000;;, - 2;3; 0.000000, 0.000000,-10.000000;;, - 3;3; 0.000000, 0.000000,-10.000000;;, - 4;3; 0.000000, 0.000000,-10.000000;;, - 5;3; 0.000000, 0.000000,-10.000000;;, - 6;3; 0.000000, 0.000000,-10.000000;;, - 7;3; 0.000000, 0.000000,-10.000000;;, - 8;3; 0.000000, 0.000000,-10.000000;;, - 9;3; 0.000000, 0.000000,-10.000000;;, - 10;3; 0.000000, 0.000000,-10.000000;;, - 11;3; 0.000000, 0.000000,-10.000000;;, - 12;3; 0.000000, 0.000000,-10.000000;;, - 13;3; 0.000000, 0.000000,-10.000000;;, - 14;3; 0.000000, 0.000000,-10.000000;;, - 15;3; 0.000000, 0.000000,-10.000000;;, - 16;3; 0.000000, 0.000000,-10.000000;;, - 17;3; 0.000000, 0.000000,-10.000000;;, - 18;3; 0.000000, 0.000000,-10.000000;;, - 19;3; 0.000000, 0.000000,-10.000000;;, - 20;3; 0.000000, 0.000000,-10.000000;;, - 21;3; 0.000000, 0.000000,-10.000000;;, - 22;3; 0.000000, 0.000000,-10.000000;;, - 23;3; 0.000000, 0.000000,-10.000000;;, - 24;3; 0.000000, 0.000000,-10.000000;;, - 25;3; 0.000000, 0.000000,-10.000000;;, - 26;3; 0.000000, 0.000000,-10.000000;;, - 27;3; 0.000000, 0.000000,-10.000000;;, - 28;3; 0.000000, 0.000000,-10.000000;;, - 29;3; 0.000000, 0.000000,-10.000000;;, - 30;3; 0.000000, 0.000000,-10.000000;;, - 31;3; 0.000000, 0.000000,-10.000000;;, - 32;3; 0.000000, 0.000000,-10.000000;;, - 33;3; 0.000000, 0.000000,-10.000000;;, - 34;3; 0.000000, 0.000000,-10.000000;;, - 35;3; 0.000000, 0.000000,-10.000000;;, - 36;3; 0.000000, 0.000000,-10.000000;;, - 37;3; 0.000000, 0.000000,-10.000000;;, - 38;3; 0.000000, 0.000000,-10.000000;;, - 39;3; 0.000000, 0.000000,-10.000000;;, - 40;3; 0.000000, 0.000000,-10.000000;;, - 41;3; 0.000000, 0.000000,-10.000000;;, - 42;3; 0.000000, 0.000000,-10.000000;;, - 43;3; 0.000000, 0.000000,-10.000000;;, - 44;3; 0.000000, 0.000000,-10.000000;;, - 45;3; 0.000000, 0.000000,-10.000000;;, - 46;3; 0.000000, 0.000000,-10.000000;;, - 47;3; 0.000000, 0.000000,-10.000000;;, - 48;3; 0.000000, 0.000000,-10.000000;;, - 49;3; 0.000000, 0.000000,-10.000000;;, - 50;3; 0.000000, 0.000000,-10.000000;;, - 51;3; 0.000000, 0.000000,-10.000000;;, - 52;3; 0.000000, 0.000000,-10.000000;;, - 53;3; 0.000000, 0.000000,-10.000000;;, - 54;3; 0.000000, 0.000000,-10.000000;;, - 55;3; 0.000000, 0.000000,-10.000000;;, - 56;3; 0.000000, 0.000000,-10.000000;;, - 57;3; 0.000000, 0.000000,-10.000000;;, - 58;3; 0.000000, 0.000000,-10.000000;;, - 59;3; 0.000000, 0.000000,-10.000000;;, - 60;3; 0.000000, 0.000000,-10.000000;;, - 61;3; 0.000000, 0.000000,-10.000000;;, - 62;3; 0.000000, 0.000000,-10.000000;;, - 63;3; 0.000000, 0.000000,-10.000000;;, - 64;3; 0.000000, 0.000000,-10.000000;;, - 65;3; 0.000000, 0.000000,-10.000000;;, - 66;3; 0.000000, 0.000000,-10.000000;;, - 67;3; 0.000000, 0.000000,-10.000000;;, - 68;3; 0.000000, 0.000000,-10.000000;;, - 69;3; 0.000000, 0.000000,-10.000000;;, - 70;3; 0.000000, 0.000000,-10.000000;;, - 71;3; 0.000000, 0.000000,-10.000000;;, - 72;3; 0.000000, 0.000000,-10.000000;;, - 73;3; 0.000000, 0.000000,-10.000000;;, - 74;3; 0.000000, 0.000000,-10.000000;;, - 75;3; 0.000000, 0.000000,-10.000000;;, - 76;3; 0.000000, 0.000000,-10.000000;;, - 77;3; 0.000000, 0.000000,-10.000000;;, - 78;3; 0.000000, 0.000000,-10.000000;;, - 79;3; 0.000000, 0.000000,-10.000000;;, - 80;3; 0.000000, 0.000000,-10.000000;;, - 81;3; 0.000000, 0.000000,-10.000000;;, - 82;3; 0.000000, 0.000000,-10.000000;;, - 83;3; 0.000000, 0.000000,-10.000000;;, - 84;3; 0.000000, 0.000000,-10.000000;;, - 85;3; 0.000000, 0.000000,-10.000000;;, - 86;3; 0.000000, 0.000000,-10.000000;;, - 87;3; 0.000000, 0.000000,-10.000000;;, - 88;3; 0.000000, 0.000000,-10.000000;;, - 89;3; 0.000000, 0.000000,-10.000000;;, - 90;3; 0.000000, 0.000000,-10.000000;;, - 91;3; 0.000000, 0.000000,-10.000000;;, - 92;3; 0.000000, 0.000000,-10.000000;;, - 93;3; 0.000000, 0.000000,-10.000000;;, - 94;3; 0.000000, 0.000000,-10.000000;;, - 95;3; 0.000000, 0.000000,-10.000000;;, - 96;3; 0.000000, 0.000000,-10.000000;;, - 97;3; 0.000000, 0.000000,-10.000000;;, - 98;3; 0.000000, 0.000000,-10.000000;;, - 99;3; 0.000000, 0.000000,-10.000000;;, - 100;3; 0.000000, 0.000000,-10.000000;;, - 101;3; 0.000000, 0.000000,-10.000000;;, - 102;3; 0.000000, 0.000000,-10.000000;;, - 103;3; 0.000000, 0.000000,-10.000000;;, - 104;3; 0.000000, 0.000000,-10.000000;;, - 105;3; 0.000000, 0.000000,-10.000000;;, - 106;3; 0.000000, 0.000000,-10.000000;;, - 107;3; 0.000000, 0.000000,-10.000000;;, - 108;3; 0.000000, 0.000000,-10.000000;;, - 109;3; 0.000000, 0.000000,-10.000000;;, - 110;3; 0.000000, 0.000000,-10.000000;;, - 111;3; 0.000000, 0.000000,-10.000000;;, - 112;3; 0.000000, 0.000000,-10.000000;;, - 113;3; 0.000000, 0.000000,-10.000000;;, - 114;3; 0.000000, 0.000000,-10.000000;;, - 115;3; 0.000000, 0.000000,-10.000000;;, - 116;3; 0.000000, 0.000000,-10.000000;;, - 117;3; 0.000000, 0.000000,-10.000000;;, - 118;3; 0.000000, 0.000000,-10.000000;;, - 119;3; 0.000000, 0.000000,-10.000000;;, - 120;3; 0.000000, 0.000000,-10.000000;;, - 121;3; 0.000000, 0.000000,-10.000000;;, - 122;3; 0.000000, 0.000000,-10.000000;;, - 123;3; 0.000000, 0.000000,-10.000000;;, - 124;3; 0.000000, 0.000000,-10.000000;;, - 125;3; 0.000000, 0.000000,-10.000000;;, - 126;3; 0.000000, 0.000000,-10.000000;;, - 127;3; 0.000000, 0.000000,-10.000000;;, - 128;3; 0.000000, 0.000000,-10.000000;;, - 129;3; 0.000000, 0.000000,-10.000000;;, - 130;3; 0.000000, 0.000000,-10.000000;;, - 131;3; 0.000000, 0.000000,-10.000000;;, - 132;3; 0.000000, 0.000000,-10.000000;;, - 133;3; 0.000000, 0.000000,-10.000000;;, - 134;3; 0.000000, 0.000000,-10.000000;;, - 135;3; 0.000000, 0.000000,-10.000000;;, - 136;3; 0.000000, 0.000000,-10.000000;;, - 137;3; 0.000000, 0.000000,-10.000000;;, - 138;3; 0.000000, 0.000000,-10.000000;;, - 139;3; 0.000000, 0.000000,-10.000000;;, - 140;3; 0.000000, 0.000000,-10.000000;;, - 141;3; 0.000000, 0.000000,-10.000000;;, - 142;3; 0.000000, 0.000000,-10.000000;;, - 143;3; 0.000000, 0.000000,-10.000000;;, - 144;3; 0.000000, 0.000000,-10.000000;;, - 145;3; 0.000000, 0.000000,-10.000000;;, - 146;3; 0.000000, 0.000000,-10.000000;;, - 147;3; 0.000000, 0.000000,-10.000000;;, - 148;3; 0.000000, 0.000000,-10.000000;;, - 149;3; 0.000000, 0.000000,-10.000000;;, - 150;3; 0.000000, 0.000000,-10.000000;;, - 151;3; 0.000000, 0.000000,-10.000000;;, - 152;3; 0.000000, 0.000000,-10.000000;;, - 153;3; 0.000000, 0.000000,-10.000000;;, - 154;3; 0.000000, 0.000000,-10.000000;;, - 155;3; 0.000000, 0.000000,-10.000000;;, - 156;3; 0.000000, 0.000000,-10.000000;;, - 157;3; 0.000000, 0.000000,-10.000000;;, - 158;3; 0.000000, 0.000000,-10.000000;;, - 159;3; 0.000000, 0.000000,-10.000000;;, - 160;3; 0.000000, 0.000000,-10.000000;;, - 161;3; 0.000000, 0.000000,-10.000000;;, - 162;3; 0.000000, 0.000000,-10.000000;;, - 163;3; 0.000000, 0.000000,-10.000000;;, - 164;3; 0.000000, 0.000000,-10.000000;;, - 165;3; 0.000000, 0.000000,-10.000000;;, - 166;3; 0.000000, 0.000000,-10.000000;;, - 167;3; 0.000000, 0.000000,-10.000000;;, - 168;3; 0.000000, 0.000000,-10.000000;;, - 169;3; 0.000000, 0.000000,-10.000000;;, - 170;3; 0.000000, 0.000000,-10.000000;;, - 171;3; 0.000000, 0.000000,-10.000000;;, - 172;3; 0.000000, 0.000000,-10.000000;;, - 173;3; 0.000000, 0.000000,-10.000000;;, - 174;3; 0.000000, 0.000000,-10.000000;;, - 175;3; 0.000000, 0.000000,-10.000000;;, - 176;3; 0.000000, 0.000000,-10.000000;;, - 177;3; 0.000000, 0.000000,-10.000000;;, - 178;3; 0.000000, 0.000000,-10.000000;;, - 179;3; 0.000000, 0.000000,-10.000000;;, - 180;3; 0.000000, 0.000000,-10.000000;;, - 181;3; 0.000000, 0.000000,-10.000000;;, - 182;3; 0.000000, 0.000000,-10.000000;;, - 183;3; 0.000000, 0.000000,-10.000000;;, - 184;3; 0.000000, 0.000000,-10.000000;;, - 185;3; 0.000000, 0.000000,-10.000000;;, - 186;3; 0.000000, 0.000000,-10.000000;;, - 187;3; 0.000000, 0.000000,-10.000000;;, - 188;3; 0.000000, 0.000000,-10.000000;;; - } - } - Animation { - {Armature_Body} - AnimationKey { // Rotation - 0; - 189; - 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 1;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 2;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 3;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 4;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 5;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 6;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 7;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 8;4;-0.696414, 0.717343, 0.000000, 0.000000;;, - 9;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 10;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 11;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 12;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 13;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 14;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 15;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 16;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 17;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 18;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 19;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 20;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 21;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 22;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 23;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 24;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 25;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 26;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 27;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 28;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 29;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 30;4;-0.691349, 0.722192, 0.000000, 0.000000;;, - 31;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 32;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 33;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 34;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 35;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 36;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 37;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 38;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 39;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 41;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 42;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 43;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 44;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 45;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 46;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 47;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 48;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 49;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 50;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 51;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 52;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 53;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 54;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 55;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 56;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 57;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 58;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 59;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 60;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 61;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 62;4;-0.676212, 0.736682, 0.000000, 0.000000;;, - 63;4;-0.676927, 0.735998, 0.000000, 0.000000;;, - 64;4;-0.677865, 0.735100, 0.000000, 0.000000;;, - 65;4;-0.679001, 0.734013, 0.000000, 0.000000;;, - 66;4;-0.680312, 0.732757, 0.000000, 0.000000;;, - 67;4;-0.681779, 0.731353, 0.000000, 0.000000;;, - 68;4;-0.683387, 0.729813, 0.000000, 0.000000;;, - 69;4;-0.685120, 0.728154, 0.000000, 0.000000;;, - 70;4;-0.686966, 0.726388, 0.000000, 0.000000;;, - 71;4;-0.688910, 0.724526, 0.000000, 0.000000;;, - 72;4;-0.690941, 0.722582, 0.000000, 0.000000;;, - 73;4;-0.693046, 0.720567, 0.000000, 0.000000;;, - 74;4;-0.695210, 0.718495, 0.000000, 0.000000;;, - 75;4;-0.697417, 0.716383, 0.000000, 0.000000;;, - 76;4;-0.699643, 0.714252, 0.000000, 0.000000;;, - 77;4;-0.701856, 0.712133, 0.000000, 0.000000;;, - 78;4;-0.703995, 0.710086, 0.000000, 0.000000;;, - 79;4;-0.705928, 0.708235, 0.000000, 0.000000;;, - 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 82;4;-0.705928, 0.708235, 0.000000, 0.000000;;, - 83;4;-0.703995, 0.710086, 0.000000, 0.000000;;, - 84;4;-0.701856, 0.712133, 0.000000, 0.000000;;, - 85;4;-0.699643, 0.714252, 0.000000, 0.000000;;, - 86;4;-0.697417, 0.716383, 0.000000, 0.000000;;, - 87;4;-0.695210, 0.718495, 0.000000, 0.000000;;, - 88;4;-0.693046, 0.720567, 0.000000, 0.000000;;, - 89;4;-0.690941, 0.722582, 0.000000, 0.000000;;, - 90;4;-0.688910, 0.724526, 0.000000, 0.000000;;, - 91;4;-0.686966, 0.726388, 0.000000, 0.000000;;, - 92;4;-0.685120, 0.728154, 0.000000, 0.000000;;, - 93;4;-0.683387, 0.729813, 0.000000, 0.000000;;, - 94;4;-0.681779, 0.731353, 0.000000, 0.000000;;, - 95;4;-0.680312, 0.732758, 0.000000, 0.000000;;, - 96;4;-0.679001, 0.734013, 0.000000, 0.000000;;, - 97;4;-0.677865, 0.735100, 0.000000, 0.000000;;, - 98;4;-0.676927, 0.735998, 0.000000, 0.000000;;, - 99;4;-0.676212, 0.736682, 0.000000, 0.000000;;, - 100;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 101;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 102;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 103;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 104;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 105;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 106;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 107;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 108;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 109;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 110;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 111;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 112;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 113;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 114;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 115;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 116;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 117;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 118;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 119;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 120;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 122;4;-0.706933, 0.707273, 0.000000, 0.000000;;, - 123;4;-0.706408, 0.707776, 0.000000, 0.000000;;, - 124;4;-0.705530, 0.708616, 0.000000, 0.000000;;, - 125;4;-0.704305, 0.709789, 0.000000, 0.000000;;, - 126;4;-0.702749, 0.711279, 0.000000, 0.000000;;, - 127;4;-0.700886, 0.713062, 0.000000, 0.000000;;, - 128;4;-0.698758, 0.715099, 0.000000, 0.000000;;, - 129;4;-0.696415, 0.717343, 0.000000, 0.000000;;, - 130;4;-0.693920, 0.719730, 0.000000, 0.000000;;, - 131;4;-0.691348, 0.722192, 0.000000, 0.000000;;, - 132;4;-0.688777, 0.724654, 0.000000, 0.000000;;, - 133;4;-0.686283, 0.727042, 0.000000, 0.000000;;, - 134;4;-0.683939, 0.729285, 0.000000, 0.000000;;, - 135;4;-0.681811, 0.731323, 0.000000, 0.000000;;, - 136;4;-0.679949, 0.733105, 0.000000, 0.000000;;, - 137;4;-0.678392, 0.734596, 0.000000, 0.000000;;, - 138;4;-0.677167, 0.735768, 0.000000, 0.000000;;, - 139;4;-0.676289, 0.736609, 0.000000, 0.000000;;, - 140;4;-0.675764, 0.737111, 0.000000, 0.000000;;, - 141;4;-0.675590, 0.737277, 0.000000, 0.000000;;, - 142;4;-0.675754, 0.737121, 0.000000, 0.000000;;, - 143;4;-0.676211, 0.736683, 0.000000, 0.000000;;, - 144;4;-0.676923, 0.736001, 0.000000, 0.000000;;, - 145;4;-0.677857, 0.735107, 0.000000, 0.000000;;, - 146;4;-0.678987, 0.734026, 0.000000, 0.000000;;, - 147;4;-0.680291, 0.732778, 0.000000, 0.000000;;, - 148;4;-0.681750, 0.731381, 0.000000, 0.000000;;, - 149;4;-0.683349, 0.729852, 0.000000, 0.000000;;, - 150;4;-0.685071, 0.728203, 0.000000, 0.000000;;, - 151;4;-0.686905, 0.726448, 0.000000, 0.000000;;, - 152;4;-0.688838, 0.724598, 0.000000, 0.000000;;, - 153;4;-0.690858, 0.722664, 0.000000, 0.000000;;, - 154;4;-0.692953, 0.720659, 0.000000, 0.000000;;, - 155;4;-0.695109, 0.718596, 0.000000, 0.000000;;, - 156;4;-0.697310, 0.716489, 0.000000, 0.000000;;, - 157;4;-0.699536, 0.714358, 0.000000, 0.000000;;, - 158;4;-0.701753, 0.712235, 0.000000, 0.000000;;, - 159;4;-0.703909, 0.710171, 0.000000, 0.000000;;, - 160;4;-0.705875, 0.708288, 0.000000, 0.000000;;, - 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 162;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 163;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 164;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 165;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 166;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 167;4;-0.000000, 1.000000, 0.000000, 0.000000;;, - 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 187;4;-0.707107, 0.707107, 0.000000, 0.000000;;, - 188;4;-0.707107, 0.707107, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-0.000000, 0.000000, 6.750000;;, - 1;3;-0.000000, 0.000000, 6.750000;;, - 2;3;-0.000000, 0.000000, 6.750000;;, - 3;3;-0.000000, 0.000000, 6.750000;;, - 4;3;-0.000000, 0.000000, 6.750000;;, - 5;3;-0.000000, 0.000000, 6.750000;;, - 6;3;-0.000000, 0.000000, 6.750000;;, - 7;3;-0.000000, 0.000000, 6.750000;;, - 8;3;-0.000000, 0.000000, 6.750000;;, - 9;3;-0.000000, 0.000000, 6.750000;;, - 10;3;-0.000000, 0.000000, 6.750000;;, - 11;3;-0.000000, 0.000000, 6.750000;;, - 12;3;-0.000000, 0.000000, 6.750000;;, - 13;3;-0.000000, 0.000000, 6.750000;;, - 14;3;-0.000000, 0.000000, 6.750000;;, - 15;3;-0.000000, 0.000000, 6.750000;;, - 16;3;-0.000000, 0.000000, 6.750000;;, - 17;3;-0.000000, 0.000000, 6.750000;;, - 18;3;-0.000000, 0.000000, 6.750000;;, - 19;3;-0.000000, 0.000000, 6.750000;;, - 20;3;-0.000000, 0.000000, 6.750000;;, - 21;3;-0.000000, 0.000000, 6.750000;;, - 22;3;-0.000000, 0.000000, 6.750000;;, - 23;3;-0.000000, 0.000000, 6.750000;;, - 24;3;-0.000000, 0.000000, 6.750000;;, - 25;3;-0.000000, 0.000000, 6.750000;;, - 26;3;-0.000000, 0.000000, 6.750000;;, - 27;3;-0.000000, 0.000000, 6.750000;;, - 28;3;-0.000000, 0.000000, 6.750000;;, - 29;3;-0.000000, 0.000000, 6.750000;;, - 30;3;-0.000000, 0.000000, 6.750000;;, - 31;3;-0.000000, 0.000000, 6.750000;;, - 32;3;-0.000000, 0.000000, 6.750000;;, - 33;3;-0.000000, 0.000000, 6.750000;;, - 34;3;-0.000000, 0.000000, 6.750000;;, - 35;3;-0.000000, 0.000000, 6.750000;;, - 36;3;-0.000000, 0.000000, 6.750000;;, - 37;3;-0.000000, 0.000000, 6.750000;;, - 38;3;-0.000000, 0.000000, 6.750000;;, - 39;3;-0.000000, 0.000000, 6.750000;;, - 40;3;-0.000000, 0.000000, 6.750000;;, - 41;3;-0.000000, 0.000000, 6.750000;;, - 42;3;-0.000000, 0.000000, 6.750000;;, - 43;3;-0.000000, 0.000000, 6.750000;;, - 44;3;-0.000000, 0.000000, 6.750000;;, - 45;3;-0.000000, 0.000000, 6.750000;;, - 46;3;-0.000000, 0.000000, 6.750000;;, - 47;3;-0.000000, 0.000000, 6.750000;;, - 48;3;-0.000000, 0.000000, 6.750000;;, - 49;3;-0.000000, 0.000000, 6.750000;;, - 50;3;-0.000000, 0.000000, 6.750000;;, - 51;3;-0.000000, 0.000000, 6.750000;;, - 52;3;-0.000000, 0.000000, 6.750000;;, - 53;3;-0.000000, 0.000000, 6.750000;;, - 54;3;-0.000000, 0.000000, 6.750000;;, - 55;3;-0.000000, 0.000000, 6.750000;;, - 56;3;-0.000000, 0.000000, 6.750000;;, - 57;3;-0.000000, 0.000000, 6.750000;;, - 58;3;-0.000000, 0.000000, 6.750000;;, - 59;3;-0.000000, 0.000000, 6.750000;;, - 60;3;-0.000000, 0.000000, 6.750000;;, - 61;3;-0.000000, 0.000000, 6.750000;;, - 62;3;-0.000000, 0.000000, 6.750000;;, - 63;3;-0.000000, 0.000000, 6.750000;;, - 64;3;-0.000000, 0.000000, 6.750000;;, - 65;3;-0.000000, 0.000000, 6.750000;;, - 66;3;-0.000000, 0.000000, 6.750000;;, - 67;3;-0.000000, 0.000000, 6.750000;;, - 68;3;-0.000000, 0.000000, 6.750000;;, - 69;3;-0.000000, 0.000000, 6.750000;;, - 70;3;-0.000000, 0.000000, 6.750000;;, - 71;3;-0.000000, 0.000000, 6.750000;;, - 72;3;-0.000000, 0.000000, 6.750000;;, - 73;3;-0.000000, 0.000000, 6.750000;;, - 74;3;-0.000000, 0.000000, 6.750000;;, - 75;3;-0.000000, 0.000000, 6.750000;;, - 76;3;-0.000000, 0.000000, 6.750000;;, - 77;3;-0.000000, 0.000000, 6.750000;;, - 78;3;-0.000000, 0.000000, 6.750000;;, - 79;3;-0.000000, 0.000000, 6.750000;;, - 80;3;-0.000000, 0.000000, 6.750000;;, - 81;3;-0.000000, 0.000000, 1.000000;;, - 82;3;-0.000000, 0.000000, 1.000000;;, - 83;3;-0.000000, 0.000000, 1.000000;;, - 84;3;-0.000000, 0.000000, 1.000000;;, - 85;3;-0.000000, 0.000000, 1.000000;;, - 86;3;-0.000000, 0.000000, 1.000000;;, - 87;3;-0.000000, 0.000000, 1.000000;;, - 88;3;-0.000000, 0.000000, 1.000000;;, - 89;3;-0.000000, 0.000000, 1.000000;;, - 90;3;-0.000000, 0.000000, 1.000000;;, - 91;3;-0.000000, 0.000000, 1.000000;;, - 92;3;-0.000000, 0.000000, 1.000000;;, - 93;3;-0.000000, 0.000000, 1.000000;;, - 94;3;-0.000000, 0.000000, 1.000000;;, - 95;3;-0.000000, 0.000000, 1.000000;;, - 96;3;-0.000000, 0.000000, 1.000000;;, - 97;3;-0.000000, 0.000000, 1.000000;;, - 98;3;-0.000000, 0.000000, 1.000000;;, - 99;3;-0.000000, 0.000000, 1.000000;;, - 100;3;-0.000000, 0.000000, 1.000000;;, - 101;3;-0.000000, 0.000000, 1.000000;;, - 102;3;-0.000000, 0.000000, 1.000000;;, - 103;3;-0.000000, 0.000000, 1.000000;;, - 104;3;-0.000000, 0.000000, 1.000000;;, - 105;3;-0.000000, 0.000000, 1.000000;;, - 106;3;-0.000000, 0.000000, 1.000000;;, - 107;3;-0.000000, 0.000000, 1.000000;;, - 108;3;-0.000000, 0.000000, 1.000000;;, - 109;3;-0.000000, 0.000000, 1.000000;;, - 110;3;-0.000000, 0.000000, 1.000000;;, - 111;3;-0.000000, 0.000000, 1.000000;;, - 112;3;-0.000000, 0.000000, 1.000000;;, - 113;3;-0.000000, 0.000000, 1.000000;;, - 114;3;-0.000000, 0.000000, 1.000000;;, - 115;3;-0.000000, 0.000000, 1.000000;;, - 116;3;-0.000000, 0.000000, 1.000000;;, - 117;3;-0.000000, 0.000000, 1.000000;;, - 118;3;-0.000000, 0.000000, 1.000000;;, - 119;3;-0.000000, 0.000000, 1.000000;;, - 120;3;-0.000000, 0.000000, 1.000000;;, - 121;3;-0.000000, 0.000000, 1.000000;;, - 122;3;-0.000000, 0.000000, 1.000000;;, - 123;3;-0.000000, 0.000000, 1.000000;;, - 124;3;-0.000000, 0.000000, 1.000000;;, - 125;3;-0.000000, 0.000000, 1.000000;;, - 126;3;-0.000000, 0.000000, 1.000000;;, - 127;3;-0.000000, 0.000000, 1.000000;;, - 128;3;-0.000000, 0.000000, 1.000000;;, - 129;3;-0.000000, 0.000000, 1.000000;;, - 130;3;-0.000000, 0.000000, 1.000000;;, - 131;3;-0.000000, 0.000000, 1.000000;;, - 132;3;-0.000000, 0.000000, 1.000000;;, - 133;3;-0.000000, 0.000000, 1.000000;;, - 134;3;-0.000000, 0.000000, 1.000000;;, - 135;3;-0.000000, 0.000000, 1.000000;;, - 136;3;-0.000000, 0.000000, 1.000000;;, - 137;3;-0.000000, 0.000000, 1.000000;;, - 138;3;-0.000000, 0.000000, 1.000000;;, - 139;3;-0.000000, 0.000000, 1.000000;;, - 140;3;-0.000000, 0.000000, 1.000000;;, - 141;3;-0.000000, 0.000000, 1.000000;;, - 142;3;-0.000000, 0.000000, 1.000000;;, - 143;3;-0.000000, 0.000000, 1.000000;;, - 144;3;-0.000000, 0.000000, 1.000000;;, - 145;3;-0.000000, 0.000000, 1.000000;;, - 146;3;-0.000000, 0.000000, 1.000000;;, - 147;3;-0.000000, 0.000000, 1.000000;;, - 148;3;-0.000000, 0.000000, 1.000000;;, - 149;3;-0.000000, 0.000000, 1.000000;;, - 150;3;-0.000000, 0.000000, 1.000000;;, - 151;3;-0.000000, 0.000000, 1.000000;;, - 152;3;-0.000000, 0.000000, 1.000000;;, - 153;3;-0.000000, 0.000000, 1.000000;;, - 154;3;-0.000000, 0.000000, 1.000000;;, - 155;3;-0.000000, 0.000000, 1.000000;;, - 156;3;-0.000000, 0.000000, 1.000000;;, - 157;3;-0.000000, 0.000000, 1.000000;;, - 158;3;-0.000000, 0.000000, 1.000000;;, - 159;3;-0.000000, 0.000000, 1.000000;;, - 160;3;-0.000000, 0.000000, 1.000000;;, - 161;3;-0.000000, 0.000000, 1.000000;;, - 162;3;-0.000000, 2.000001, 1.000000;;, - 163;3;-0.000000, 2.000001, 1.000000;;, - 164;3;-0.000000, 2.000001, 1.000000;;, - 165;3;-0.000000, 2.000001, 1.000000;;, - 166;3;-0.000000, 2.000001, 1.000000;;, - 167;3;-0.000000, 2.000001, 1.000000;;, - 168;3;-0.000000, 0.000000, 6.750000;;, - 169;3;-0.000000, 0.000000, 6.750000;;, - 170;3;-0.000000, 0.000000, 6.750000;;, - 171;3;-0.000000, 0.000000, 6.750000;;, - 172;3;-0.000000, 0.000000, 6.750000;;, - 173;3;-0.000000, 0.000000, 6.750000;;, - 174;3;-0.000000, 0.000000, 6.750000;;, - 175;3;-0.000000, 0.000000, 6.750000;;, - 176;3;-0.000000, 0.000000, 6.750000;;, - 177;3;-0.000000, 0.000000, 6.750000;;, - 178;3;-0.000000, 0.000000, 6.750000;;, - 179;3;-0.000000, 0.000000, 6.750000;;, - 180;3;-0.000000, 0.000000, 6.750000;;, - 181;3;-0.000000, 0.000000, 6.750000;;, - 182;3;-0.000000, 0.000000, 6.750000;;, - 183;3;-0.000000, 0.000000, 6.750000;;, - 184;3;-0.000000, 0.000000, 6.750000;;, - 185;3;-0.000000, 0.000000, 6.750000;;, - 186;3;-0.000000, 0.000000, 6.750000;;, - 187;3;-0.000000, 0.000000, 6.750000;;, - 188;3;-0.000000, 0.000000, 6.750000;;; - } - } - Animation { - {Armature_Head} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 1;4;-0.000120,-0.000005, 0.999993,-0.000240;;, - 2;4;-0.000483,-0.000021, 0.999974,-0.000967;;, - 3;4;-0.001090,-0.000048, 0.999941,-0.002181;;, - 4;4;-0.001937,-0.000085, 0.999894,-0.003876;;, - 5;4;-0.003014,-0.000132, 0.999835,-0.006030;;, - 6;4;-0.004301,-0.000188, 0.999765,-0.008607;;, - 7;4;-0.005773,-0.000252, 0.999685,-0.011553;;, - 8;4;-0.007394,-0.000323, 0.999596,-0.014795;;, - 9;4;-0.009118,-0.000398, 0.999502,-0.018246;;, - 10;4;-0.010897,-0.000476, 0.999405,-0.021804;;, - 11;4;-0.012675,-0.000553, 0.999308,-0.025363;;, - 12;4;-0.014400,-0.000629, 0.999214,-0.028814;;, - 13;4;-0.016021,-0.000699, 0.999126,-0.032056;;, - 14;4;-0.017493,-0.000764, 0.999045,-0.035002;;, - 15;4;-0.018780,-0.000820, 0.998975,-0.037578;;, - 16;4;-0.019857,-0.000867, 0.998916,-0.039733;;, - 17;4;-0.020704,-0.000904, 0.998870,-0.041427;;, - 18;4;-0.021311,-0.000930, 0.998837,-0.042642;;, - 19;4;-0.021674,-0.000946, 0.998817,-0.043369;;, - 20;4;-0.021794,-0.000952, 0.998811,-0.043609;;, - 21;4;-0.021720,-0.000948, 0.998817,-0.043369;;, - 22;4;-0.021494,-0.000938, 0.998837,-0.042642;;, - 23;4;-0.021108,-0.000922, 0.998870,-0.041427;;, - 24;4;-0.020560,-0.000898, 0.998916,-0.039733;;, - 25;4;-0.019848,-0.000867, 0.998975,-0.037578;;, - 26;4;-0.018975,-0.000828, 0.999045,-0.035002;;, - 27;4;-0.017947,-0.000784, 0.999126,-0.032056;;, - 28;4;-0.016778,-0.000733, 0.999214,-0.028814;;, - 29;4;-0.015484,-0.000676, 0.999308,-0.025363;;, - 30;4;-0.014088,-0.000615, 0.999405,-0.021804;;, - 31;4;-0.012616,-0.000551, 0.999502,-0.018246;;, - 32;4;-0.011095,-0.000484, 0.999597,-0.014795;;, - 33;4;-0.009555,-0.000417, 0.999685,-0.011553;;, - 34;4;-0.008021,-0.000350, 0.999765,-0.008607;;, - 35;4;-0.006517,-0.000285, 0.999835,-0.006030;;, - 36;4;-0.005062,-0.000221, 0.999894,-0.003876;;, - 37;4;-0.003674,-0.000160, 0.999941,-0.002181;;, - 38;4;-0.002362,-0.000103, 0.999974,-0.000967;;, - 39;4;-0.001136,-0.000050, 0.999994,-0.000240;;, - 40;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 41;4; 0.001136, 0.000050, 0.999993,-0.000240;;, - 42;4; 0.002362, 0.000103, 0.999974,-0.000967;;, - 43;4; 0.003674, 0.000160, 0.999941,-0.002181;;, - 44;4; 0.005062, 0.000221, 0.999894,-0.003876;;, - 45;4; 0.006517, 0.000285, 0.999835,-0.006030;;, - 46;4; 0.008021, 0.000350, 0.999765,-0.008607;;, - 47;4; 0.009555, 0.000417, 0.999685,-0.011553;;, - 48;4; 0.011095, 0.000484, 0.999596,-0.014795;;, - 49;4; 0.012616, 0.000551, 0.999502,-0.018246;;, - 50;4; 0.014088, 0.000615, 0.999405,-0.021804;;, - 51;4; 0.015484, 0.000676, 0.999308,-0.025363;;, - 52;4; 0.016778, 0.000733, 0.999214,-0.028814;;, - 53;4; 0.017947, 0.000784, 0.999126,-0.032056;;, - 54;4; 0.018975, 0.000828, 0.999045,-0.035002;;, - 55;4; 0.019848, 0.000867, 0.998975,-0.037578;;, - 56;4; 0.020560, 0.000898, 0.998916,-0.039733;;, - 57;4; 0.021108, 0.000922, 0.998870,-0.041427;;, - 58;4; 0.021494, 0.000938, 0.998837,-0.042642;;, - 59;4; 0.021720, 0.000948, 0.998817,-0.043369;;, - 60;4; 0.021794, 0.000952, 0.998811,-0.043609;;, - 61;4; 0.021681, 0.000947, 0.998817,-0.043383;;, - 62;4; 0.021364, 0.000933, 0.998834,-0.042748;;, - 63;4; 0.020870, 0.000911, 0.998861,-0.041759;;, - 64;4; 0.020221, 0.000883, 0.998896,-0.040461;;, - 65;4; 0.019436, 0.000849, 0.998939,-0.038890;;, - 66;4; 0.018529, 0.000809, 0.998989,-0.037076;;, - 67;4; 0.017514, 0.000765, 0.999044,-0.035045;;, - 68;4; 0.016402, 0.000716, 0.999105,-0.032820;;, - 69;4; 0.015204, 0.000664, 0.999170,-0.030422;;, - 70;4; 0.013928, 0.000608, 0.999240,-0.027869;;, - 71;4; 0.012583, 0.000549, 0.999313,-0.025178;;, - 72;4; 0.011179, 0.000488, 0.999390,-0.022368;;, - 73;4; 0.009723, 0.000425, 0.999469,-0.019456;;, - 74;4; 0.008227, 0.000359, 0.999551,-0.016461;;, - 75;4; 0.006701, 0.000293, 0.999634,-0.013408;;, - 76;4; 0.005161, 0.000225, 0.999718,-0.010327;;, - 77;4; 0.003631, 0.000159, 0.999802,-0.007266;;, - 78;4; 0.002152, 0.000094, 0.999883,-0.004305;;, - 79;4; 0.000815, 0.000036, 0.999956,-0.001631;;, - 80;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 81;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 82;4;-0.000815,-0.000036, 0.999956,-0.001631;;, - 83;4;-0.002152,-0.000094, 0.999883,-0.004305;;, - 84;4;-0.003631,-0.000159, 0.999802,-0.007266;;, - 85;4;-0.005161,-0.000225, 0.999718,-0.010327;;, - 86;4;-0.006701,-0.000293, 0.999634,-0.013408;;, - 87;4;-0.008226,-0.000359, 0.999551,-0.016461;;, - 88;4;-0.009723,-0.000425, 0.999469,-0.019456;;, - 89;4;-0.011179,-0.000488, 0.999390,-0.022368;;, - 90;4;-0.012583,-0.000549, 0.999313,-0.025178;;, - 91;4;-0.013928,-0.000608, 0.999240,-0.027869;;, - 92;4;-0.015204,-0.000664, 0.999170,-0.030422;;, - 93;4;-0.016402,-0.000716, 0.999105,-0.032820;;, - 94;4;-0.017514,-0.000765, 0.999044,-0.035045;;, - 95;4;-0.018529,-0.000809, 0.998989,-0.037076;;, - 96;4;-0.019436,-0.000849, 0.998939,-0.038890;;, - 97;4;-0.020221,-0.000883, 0.998896,-0.040461;;, - 98;4;-0.020870,-0.000911, 0.998861,-0.041759;;, - 99;4;-0.021364,-0.000933, 0.998834,-0.042748;;, - 100;4;-0.021681,-0.000947, 0.998817,-0.043383;;, - 101;4;-0.021794,-0.000952, 0.998811,-0.043609;;, - 102;4;-0.021720,-0.000948, 0.998817,-0.043369;;, - 103;4;-0.021494,-0.000938, 0.998837,-0.042642;;, - 104;4;-0.021108,-0.000922, 0.998870,-0.041427;;, - 105;4;-0.020560,-0.000898, 0.998916,-0.039733;;, - 106;4;-0.019848,-0.000867, 0.998975,-0.037578;;, - 107;4;-0.018975,-0.000828, 0.999045,-0.035002;;, - 108;4;-0.017947,-0.000784, 0.999126,-0.032056;;, - 109;4;-0.016778,-0.000733, 0.999214,-0.028814;;, - 110;4;-0.015484,-0.000676, 0.999308,-0.025363;;, - 111;4;-0.014088,-0.000615, 0.999405,-0.021804;;, - 112;4;-0.012616,-0.000551, 0.999502,-0.018246;;, - 113;4;-0.011095,-0.000484, 0.999597,-0.014795;;, - 114;4;-0.009555,-0.000417, 0.999685,-0.011553;;, - 115;4;-0.008021,-0.000350, 0.999765,-0.008607;;, - 116;4;-0.006517,-0.000285, 0.999835,-0.006030;;, - 117;4;-0.005062,-0.000221, 0.999894,-0.003876;;, - 118;4;-0.003674,-0.000160, 0.999941,-0.002181;;, - 119;4;-0.002362,-0.000103, 0.999974,-0.000967;;, - 120;4;-0.001136,-0.000050, 0.999994,-0.000240;;, - 121;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 122;4; 0.001136, 0.000050, 0.999993,-0.000240;;, - 123;4; 0.002362, 0.000103, 0.999974,-0.000967;;, - 124;4; 0.003674, 0.000160, 0.999941,-0.002181;;, - 125;4; 0.005062, 0.000221, 0.999894,-0.003876;;, - 126;4; 0.006517, 0.000285, 0.999835,-0.006030;;, - 127;4; 0.008021, 0.000350, 0.999765,-0.008607;;, - 128;4; 0.009555, 0.000417, 0.999685,-0.011553;;, - 129;4; 0.011095, 0.000484, 0.999596,-0.014795;;, - 130;4; 0.012616, 0.000551, 0.999502,-0.018246;;, - 131;4; 0.014088, 0.000615, 0.999405,-0.021804;;, - 132;4; 0.015484, 0.000676, 0.999308,-0.025363;;, - 133;4; 0.016778, 0.000733, 0.999214,-0.028814;;, - 134;4; 0.017947, 0.000784, 0.999126,-0.032056;;, - 135;4; 0.018975, 0.000828, 0.999045,-0.035002;;, - 136;4; 0.019848, 0.000867, 0.998975,-0.037578;;, - 137;4; 0.020560, 0.000898, 0.998916,-0.039733;;, - 138;4; 0.021109, 0.000922, 0.998870,-0.041427;;, - 139;4; 0.021494, 0.000938, 0.998837,-0.042642;;, - 140;4; 0.021720, 0.000948, 0.998817,-0.043369;;, - 141;4; 0.021794, 0.000952, 0.998811,-0.043609;;, - 142;4; 0.021681, 0.000947, 0.998817,-0.043383;;, - 143;4; 0.021364, 0.000933, 0.998834,-0.042748;;, - 144;4; 0.020870, 0.000911, 0.998861,-0.041759;;, - 145;4; 0.020221, 0.000883, 0.998896,-0.040461;;, - 146;4; 0.019436, 0.000849, 0.998939,-0.038890;;, - 147;4; 0.018529, 0.000809, 0.998989,-0.037076;;, - 148;4; 0.017514, 0.000765, 0.999044,-0.035045;;, - 149;4; 0.016402, 0.000716, 0.999105,-0.032820;;, - 150;4; 0.015204, 0.000664, 0.999170,-0.030422;;, - 151;4; 0.013928, 0.000608, 0.999240,-0.027869;;, - 152;4; 0.012583, 0.000549, 0.999313,-0.025178;;, - 153;4; 0.011179, 0.000488, 0.999390,-0.022368;;, - 154;4; 0.009723, 0.000425, 0.999469,-0.019456;;, - 155;4; 0.008227, 0.000359, 0.999551,-0.016461;;, - 156;4; 0.006701, 0.000293, 0.999634,-0.013408;;, - 157;4; 0.005161, 0.000225, 0.999718,-0.010327;;, - 158;4; 0.003631, 0.000159, 0.999802,-0.007266;;, - 159;4; 0.002152, 0.000094, 0.999883,-0.004305;;, - 160;4; 0.000815, 0.000036, 0.999956,-0.001631;;, - 161;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 162;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 163;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 164;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 165;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 166;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 167;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 168;4; 0.000000,-0.000000, 1.000000, 0.000000;;, - 169;4; 0.003877,-0.000000, 0.999915, 0.000000;;, - 170;4; 0.014799,-0.000000, 0.999677, 0.000000;;, - 171;4; 0.028821,-0.000000, 0.999371, 0.000000;;, - 172;4; 0.039742,-0.000000, 0.999133, 0.000000;;, - 173;4; 0.043619, 0.000000, 0.999048, 0.000000;;, - 174;4; 0.041150, 0.000000, 0.999133, 0.000000;;, - 175;4; 0.033580,-0.000000, 0.999371, 0.000000;;, - 176;4; 0.022207,-0.000000, 0.999677, 0.000000;;, - 177;4; 0.010132,-0.000000, 0.999915, 0.000000;;, - 178;4; 0.000000, 0.000000, 1.000000, 0.000000;;, - 179;4;-0.010132, 0.000000, 0.999915, 0.000000;;, - 180;4;-0.022206, 0.000000, 0.999677, 0.000000;;, - 181;4;-0.033580, 0.000000, 0.999371, 0.000000;;, - 182;4;-0.041150,-0.000000, 0.999133, 0.000000;;, - 183;4;-0.043619, 0.000000, 0.999048, 0.000000;;, - 184;4;-0.039742, 0.000000, 0.999133, 0.000000;;, - 185;4;-0.028821, 0.000000, 0.999371, 0.000000;;, - 186;4;-0.014798, 0.000000, 0.999677, 0.000000;;, - 187;4;-0.003877, 0.000000, 0.999915, 0.000000;;, - 188;4; 0.000000, 0.000000, 1.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.000000, 6.750000, 0.000000;;, - 1;3;-0.000000, 6.750000, 0.000000;;, - 2;3; 0.000000, 6.750000, 0.000000;;, - 3;3; 0.000000, 6.750000, 0.000000;;, - 4;3; 0.000000, 6.750000, 0.000000;;, - 5;3; 0.000000, 6.750000, 0.000000;;, - 6;3; 0.000000, 6.750000, 0.000000;;, - 7;3; 0.000000, 6.750000,-0.000000;;, - 8;3; 0.000000, 6.750000,-0.000000;;, - 9;3; 0.000000, 6.750000, 0.000000;;, - 10;3; 0.000000, 6.750000,-0.000000;;, - 11;3; 0.000000, 6.750000, 0.000000;;, - 12;3; 0.000000, 6.750000, 0.000000;;, - 13;3; 0.000000, 6.750000, 0.000000;;, - 14;3; 0.000000, 6.750000,-0.000000;;, - 15;3; 0.000000, 6.750000,-0.000000;;, - 16;3; 0.000000, 6.750000, 0.000000;;, - 17;3;-0.000000, 6.750001,-0.000000;;, - 18;3; 0.000000, 6.750000, 0.000000;;, - 19;3; 0.000000, 6.750000, 0.000000;;, - 20;3; 0.000000, 6.750000, 0.000000;;, - 21;3; 0.000000, 6.750000, 0.000000;;, - 22;3; 0.000000, 6.750000, 0.000000;;, - 23;3;-0.000000, 6.750001,-0.000000;;, - 24;3; 0.000000, 6.750000, 0.000000;;, - 25;3; 0.000000, 6.750000, 0.000000;;, - 26;3; 0.000000, 6.750000,-0.000000;;, - 27;3; 0.000000, 6.750000, 0.000000;;, - 28;3; 0.000000, 6.750000, 0.000000;;, - 29;3; 0.000000, 6.750000, 0.000000;;, - 30;3; 0.000000, 6.750000, 0.000000;;, - 31;3; 0.000000, 6.750000, 0.000000;;, - 32;3; 0.000000, 6.750000,-0.000000;;, - 33;3; 0.000000, 6.750000,-0.000000;;, - 34;3; 0.000000, 6.750000, 0.000000;;, - 35;3; 0.000000, 6.750000, 0.000000;;, - 36;3; 0.000000, 6.750000,-0.000000;;, - 37;3; 0.000000, 6.750000, 0.000000;;, - 38;3; 0.000000, 6.750000, 0.000000;;, - 39;3;-0.000000, 6.750000, 0.000000;;, - 40;3; 0.000000, 6.750000, 0.000000;;, - 41;3;-0.000000, 6.750000, 0.000000;;, - 42;3; 0.000000, 6.750000, 0.000000;;, - 43;3; 0.000000, 6.750000, 0.000000;;, - 44;3; 0.000000, 6.750000, 0.000000;;, - 45;3; 0.000000, 6.750000, 0.000000;;, - 46;3; 0.000000, 6.750000,-0.000000;;, - 47;3; 0.000000, 6.750000, 0.000000;;, - 48;3; 0.000000, 6.750000, 0.000000;;, - 49;3; 0.000000, 6.750000, 0.000000;;, - 50;3; 0.000000, 6.750000,-0.000000;;, - 51;3; 0.000000, 6.750000, 0.000000;;, - 52;3; 0.000000, 6.750000, 0.000000;;, - 53;3; 0.000000, 6.750000, 0.000000;;, - 54;3; 0.000000, 6.750000, 0.000000;;, - 55;3; 0.000000, 6.750000,-0.000000;;, - 56;3; 0.000000, 6.750000, 0.000000;;, - 57;3;-0.000000, 6.750001,-0.000000;;, - 58;3; 0.000000, 6.750000, 0.000000;;, - 59;3; 0.000000, 6.750000, 0.000000;;, - 60;3; 0.000000, 6.750000, 0.000000;;, - 61;3; 0.000000, 6.750000, 0.000000;;, - 62;3; 0.000000, 6.750000, 0.000000;;, - 63;3; 0.000000, 6.750000,-0.000000;;, - 64;3; 0.000000, 6.750000, 0.000000;;, - 65;3; 0.000000, 6.750000, 0.000000;;, - 66;3; 0.000000, 6.750000, 0.000000;;, - 67;3; 0.000000, 6.750000, 0.000000;;, - 68;3; 0.000000, 6.750000, 0.000000;;, - 69;3; 0.000000, 6.750000,-0.000000;;, - 70;3; 0.000000, 6.750000,-0.000000;;, - 71;3; 0.000000, 6.750000,-0.000000;;, - 72;3; 0.000000, 6.750000,-0.000000;;, - 73;3; 0.000000, 6.749999, 0.000000;;, - 74;3; 0.000000, 6.750000, 0.000000;;, - 75;3; 0.000000, 6.750000, 0.000000;;, - 76;3;-0.000000, 6.750000,-0.000000;;, - 77;3; 0.000000, 6.750000, 0.000000;;, - 78;3; 0.000000, 6.750000,-0.000000;;, - 79;3; 0.000000, 6.750000, 0.000000;;, - 80;3; 0.000000, 6.750000, 0.000000;;, - 81;3; 0.000000, 6.750000,-0.000000;;, - 82;3; 0.000000, 6.750000, 0.000000;;, - 83;3; 0.000000, 6.750000,-0.000000;;, - 84;3; 0.000000, 6.750000, 0.000000;;, - 85;3;-0.000000, 6.750000,-0.000000;;, - 86;3; 0.000000, 6.750000, 0.000000;;, - 87;3; 0.000000, 6.750000,-0.000000;;, - 88;3; 0.000000, 6.750000, 0.000000;;, - 89;3; 0.000000, 6.750000,-0.000000;;, - 90;3; 0.000000, 6.750000,-0.000000;;, - 91;3; 0.000000, 6.750000, 0.000000;;, - 92;3; 0.000000, 6.750000,-0.000000;;, - 93;3; 0.000000, 6.750000,-0.000000;;, - 94;3; 0.000000, 6.750000,-0.000000;;, - 95;3; 0.000000, 6.750000, 0.000000;;, - 96;3; 0.000000, 6.750000,-0.000000;;, - 97;3; 0.000000, 6.750000, 0.000000;;, - 98;3; 0.000000, 6.750000, 0.000000;;, - 99;3; 0.000000, 6.750000,-0.000000;;, - 100;3; 0.000000, 6.750000, 0.000000;;, - 101;3; 0.000000, 6.750000, 0.000000;;, - 102;3; 0.000000, 6.750000,-0.000000;;, - 103;3; 0.000000, 6.750000, 0.000000;;, - 104;3;-0.000000, 6.750000, 0.000000;;, - 105;3; 0.000000, 6.750000, 0.000000;;, - 106;3; 0.000000, 6.750000, 0.000000;;, - 107;3; 0.000000, 6.750000,-0.000000;;, - 108;3; 0.000000, 6.750000, 0.000000;;, - 109;3; 0.000000, 6.750000, 0.000000;;, - 110;3; 0.000000, 6.750000,-0.000000;;, - 111;3; 0.000000, 6.750000,-0.000000;;, - 112;3; 0.000000, 6.750000,-0.000000;;, - 113;3; 0.000000, 6.750000,-0.000000;;, - 114;3; 0.000000, 6.750000, 0.000000;;, - 115;3; 0.000000, 6.750000, 0.000000;;, - 116;3; 0.000000, 6.750000, 0.000000;;, - 117;3; 0.000000, 6.750000,-0.000000;;, - 118;3; 0.000000, 6.750000,-0.000000;;, - 119;3; 0.000000, 6.750000,-0.000000;;, - 120;3;-0.000000, 6.750000, 0.000000;;, - 121;3; 0.000000, 6.750000,-0.000000;;, - 122;3;-0.000000, 6.750000,-0.000000;;, - 123;3; 0.000000, 6.750000,-0.000000;;, - 124;3; 0.000000, 6.750000, 0.000000;;, - 125;3; 0.000000, 6.750000,-0.000000;;, - 126;3; 0.000000, 6.750000, 0.000000;;, - 127;3; 0.000000, 6.750000,-0.000000;;, - 128;3; 0.000000, 6.750000, 0.000000;;, - 129;3; 0.000000, 6.750000,-0.000000;;, - 130;3; 0.000000, 6.750000,-0.000000;;, - 131;3; 0.000000, 6.750000,-0.000000;;, - 132;3; 0.000000, 6.750000,-0.000000;;, - 133;3; 0.000000, 6.750000, 0.000000;;, - 134;3; 0.000000, 6.750000,-0.000000;;, - 135;3; 0.000000, 6.750000, 0.000000;;, - 136;3; 0.000000, 6.750000, 0.000000;;, - 137;3; 0.000000, 6.750000, 0.000000;;, - 138;3;-0.000000, 6.750000, 0.000000;;, - 139;3; 0.000000, 6.750000,-0.000000;;, - 140;3; 0.000000, 6.750000,-0.000000;;, - 141;3; 0.000000, 6.750000, 0.000000;;, - 142;3; 0.000000, 6.750000, 0.000000;;, - 143;3; 0.000000, 6.750000,-0.000000;;, - 144;3; 0.000000, 6.750000, 0.000000;;, - 145;3; 0.000000, 6.750000, 0.000000;;, - 146;3; 0.000000, 6.750000, 0.000000;;, - 147;3; 0.000000, 6.750000,-0.000000;;, - 148;3; 0.000000, 6.750000, 0.000000;;, - 149;3; 0.000000, 6.750000, 0.000000;;, - 150;3; 0.000000, 6.750000,-0.000000;;, - 151;3; 0.000000, 6.750000,-0.000000;;, - 152;3; 0.000000, 6.750000,-0.000000;;, - 153;3; 0.000000, 6.750000,-0.000000;;, - 154;3; 0.000000, 6.750000,-0.000000;;, - 155;3; 0.000000, 6.750000,-0.000000;;, - 156;3; 0.000000, 6.750000,-0.000000;;, - 157;3;-0.000000, 6.750000, 0.000000;;, - 158;3; 0.000000, 6.750000, 0.000000;;, - 159;3; 0.000000, 6.750000,-0.000000;;, - 160;3; 0.000000, 6.750000, 0.000000;;, - 161;3; 0.000000, 6.750000,-0.000000;;, - 162;3; 0.000000, 6.750000, 0.000000;;, - 163;3; 0.000000, 6.750000, 0.000000;;, - 164;3; 0.000000, 6.750000, 0.000000;;, - 165;3; 0.000000, 6.750000, 0.000000;;, - 166;3; 0.000000, 6.750000, 0.000000;;, - 167;3; 0.000000, 6.750000, 0.000000;;, - 168;3; 0.000000, 6.750000, 0.000000;;, - 169;3; 0.000000, 6.750000, 0.000000;;, - 170;3; 0.000000, 6.750000, 0.000000;;, - 171;3; 0.000000, 6.750000, 0.000000;;, - 172;3; 0.000000, 6.750000, 0.000000;;, - 173;3; 0.000000, 6.750000, 0.000000;;, - 174;3; 0.000000, 6.750000, 0.000000;;, - 175;3; 0.000000, 6.750000, 0.000000;;, - 176;3; 0.000000, 6.750000, 0.000000;;, - 177;3; 0.000000, 6.750000, 0.000000;;, - 178;3; 0.000000, 6.750000, 0.000000;;, - 179;3; 0.000000, 6.750000, 0.000000;;, - 180;3; 0.000000, 6.750000, 0.000000;;, - 181;3; 0.000000, 6.750000, 0.000000;;, - 182;3; 0.000000, 6.750000, 0.000000;;, - 183;3; 0.000000, 6.750000, 0.000000;;, - 184;3; 0.000000, 6.750000, 0.000000;;, - 185;3; 0.000000, 6.750000, 0.000000;;, - 186;3; 0.000000, 6.750000, 0.000000;;, - 187;3; 0.000000, 6.750000, 0.000000;;, - 188;3; 0.000000, 6.750000, 0.000000;;; - } - } - Animation { - {Armature_Arm_Left} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.648448, 0.757709,-0.045973,-0.057269;;, - 1;4; 0.648161, 0.757936,-0.045920,-0.057331;;, - 2;4; 0.647294, 0.758622,-0.045761,-0.057521;;, - 3;4; 0.645844, 0.759770,-0.045495,-0.057837;;, - 4;4; 0.643821, 0.761372,-0.045124,-0.058279;;, - 5;4; 0.641250, 0.763407,-0.044653,-0.058841;;, - 6;4; 0.638175, 0.765842,-0.044088,-0.059513;;, - 7;4; 0.634660, 0.768625,-0.043443,-0.060281;;, - 8;4; 0.630790, 0.771689,-0.042734,-0.061126;;, - 9;4; 0.626671, 0.774950,-0.041978,-0.062026;;, - 10;4; 0.622424, 0.778313,-0.041199,-0.062953;;, - 11;4; 0.618177, 0.781676,-0.040419,-0.063881;;, - 12;4; 0.614058, 0.784937,-0.039664,-0.064781;;, - 13;4; 0.610189, 0.788000,-0.038954,-0.065626;;, - 14;4; 0.606673, 0.790784,-0.038309,-0.066394;;, - 15;4; 0.603598, 0.793218,-0.037745,-0.067066;;, - 16;4; 0.601027, 0.795254,-0.037273,-0.067628;;, - 17;4; 0.599004, 0.796856,-0.036902,-0.068069;;, - 18;4; 0.597555, 0.798003,-0.036636,-0.068386;;, - 19;4; 0.596688, 0.798690,-0.036477,-0.068576;;, - 20;4; 0.596401, 0.798917,-0.036424,-0.068638;;, - 21;4; 0.596760, 0.798627,-0.036471,-0.068580;;, - 22;4; 0.597846, 0.797750,-0.036614,-0.068404;;, - 23;4; 0.599661, 0.796284,-0.036852,-0.068109;;, - 24;4; 0.602194, 0.794238,-0.037184,-0.067698;;, - 25;4; 0.605413, 0.791638,-0.037606,-0.067176;;, - 26;4; 0.609264, 0.788527,-0.038110,-0.066551;;, - 27;4; 0.613666, 0.784972,-0.038687,-0.065837;;, - 28;4; 0.618511, 0.781058,-0.039322,-0.065050;;, - 29;4; 0.623668, 0.776892,-0.039998,-0.064213;;, - 30;4; 0.628987, 0.772597,-0.040695,-0.063350;;, - 31;4; 0.634305, 0.768301,-0.041393,-0.062487;;, - 32;4; 0.639462, 0.764135,-0.042069,-0.061650;;, - 33;4; 0.644308, 0.760222,-0.042704,-0.060864;;, - 34;4; 0.648710, 0.756666,-0.043281,-0.060150;;, - 35;4; 0.652560, 0.753556,-0.043785,-0.059525;;, - 36;4; 0.655780, 0.750956,-0.044207,-0.059002;;, - 37;4; 0.658313, 0.748910,-0.044539,-0.058591;;, - 38;4; 0.660128, 0.747444,-0.044777,-0.058297;;, - 39;4; 0.661214, 0.746567,-0.044920,-0.058121;;, - 40;4; 0.661573, 0.746277,-0.044967,-0.058062;;, - 41;4; 0.661328, 0.746479,-0.044910,-0.058126;;, - 42;4; 0.660587, 0.747091,-0.044737,-0.058317;;, - 43;4; 0.659348, 0.748115,-0.044449,-0.058638;;, - 44;4; 0.657620, 0.749544,-0.044046,-0.059085;;, - 45;4; 0.655424, 0.751359,-0.043535,-0.059653;;, - 46;4; 0.652797, 0.753531,-0.042924,-0.060333;;, - 47;4; 0.649794, 0.756013,-0.042224,-0.061110;;, - 48;4; 0.646488, 0.758746,-0.041455,-0.061966;;, - 49;4; 0.642969, 0.761655,-0.040636,-0.062876;;, - 50;4; 0.639341, 0.764654,-0.039791,-0.063815;;, - 51;4; 0.635713, 0.767653,-0.038946,-0.064754;;, - 52;4; 0.632194, 0.770562,-0.038127,-0.065665;;, - 53;4; 0.628889, 0.773294,-0.037357,-0.066520;;, - 54;4; 0.625885, 0.775777,-0.036658,-0.067297;;, - 55;4; 0.623258, 0.777949,-0.036047,-0.067977;;, - 56;4; 0.621062, 0.779764,-0.035535,-0.068545;;, - 57;4; 0.619334, 0.781193,-0.035133,-0.068993;;, - 58;4; 0.618095, 0.782216,-0.034845,-0.069313;;, - 59;4; 0.617355, 0.782829,-0.034672,-0.069505;;, - 60;4; 0.617110, 0.783031,-0.034615,-0.069568;;, - 61;4; 0.617174, 0.782991,-0.034614,-0.069562;;, - 62;4; 0.617353, 0.782876,-0.034615,-0.069541;;, - 63;4; 0.617631, 0.782698,-0.034624,-0.069502;;, - 64;4; 0.617995, 0.782463,-0.034645,-0.069440;;, - 65;4; 0.618435, 0.782178,-0.034685,-0.069353;;, - 66;4; 0.618940, 0.781848,-0.034749,-0.069236;;, - 67;4; 0.619505, 0.781478,-0.034841,-0.069085;;, - 68;4; 0.620120, 0.781070,-0.034969,-0.068894;;, - 69;4; 0.620781, 0.780629,-0.035139,-0.068658;;, - 70;4; 0.621482, 0.780157,-0.035359,-0.068369;;, - 71;4; 0.622217, 0.779656,-0.035640,-0.068019;;, - 72;4; 0.622979, 0.779130,-0.035993,-0.067597;;, - 73;4; 0.623764, 0.778580,-0.036434,-0.067088;;, - 74;4; 0.624563, 0.778009,-0.036984,-0.066473;;, - 75;4; 0.625368, 0.777419,-0.037673,-0.065726;;, - 76;4; 0.626168, 0.776813,-0.038544,-0.064805;;, - 77;4; 0.626943, 0.776195,-0.039669,-0.063644;;, - 78;4; 0.627662, 0.775573,-0.041178,-0.062123;;, - 79;4; 0.628249, 0.774961,-0.043370,-0.059964;;, - 80;4; 0.628391, 0.774424,-0.047456,-0.056046;;, - 81;4; 0.000990, 0.997299,-0.072151,-0.013690;;, - 82;4;-0.011967, 0.997270,-0.071970,-0.015145;;, - 83;4;-0.018796, 0.997206,-0.071870,-0.016486;;, - 84;4;-0.023483, 0.997134,-0.071799,-0.017763;;, - 85;4;-0.026976, 0.997057,-0.071745,-0.018986;;, - 86;4;-0.029682, 0.996980,-0.071701,-0.020158;;, - 87;4;-0.031824, 0.996902,-0.071665,-0.021280;;, - 88;4;-0.033538, 0.996826,-0.071634,-0.022353;;, - 89;4;-0.034915, 0.996751,-0.071609,-0.023375;;, - 90;4;-0.036019, 0.996679,-0.071588,-0.024345;;, - 91;4;-0.036900, 0.996610,-0.071570,-0.025261;;, - 92;4;-0.037594, 0.996544,-0.071555,-0.026120;;, - 93;4;-0.038132, 0.996482,-0.071542,-0.026918;;, - 94;4;-0.038539, 0.996425,-0.071531,-0.027653;;, - 95;4;-0.038836, 0.996372,-0.071523,-0.028317;;, - 96;4;-0.039042, 0.996325,-0.071516,-0.028907;;, - 97;4;-0.039174, 0.996284,-0.071511,-0.029414;;, - 98;4;-0.039248, 0.996250,-0.071507,-0.029831;;, - 99;4;-0.039280, 0.996225,-0.071504,-0.030146;;, - 100;4;-0.039287, 0.996208,-0.071503,-0.030348;;, - 101;4;-0.039284, 0.996202,-0.071502,-0.030419;;, - 102;4;-0.039062, 0.996208,-0.071506,-0.030327;;, - 103;4;-0.038392, 0.996227,-0.071517,-0.030048;;, - 104;4;-0.037270, 0.996257,-0.071535,-0.029583;;, - 105;4;-0.035704, 0.996300,-0.071560,-0.028932;;, - 106;4;-0.033715, 0.996354,-0.071592,-0.028106;;, - 107;4;-0.031335, 0.996419,-0.071630,-0.027118;;, - 108;4;-0.028615, 0.996493,-0.071674,-0.025988;;, - 109;4;-0.025621, 0.996574,-0.071723,-0.024744;;, - 110;4;-0.022434, 0.996661,-0.071774,-0.023420;;, - 111;4;-0.019147, 0.996751,-0.071827,-0.022055;;, - 112;4;-0.015860, 0.996840,-0.071880,-0.020690;;, - 113;4;-0.012673, 0.996927,-0.071931,-0.019366;;, - 114;4;-0.009679, 0.997009,-0.071979,-0.018122;;, - 115;4;-0.006959, 0.997083,-0.072023,-0.016992;;, - 116;4;-0.004579, 0.997148,-0.072062,-0.016004;;, - 117;4;-0.002590, 0.997202,-0.072094,-0.015177;;, - 118;4;-0.001024, 0.997244,-0.072119,-0.014527;;, - 119;4; 0.000098, 0.997275,-0.072137,-0.014061;;, - 120;4; 0.000769, 0.997293,-0.072148,-0.013782;;, - 121;4; 0.000990, 0.997299,-0.072151,-0.013690;;, - 122;4; 0.000769, 0.997293,-0.072148,-0.013782;;, - 123;4; 0.000098, 0.997275,-0.072137,-0.014061;;, - 124;4;-0.001024, 0.997244,-0.072119,-0.014527;;, - 125;4;-0.002590, 0.997202,-0.072094,-0.015177;;, - 126;4;-0.004579, 0.997148,-0.072062,-0.016004;;, - 127;4;-0.006959, 0.997083,-0.072023,-0.016992;;, - 128;4;-0.009679, 0.997009,-0.071979,-0.018122;;, - 129;4;-0.012673, 0.996927,-0.071931,-0.019366;;, - 130;4;-0.015860, 0.996840,-0.071880,-0.020690;;, - 131;4;-0.019147, 0.996751,-0.071827,-0.022055;;, - 132;4;-0.022434, 0.996661,-0.071774,-0.023420;;, - 133;4;-0.025621, 0.996574,-0.071723,-0.024744;;, - 134;4;-0.028615, 0.996493,-0.071674,-0.025988;;, - 135;4;-0.031335, 0.996419,-0.071630,-0.027118;;, - 136;4;-0.033715, 0.996354,-0.071592,-0.028106;;, - 137;4;-0.035704, 0.996300,-0.071560,-0.028932;;, - 138;4;-0.037270, 0.996257,-0.071535,-0.029583;;, - 139;4;-0.038392, 0.996227,-0.071517,-0.030048;;, - 140;4;-0.039062, 0.996208,-0.071506,-0.030327;;, - 141;4;-0.039284, 0.996202,-0.071502,-0.030419;;, - 142;4;-0.039115, 0.996208,-0.071505,-0.030336;;, - 143;4;-0.038639, 0.996224,-0.071513,-0.030100;;, - 144;4;-0.037892, 0.996249,-0.071526,-0.029733;;, - 145;4;-0.036906, 0.996282,-0.071542,-0.029250;;, - 146;4;-0.035703, 0.996322,-0.071562,-0.028665;;, - 147;4;-0.034305, 0.996368,-0.071585,-0.027989;;, - 148;4;-0.032728, 0.996419,-0.071611,-0.027232;;, - 149;4;-0.030984, 0.996475,-0.071640,-0.026401;;, - 150;4;-0.029084, 0.996536,-0.071671,-0.025504;;, - 151;4;-0.027040, 0.996601,-0.071705,-0.024547;;, - 152;4;-0.024856, 0.996669,-0.071741,-0.023537;;, - 153;4;-0.022540, 0.996740,-0.071779,-0.022479;;, - 154;4;-0.020096, 0.996813,-0.071819,-0.021379;;, - 155;4;-0.017525, 0.996888,-0.071861,-0.020245;;, - 156;4;-0.014829, 0.996965,-0.071905,-0.019082;;, - 157;4;-0.012005, 0.997043,-0.071950,-0.017902;;, - 158;4;-0.009047, 0.997120,-0.071997,-0.016718;;, - 159;4;-0.005937, 0.997194,-0.072047,-0.015555;;, - 160;4;-0.002640, 0.997260,-0.072098,-0.014470;;, - 161;4; 0.000990, 0.997299,-0.072151,-0.013690;;, - 162;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 163;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 164;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 165;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 166;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 167;4; 0.003930, 0.958043,-0.286296,-0.013151;;, - 168;4; 0.648448, 0.757709,-0.045973,-0.057269;;, - 169;4; 0.654493, 0.752186,-0.040667,-0.064731;;, - 170;4; 0.658020, 0.748822,-0.037013,-0.069986;;, - 171;4; 0.659629, 0.747251,-0.035126,-0.072743;;, - 172;4; 0.660600, 0.746345,-0.034493,-0.073596;;, - 173;4; 0.662067, 0.745032,-0.034351,-0.073580;;, - 174;4; 0.664030, 0.743414,-0.034783,-0.072577;;, - 175;4; 0.665879, 0.742098,-0.036358,-0.069861;;, - 176;4; 0.667289, 0.741198,-0.038892,-0.065911;;, - 177;4; 0.668012, 0.740701,-0.041785,-0.061811;;, - 178;4; 0.668060, 0.740475,-0.044458,-0.058453;;, - 179;4; 0.667246, 0.740936,-0.047522,-0.055224;;, - 180;4; 0.665271, 0.742616,-0.051527,-0.051513;;, - 181;4; 0.662480, 0.745165,-0.055526,-0.048126;;, - 182;4; 0.659627, 0.747806,-0.058315,-0.045969;;, - 183;4; 0.657320, 0.749902,-0.059309,-0.045384;;, - 184;4; 0.655964, 0.751255,-0.058163,-0.046490;;, - 185;4; 0.655437, 0.752065,-0.054765,-0.049326;;, - 186;4; 0.654752, 0.752963,-0.050391,-0.052966;;, - 187;4; 0.652660, 0.754722,-0.047040,-0.055932;;, - 188;4; 0.648448, 0.757709,-0.045973,-0.057269;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-2.000000, 6.750000, 0.000000;;, - 1;3;-2.000000, 6.750000, 0.000000;;, - 2;3;-2.000000, 6.750000, 0.000000;;, - 3;3;-2.000000, 6.750000, 0.000000;;, - 4;3;-2.000000, 6.750000, 0.000000;;, - 5;3;-2.000000, 6.750000, 0.000000;;, - 6;3;-2.000000, 6.750000, 0.000000;;, - 7;3;-2.000000, 6.750000,-0.000000;;, - 8;3;-2.000000, 6.750000,-0.000000;;, - 9;3;-2.000000, 6.750000, 0.000000;;, - 10;3;-2.000000, 6.750000,-0.000000;;, - 11;3;-2.000000, 6.750000, 0.000000;;, - 12;3;-2.000000, 6.750000, 0.000000;;, - 13;3;-2.000000, 6.750000, 0.000000;;, - 14;3;-2.000000, 6.750000,-0.000000;;, - 15;3;-2.000000, 6.750000,-0.000000;;, - 16;3;-2.000000, 6.750000, 0.000000;;, - 17;3;-2.000000, 6.750001,-0.000000;;, - 18;3;-2.000000, 6.750000, 0.000000;;, - 19;3;-2.000000, 6.750000, 0.000000;;, - 20;3;-2.000000, 6.750000, 0.000000;;, - 21;3;-2.000000, 6.750000, 0.000000;;, - 22;3;-2.000000, 6.750000, 0.000000;;, - 23;3;-2.000000, 6.750001,-0.000000;;, - 24;3;-2.000000, 6.750000, 0.000000;;, - 25;3;-2.000000, 6.750000, 0.000000;;, - 26;3;-2.000000, 6.750000,-0.000000;;, - 27;3;-2.000000, 6.750000, 0.000000;;, - 28;3;-2.000000, 6.750000, 0.000000;;, - 29;3;-2.000000, 6.750000, 0.000000;;, - 30;3;-2.000000, 6.750000, 0.000000;;, - 31;3;-2.000000, 6.750000, 0.000000;;, - 32;3;-2.000000, 6.750000,-0.000000;;, - 33;3;-2.000000, 6.750000,-0.000000;;, - 34;3;-2.000000, 6.750000, 0.000000;;, - 35;3;-2.000000, 6.750000, 0.000000;;, - 36;3;-2.000000, 6.750000,-0.000000;;, - 37;3;-2.000000, 6.750000, 0.000000;;, - 38;3;-2.000000, 6.750000, 0.000000;;, - 39;3;-2.000000, 6.750000, 0.000000;;, - 40;3;-2.000000, 6.750000, 0.000000;;, - 41;3;-2.000000, 6.750000, 0.000000;;, - 42;3;-2.000000, 6.750000, 0.000000;;, - 43;3;-2.000000, 6.750000, 0.000000;;, - 44;3;-2.000000, 6.750000, 0.000000;;, - 45;3;-2.000000, 6.750000, 0.000000;;, - 46;3;-2.000000, 6.750000,-0.000000;;, - 47;3;-2.000000, 6.750000, 0.000000;;, - 48;3;-2.000000, 6.750000, 0.000000;;, - 49;3;-2.000000, 6.750000, 0.000000;;, - 50;3;-2.000000, 6.750000,-0.000000;;, - 51;3;-2.000000, 6.750000, 0.000000;;, - 52;3;-2.000000, 6.750000, 0.000000;;, - 53;3;-2.000000, 6.750000, 0.000000;;, - 54;3;-2.000000, 6.750000, 0.000000;;, - 55;3;-2.000000, 6.750000,-0.000000;;, - 56;3;-2.000000, 6.750000, 0.000000;;, - 57;3;-2.000000, 6.750001,-0.000000;;, - 58;3;-2.000000, 6.750000, 0.000000;;, - 59;3;-2.000000, 6.750000, 0.000000;;, - 60;3;-2.000000, 6.750000, 0.000000;;, - 61;3;-2.000000, 6.750000, 0.000000;;, - 62;3;-2.000000, 6.750000, 0.000000;;, - 63;3;-2.000000, 6.750000,-0.000000;;, - 64;3;-2.000000, 6.750000, 0.000000;;, - 65;3;-2.000000, 6.750000, 0.000000;;, - 66;3;-2.000000, 6.750000, 0.000000;;, - 67;3;-2.000000, 6.750000, 0.000000;;, - 68;3;-2.000000, 6.750000, 0.000000;;, - 69;3;-2.000000, 6.750000,-0.000000;;, - 70;3;-2.000000, 6.750000,-0.000000;;, - 71;3;-2.000000, 6.750000,-0.000000;;, - 72;3;-2.000000, 6.750000,-0.000000;;, - 73;3;-2.000000, 6.749999, 0.000000;;, - 74;3;-2.000000, 6.750000, 0.000000;;, - 75;3;-2.000000, 6.750000, 0.000000;;, - 76;3;-2.000000, 6.750000,-0.000000;;, - 77;3;-2.000000, 6.750000, 0.000000;;, - 78;3;-2.000000, 6.750000,-0.000000;;, - 79;3;-2.000000, 6.750000, 0.000000;;, - 80;3;-2.000000, 6.750000, 0.000000;;, - 81;3;-2.000000, 6.750000,-0.000000;;, - 82;3;-2.000000, 6.750000, 0.000000;;, - 83;3;-2.000000, 6.750000,-0.000000;;, - 84;3;-2.000000, 6.750000, 0.000000;;, - 85;3;-2.000000, 6.750000,-0.000000;;, - 86;3;-2.000000, 6.750000, 0.000000;;, - 87;3;-2.000000, 6.750000,-0.000000;;, - 88;3;-2.000000, 6.750000, 0.000000;;, - 89;3;-2.000000, 6.750000,-0.000000;;, - 90;3;-2.000000, 6.750000,-0.000000;;, - 91;3;-2.000000, 6.750000, 0.000000;;, - 92;3;-2.000000, 6.750000,-0.000000;;, - 93;3;-2.000000, 6.750000,-0.000000;;, - 94;3;-2.000000, 6.750000,-0.000000;;, - 95;3;-2.000000, 6.750000, 0.000000;;, - 96;3;-2.000000, 6.750000,-0.000000;;, - 97;3;-2.000000, 6.750000, 0.000000;;, - 98;3;-2.000000, 6.750000, 0.000000;;, - 99;3;-2.000000, 6.750000,-0.000000;;, - 100;3;-2.000000, 6.750000, 0.000000;;, - 101;3;-2.000000, 6.750000, 0.000000;;, - 102;3;-2.000000, 6.750000,-0.000000;;, - 103;3;-2.000000, 6.750000, 0.000000;;, - 104;3;-2.000000, 6.750000, 0.000000;;, - 105;3;-2.000000, 6.750000, 0.000000;;, - 106;3;-2.000000, 6.750000, 0.000000;;, - 107;3;-2.000000, 6.750000,-0.000000;;, - 108;3;-2.000000, 6.750000, 0.000000;;, - 109;3;-2.000000, 6.750000, 0.000000;;, - 110;3;-2.000000, 6.750000,-0.000000;;, - 111;3;-2.000000, 6.750000,-0.000000;;, - 112;3;-2.000000, 6.750000,-0.000000;;, - 113;3;-2.000000, 6.750000,-0.000000;;, - 114;3;-2.000000, 6.750000, 0.000000;;, - 115;3;-2.000000, 6.750000, 0.000000;;, - 116;3;-2.000000, 6.750000, 0.000000;;, - 117;3;-2.000000, 6.750000,-0.000000;;, - 118;3;-2.000000, 6.750000,-0.000000;;, - 119;3;-2.000000, 6.750000,-0.000000;;, - 120;3;-2.000000, 6.750000, 0.000000;;, - 121;3;-2.000000, 6.750000,-0.000000;;, - 122;3;-2.000000, 6.750000,-0.000000;;, - 123;3;-2.000000, 6.750000,-0.000000;;, - 124;3;-2.000000, 6.750000, 0.000000;;, - 125;3;-2.000000, 6.750000,-0.000000;;, - 126;3;-2.000000, 6.750000, 0.000000;;, - 127;3;-2.000000, 6.750000,-0.000000;;, - 128;3;-2.000000, 6.750000, 0.000000;;, - 129;3;-2.000000, 6.750000,-0.000000;;, - 130;3;-2.000000, 6.750000,-0.000000;;, - 131;3;-2.000000, 6.750000,-0.000000;;, - 132;3;-2.000000, 6.750000,-0.000000;;, - 133;3;-2.000000, 6.750000, 0.000000;;, - 134;3;-2.000000, 6.750000,-0.000000;;, - 135;3;-2.000000, 6.750000, 0.000000;;, - 136;3;-2.000000, 6.750000, 0.000000;;, - 137;3;-2.000000, 6.750000, 0.000000;;, - 138;3;-2.000000, 6.750000, 0.000000;;, - 139;3;-2.000000, 6.750000,-0.000000;;, - 140;3;-2.000000, 6.750000,-0.000000;;, - 141;3;-2.000000, 6.750000, 0.000000;;, - 142;3;-2.000000, 6.750000, 0.000000;;, - 143;3;-2.000000, 6.750000,-0.000000;;, - 144;3;-2.000000, 6.750000, 0.000000;;, - 145;3;-2.000000, 6.750000, 0.000000;;, - 146;3;-2.000000, 6.750000, 0.000000;;, - 147;3;-2.000000, 6.750000,-0.000000;;, - 148;3;-2.000000, 6.750000, 0.000000;;, - 149;3;-2.000000, 6.750000, 0.000000;;, - 150;3;-2.000000, 6.750000,-0.000000;;, - 151;3;-2.000000, 6.750000,-0.000000;;, - 152;3;-2.000000, 6.750000,-0.000000;;, - 153;3;-2.000000, 6.750000,-0.000000;;, - 154;3;-2.000000, 6.750000,-0.000000;;, - 155;3;-2.000000, 6.750000,-0.000000;;, - 156;3;-2.000000, 6.750000,-0.000000;;, - 157;3;-2.000000, 6.750000, 0.000000;;, - 158;3;-2.000000, 6.750000, 0.000000;;, - 159;3;-2.000000, 6.750000,-0.000000;;, - 160;3;-2.000000, 6.750000, 0.000000;;, - 161;3;-2.000000, 6.750000,-0.000000;;, - 162;3;-2.000000, 6.750000, 0.000000;;, - 163;3;-2.000000, 6.750000, 0.000000;;, - 164;3;-2.000000, 6.750000, 0.000000;;, - 165;3;-2.000000, 6.750000, 0.000000;;, - 166;3;-2.000000, 6.750000, 0.000000;;, - 167;3;-2.000000, 6.750000, 0.000000;;, - 168;3;-2.000000, 6.750000, 0.000000;;, - 169;3;-2.000000, 6.750000, 0.000000;;, - 170;3;-2.000000, 6.750000, 0.000000;;, - 171;3;-2.000000, 6.750000, 0.000000;;, - 172;3;-2.000000, 6.750000, 0.000000;;, - 173;3;-2.000000, 6.750000, 0.000000;;, - 174;3;-2.000000, 6.750000, 0.000000;;, - 175;3;-2.000000, 6.750000, 0.000000;;, - 176;3;-2.000000, 6.750000, 0.000000;;, - 177;3;-2.000000, 6.750000, 0.000000;;, - 178;3;-2.000000, 6.750000, 0.000000;;, - 179;3;-2.000000, 6.750000, 0.000000;;, - 180;3;-2.000000, 6.750000, 0.000000;;, - 181;3;-2.000000, 6.750000, 0.000000;;, - 182;3;-2.000000, 6.750000, 0.000000;;, - 183;3;-2.000000, 6.750000, 0.000000;;, - 184;3;-2.000000, 6.750000, 0.000000;;, - 185;3;-2.000000, 6.750000, 0.000000;;, - 186;3;-2.000000, 6.750000, 0.000000;;, - 187;3;-2.000000, 6.750000, 0.000000;;, - 188;3;-2.000000, 6.750000, 0.000000;;; - } - } - Animation { - {Armature_Arm_Right} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.648448, 0.757709, 0.045973, 0.057269;;, - 1;4; 0.648161, 0.757936, 0.045920, 0.057331;;, - 2;4; 0.647294, 0.758622, 0.045761, 0.057521;;, - 3;4; 0.645844, 0.759770, 0.045495, 0.057837;;, - 4;4; 0.643821, 0.761372, 0.045124, 0.058279;;, - 5;4; 0.641250, 0.763407, 0.044653, 0.058841;;, - 6;4; 0.638175, 0.765842, 0.044088, 0.059513;;, - 7;4; 0.634660, 0.768625, 0.043443, 0.060281;;, - 8;4; 0.630790, 0.771689, 0.042734, 0.061126;;, - 9;4; 0.626671, 0.774950, 0.041978, 0.062026;;, - 10;4; 0.622424, 0.778313, 0.041199, 0.062953;;, - 11;4; 0.618177, 0.781676, 0.040419, 0.063881;;, - 12;4; 0.614058, 0.784937, 0.039664, 0.064781;;, - 13;4; 0.610189, 0.788000, 0.038954, 0.065626;;, - 14;4; 0.606673, 0.790784, 0.038309, 0.066394;;, - 15;4; 0.603598, 0.793218, 0.037745, 0.067066;;, - 16;4; 0.601027, 0.795254, 0.037273, 0.067628;;, - 17;4; 0.599004, 0.796856, 0.036902, 0.068069;;, - 18;4; 0.597555, 0.798003, 0.036636, 0.068386;;, - 19;4; 0.596688, 0.798690, 0.036477, 0.068576;;, - 20;4; 0.596401, 0.798917, 0.036424, 0.068638;;, - 21;4; 0.596760, 0.798627, 0.036471, 0.068580;;, - 22;4; 0.597846, 0.797750, 0.036614, 0.068404;;, - 23;4; 0.599661, 0.796284, 0.036852, 0.068109;;, - 24;4; 0.602194, 0.794238, 0.037184, 0.067698;;, - 25;4; 0.605413, 0.791638, 0.037606, 0.067176;;, - 26;4; 0.609264, 0.788527, 0.038110, 0.066551;;, - 27;4; 0.613666, 0.784972, 0.038687, 0.065837;;, - 28;4; 0.618511, 0.781058, 0.039322, 0.065050;;, - 29;4; 0.623668, 0.776892, 0.039998, 0.064213;;, - 30;4; 0.628987, 0.772597, 0.040695, 0.063350;;, - 31;4; 0.634305, 0.768301, 0.041393, 0.062487;;, - 32;4; 0.639462, 0.764135, 0.042069, 0.061650;;, - 33;4; 0.644308, 0.760222, 0.042704, 0.060864;;, - 34;4; 0.648710, 0.756666, 0.043281, 0.060150;;, - 35;4; 0.652560, 0.753556, 0.043785, 0.059525;;, - 36;4; 0.655780, 0.750956, 0.044207, 0.059002;;, - 37;4; 0.658313, 0.748910, 0.044539, 0.058591;;, - 38;4; 0.660128, 0.747444, 0.044777, 0.058297;;, - 39;4; 0.661214, 0.746567, 0.044920, 0.058121;;, - 40;4; 0.661573, 0.746277, 0.044967, 0.058062;;, - 41;4; 0.661328, 0.746479, 0.044910, 0.058126;;, - 42;4; 0.660587, 0.747091, 0.044737, 0.058317;;, - 43;4; 0.659348, 0.748115, 0.044449, 0.058638;;, - 44;4; 0.657620, 0.749544, 0.044046, 0.059085;;, - 45;4; 0.655424, 0.751359, 0.043535, 0.059653;;, - 46;4; 0.652797, 0.753531, 0.042924, 0.060333;;, - 47;4; 0.649794, 0.756013, 0.042224, 0.061110;;, - 48;4; 0.646488, 0.758746, 0.041455, 0.061966;;, - 49;4; 0.642969, 0.761655, 0.040636, 0.062876;;, - 50;4; 0.639341, 0.764654, 0.039791, 0.063815;;, - 51;4; 0.635713, 0.767653, 0.038946, 0.064754;;, - 52;4; 0.632194, 0.770562, 0.038127, 0.065665;;, - 53;4; 0.628889, 0.773294, 0.037357, 0.066520;;, - 54;4; 0.625885, 0.775777, 0.036658, 0.067297;;, - 55;4; 0.623258, 0.777949, 0.036047, 0.067977;;, - 56;4; 0.621062, 0.779764, 0.035535, 0.068545;;, - 57;4; 0.619334, 0.781193, 0.035133, 0.068993;;, - 58;4; 0.618095, 0.782216, 0.034845, 0.069313;;, - 59;4; 0.617355, 0.782829, 0.034672, 0.069505;;, - 60;4; 0.617110, 0.783031, 0.034615, 0.069568;;, - 61;4; 0.617174, 0.782991, 0.034614, 0.069562;;, - 62;4; 0.617353, 0.782876, 0.034615, 0.069541;;, - 63;4; 0.617631, 0.782698, 0.034624, 0.069502;;, - 64;4; 0.617995, 0.782463, 0.034645, 0.069440;;, - 65;4; 0.618435, 0.782178, 0.034685, 0.069353;;, - 66;4; 0.618940, 0.781848, 0.034749, 0.069236;;, - 67;4; 0.619505, 0.781478, 0.034841, 0.069085;;, - 68;4; 0.620120, 0.781070, 0.034969, 0.068894;;, - 69;4; 0.620781, 0.780629, 0.035139, 0.068658;;, - 70;4; 0.621482, 0.780157, 0.035359, 0.068369;;, - 71;4; 0.622217, 0.779656, 0.035640, 0.068019;;, - 72;4; 0.622979, 0.779130, 0.035993, 0.067597;;, - 73;4; 0.623764, 0.778580, 0.036434, 0.067088;;, - 74;4; 0.624563, 0.778009, 0.036984, 0.066473;;, - 75;4; 0.625368, 0.777419, 0.037673, 0.065726;;, - 76;4; 0.626168, 0.776813, 0.038544, 0.064805;;, - 77;4; 0.626943, 0.776195, 0.039669, 0.063644;;, - 78;4; 0.627662, 0.775573, 0.041178, 0.062123;;, - 79;4; 0.628249, 0.774961, 0.043370, 0.059964;;, - 80;4; 0.628391, 0.774424, 0.047456, 0.056046;;, - 81;4; 0.000990, 0.997299, 0.072151, 0.013690;;, - 82;4;-0.011967, 0.997270, 0.071970, 0.015145;;, - 83;4;-0.018796, 0.997206, 0.071870, 0.016486;;, - 84;4;-0.023483, 0.997134, 0.071799, 0.017763;;, - 85;4;-0.026976, 0.997057, 0.071745, 0.018986;;, - 86;4;-0.029682, 0.996980, 0.071701, 0.020158;;, - 87;4;-0.031824, 0.996902, 0.071665, 0.021280;;, - 88;4;-0.033538, 0.996826, 0.071634, 0.022353;;, - 89;4;-0.034915, 0.996751, 0.071609, 0.023375;;, - 90;4;-0.036019, 0.996679, 0.071588, 0.024345;;, - 91;4;-0.036900, 0.996610, 0.071570, 0.025261;;, - 92;4;-0.037594, 0.996544, 0.071555, 0.026120;;, - 93;4;-0.038132, 0.996482, 0.071542, 0.026918;;, - 94;4;-0.038539, 0.996425, 0.071531, 0.027653;;, - 95;4;-0.038836, 0.996372, 0.071523, 0.028317;;, - 96;4;-0.039042, 0.996325, 0.071516, 0.028907;;, - 97;4;-0.039174, 0.996284, 0.071511, 0.029414;;, - 98;4;-0.039248, 0.996250, 0.071507, 0.029831;;, - 99;4;-0.039280, 0.996225, 0.071504, 0.030146;;, - 100;4;-0.039287, 0.996208, 0.071503, 0.030348;;, - 101;4;-0.039284, 0.996202, 0.071502, 0.030419;;, - 102;4;-0.039062, 0.996208, 0.071506, 0.030327;;, - 103;4;-0.038392, 0.996227, 0.071517, 0.030048;;, - 104;4;-0.037270, 0.996257, 0.071535, 0.029583;;, - 105;4;-0.035704, 0.996300, 0.071560, 0.028932;;, - 106;4;-0.033715, 0.996354, 0.071592, 0.028106;;, - 107;4;-0.031335, 0.996419, 0.071630, 0.027118;;, - 108;4;-0.028615, 0.996493, 0.071674, 0.025988;;, - 109;4;-0.025621, 0.996574, 0.071723, 0.024744;;, - 110;4;-0.022434, 0.996661, 0.071774, 0.023420;;, - 111;4;-0.019147, 0.996751, 0.071827, 0.022055;;, - 112;4;-0.015860, 0.996840, 0.071880, 0.020690;;, - 113;4;-0.012673, 0.996927, 0.071931, 0.019366;;, - 114;4;-0.009679, 0.997009, 0.071979, 0.018122;;, - 115;4;-0.006959, 0.997083, 0.072023, 0.016992;;, - 116;4;-0.004579, 0.997148, 0.072062, 0.016004;;, - 117;4;-0.002590, 0.997202, 0.072094, 0.015177;;, - 118;4;-0.001024, 0.997244, 0.072119, 0.014527;;, - 119;4; 0.000098, 0.997275, 0.072137, 0.014061;;, - 120;4; 0.000769, 0.997293, 0.072148, 0.013782;;, - 121;4; 0.000990, 0.997299, 0.072151, 0.013690;;, - 122;4; 0.000769, 0.997293, 0.072148, 0.013782;;, - 123;4; 0.000098, 0.997275, 0.072137, 0.014061;;, - 124;4;-0.001024, 0.997244, 0.072119, 0.014527;;, - 125;4;-0.002590, 0.997202, 0.072094, 0.015177;;, - 126;4;-0.004579, 0.997148, 0.072062, 0.016004;;, - 127;4;-0.006959, 0.997083, 0.072023, 0.016992;;, - 128;4;-0.009679, 0.997009, 0.071979, 0.018122;;, - 129;4;-0.012673, 0.996927, 0.071931, 0.019366;;, - 130;4;-0.015860, 0.996840, 0.071880, 0.020690;;, - 131;4;-0.019147, 0.996751, 0.071827, 0.022055;;, - 132;4;-0.022434, 0.996661, 0.071774, 0.023420;;, - 133;4;-0.025621, 0.996574, 0.071723, 0.024744;;, - 134;4;-0.028615, 0.996493, 0.071674, 0.025988;;, - 135;4;-0.031335, 0.996419, 0.071630, 0.027118;;, - 136;4;-0.033715, 0.996354, 0.071592, 0.028106;;, - 137;4;-0.035704, 0.996300, 0.071560, 0.028932;;, - 138;4;-0.037270, 0.996257, 0.071535, 0.029583;;, - 139;4;-0.038392, 0.996227, 0.071517, 0.030048;;, - 140;4;-0.039062, 0.996208, 0.071506, 0.030327;;, - 141;4;-0.039284, 0.996202, 0.071502, 0.030419;;, - 142;4;-0.039115, 0.996208, 0.071505, 0.030336;;, - 143;4;-0.038639, 0.996224, 0.071513, 0.030100;;, - 144;4;-0.037892, 0.996249, 0.071526, 0.029733;;, - 145;4;-0.036906, 0.996282, 0.071542, 0.029250;;, - 146;4;-0.035703, 0.996322, 0.071562, 0.028665;;, - 147;4;-0.034305, 0.996368, 0.071585, 0.027989;;, - 148;4;-0.032728, 0.996419, 0.071611, 0.027232;;, - 149;4;-0.030984, 0.996475, 0.071640, 0.026401;;, - 150;4;-0.029084, 0.996536, 0.071671, 0.025504;;, - 151;4;-0.027040, 0.996601, 0.071705, 0.024547;;, - 152;4;-0.024856, 0.996669, 0.071741, 0.023537;;, - 153;4;-0.022540, 0.996740, 0.071779, 0.022479;;, - 154;4;-0.020096, 0.996813, 0.071819, 0.021379;;, - 155;4;-0.017525, 0.996888, 0.071861, 0.020245;;, - 156;4;-0.014829, 0.996965, 0.071905, 0.019082;;, - 157;4;-0.012005, 0.997043, 0.071950, 0.017902;;, - 158;4;-0.009047, 0.997120, 0.071997, 0.016718;;, - 159;4;-0.005937, 0.997194, 0.072047, 0.015555;;, - 160;4;-0.002640, 0.997260, 0.072098, 0.014470;;, - 161;4; 0.000990, 0.997299, 0.072151, 0.013690;;, - 162;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 163;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 164;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 165;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 166;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 167;4; 0.003930, 0.958043, 0.286296, 0.013151;;, - 168;4; 0.648448, 0.757709, 0.045973, 0.057269;;, - 169;4; 0.649549, 0.757271, 0.047200, 0.056091;;, - 170;4; 0.649725, 0.756946, 0.050660, 0.053001;;, - 171;4; 0.649483, 0.756671, 0.055081, 0.049073;;, - 172;4; 0.649550, 0.756346, 0.058515, 0.045995;;, - 173;4; 0.650401, 0.755911, 0.059724, 0.044837;;, - 174;4; 0.652287, 0.754678, 0.058785, 0.045494;;, - 175;4; 0.655167, 0.752148, 0.056006, 0.047730;;, - 176;4; 0.658293, 0.749160, 0.051993, 0.051173;;, - 177;4; 0.660622, 0.746956, 0.047989, 0.054888;;, - 178;4; 0.661573, 0.746277, 0.044967, 0.058062;;, - 179;4; 0.660467, 0.747385, 0.042436, 0.061362;;, - 180;4; 0.656915, 0.750262, 0.039819, 0.065439;;, - 181;4; 0.652243, 0.753921, 0.037593, 0.069365;;, - 182;4; 0.648570, 0.756808, 0.036216, 0.072016;;, - 183;4; 0.647260, 0.757932, 0.035794, 0.072889;;, - 184;4; 0.647163, 0.758022, 0.036704, 0.071517;;, - 185;4; 0.646979, 0.757987, 0.039247, 0.067643;;, - 186;4; 0.646980, 0.757869, 0.042510, 0.062649;;, - 187;4; 0.647442, 0.757754, 0.045057, 0.058724;;, - 188;4; 0.648448, 0.757709, 0.045973, 0.057269;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 2.000000, 6.750000, 0.000000;;, - 1;3; 2.000000, 6.750000, 0.000000;;, - 2;3; 2.000000, 6.750000, 0.000000;;, - 3;3; 2.000000, 6.750000, 0.000000;;, - 4;3; 2.000000, 6.750000, 0.000000;;, - 5;3; 2.000000, 6.750000, 0.000000;;, - 6;3; 2.000000, 6.750000, 0.000000;;, - 7;3; 2.000000, 6.750000,-0.000000;;, - 8;3; 2.000000, 6.750000,-0.000000;;, - 9;3; 2.000000, 6.750000, 0.000000;;, - 10;3; 2.000000, 6.750000,-0.000000;;, - 11;3; 2.000000, 6.750000, 0.000000;;, - 12;3; 2.000000, 6.750000, 0.000000;;, - 13;3; 2.000000, 6.750000, 0.000000;;, - 14;3; 2.000000, 6.750000,-0.000000;;, - 15;3; 2.000000, 6.750000,-0.000000;;, - 16;3; 2.000000, 6.750000, 0.000000;;, - 17;3; 2.000000, 6.750001,-0.000000;;, - 18;3; 2.000000, 6.750000, 0.000000;;, - 19;3; 2.000000, 6.750000, 0.000000;;, - 20;3; 2.000000, 6.750000, 0.000000;;, - 21;3; 2.000000, 6.750000, 0.000000;;, - 22;3; 2.000000, 6.750000, 0.000000;;, - 23;3; 2.000000, 6.750001,-0.000000;;, - 24;3; 2.000000, 6.750000, 0.000000;;, - 25;3; 2.000000, 6.750000, 0.000000;;, - 26;3; 2.000000, 6.750000,-0.000000;;, - 27;3; 2.000000, 6.750000, 0.000000;;, - 28;3; 2.000000, 6.750000, 0.000000;;, - 29;3; 2.000000, 6.750000, 0.000000;;, - 30;3; 2.000000, 6.750000, 0.000000;;, - 31;3; 2.000000, 6.750000, 0.000000;;, - 32;3; 2.000000, 6.750000,-0.000000;;, - 33;3; 2.000000, 6.750000,-0.000000;;, - 34;3; 2.000000, 6.750000, 0.000000;;, - 35;3; 2.000000, 6.750000, 0.000000;;, - 36;3; 2.000000, 6.750000,-0.000000;;, - 37;3; 2.000000, 6.750000, 0.000000;;, - 38;3; 2.000000, 6.750000, 0.000000;;, - 39;3; 2.000000, 6.750000, 0.000000;;, - 40;3; 2.000000, 6.750000, 0.000000;;, - 41;3; 2.000000, 6.750000, 0.000000;;, - 42;3; 2.000000, 6.750000, 0.000000;;, - 43;3; 2.000000, 6.750000, 0.000000;;, - 44;3; 2.000000, 6.750000, 0.000000;;, - 45;3; 2.000000, 6.750000, 0.000000;;, - 46;3; 2.000000, 6.750000,-0.000000;;, - 47;3; 2.000000, 6.750000, 0.000000;;, - 48;3; 2.000000, 6.750000, 0.000000;;, - 49;3; 2.000000, 6.750000, 0.000000;;, - 50;3; 2.000000, 6.750000,-0.000000;;, - 51;3; 2.000000, 6.750000, 0.000000;;, - 52;3; 2.000000, 6.750000, 0.000000;;, - 53;3; 2.000000, 6.750000, 0.000000;;, - 54;3; 2.000000, 6.750000, 0.000000;;, - 55;3; 2.000000, 6.750000,-0.000000;;, - 56;3; 2.000000, 6.750000, 0.000000;;, - 57;3; 2.000000, 6.750001,-0.000000;;, - 58;3; 2.000000, 6.750000, 0.000000;;, - 59;3; 2.000000, 6.750000, 0.000000;;, - 60;3; 2.000000, 6.750000, 0.000000;;, - 61;3; 2.000000, 6.750000, 0.000000;;, - 62;3; 2.000000, 6.750000, 0.000000;;, - 63;3; 2.000000, 6.750000,-0.000000;;, - 64;3; 2.000000, 6.750000, 0.000000;;, - 65;3; 2.000000, 6.750000, 0.000000;;, - 66;3; 2.000000, 6.750000, 0.000000;;, - 67;3; 2.000000, 6.750000, 0.000000;;, - 68;3; 2.000000, 6.750000, 0.000000;;, - 69;3; 2.000000, 6.750000,-0.000000;;, - 70;3; 2.000000, 6.750000,-0.000000;;, - 71;3; 2.000000, 6.750000,-0.000000;;, - 72;3; 2.000000, 6.750000,-0.000000;;, - 73;3; 2.000000, 6.749999, 0.000000;;, - 74;3; 2.000000, 6.750000, 0.000000;;, - 75;3; 2.000000, 6.750000, 0.000000;;, - 76;3; 2.000000, 6.750000,-0.000000;;, - 77;3; 2.000000, 6.750000, 0.000000;;, - 78;3; 2.000000, 6.750000,-0.000000;;, - 79;3; 2.000000, 6.750000, 0.000000;;, - 80;3; 2.000000, 6.750000, 0.000000;;, - 81;3; 2.000000, 6.750000,-0.000000;;, - 82;3; 2.000000, 6.750000, 0.000000;;, - 83;3; 2.000000, 6.750000,-0.000000;;, - 84;3; 2.000000, 6.750000, 0.000000;;, - 85;3; 2.000000, 6.750000,-0.000000;;, - 86;3; 2.000000, 6.750000, 0.000000;;, - 87;3; 2.000000, 6.750000,-0.000000;;, - 88;3; 2.000000, 6.750000, 0.000000;;, - 89;3; 2.000000, 6.750000,-0.000000;;, - 90;3; 2.000000, 6.750000,-0.000000;;, - 91;3; 2.000000, 6.750000, 0.000000;;, - 92;3; 2.000000, 6.750000,-0.000000;;, - 93;3; 2.000000, 6.750000,-0.000000;;, - 94;3; 2.000000, 6.750000,-0.000000;;, - 95;3; 2.000000, 6.750000, 0.000000;;, - 96;3; 2.000000, 6.750000,-0.000000;;, - 97;3; 2.000000, 6.750000, 0.000000;;, - 98;3; 2.000000, 6.750000, 0.000000;;, - 99;3; 2.000000, 6.750000,-0.000000;;, - 100;3; 2.000000, 6.750000, 0.000000;;, - 101;3; 2.000000, 6.750000, 0.000000;;, - 102;3; 2.000000, 6.750000,-0.000000;;, - 103;3; 2.000000, 6.750000, 0.000000;;, - 104;3; 2.000000, 6.750000, 0.000000;;, - 105;3; 2.000000, 6.750000, 0.000000;;, - 106;3; 2.000000, 6.750000, 0.000000;;, - 107;3; 2.000000, 6.750000,-0.000000;;, - 108;3; 2.000000, 6.750000, 0.000000;;, - 109;3; 2.000000, 6.750000, 0.000000;;, - 110;3; 2.000000, 6.750000,-0.000000;;, - 111;3; 2.000000, 6.750000,-0.000000;;, - 112;3; 2.000000, 6.750000,-0.000000;;, - 113;3; 2.000000, 6.750000,-0.000000;;, - 114;3; 2.000000, 6.750000, 0.000000;;, - 115;3; 2.000000, 6.750000, 0.000000;;, - 116;3; 2.000000, 6.750000, 0.000000;;, - 117;3; 2.000000, 6.750000,-0.000000;;, - 118;3; 2.000000, 6.750000,-0.000000;;, - 119;3; 2.000000, 6.750000,-0.000000;;, - 120;3; 2.000000, 6.750000, 0.000000;;, - 121;3; 2.000000, 6.750000,-0.000000;;, - 122;3; 2.000000, 6.750000,-0.000000;;, - 123;3; 2.000000, 6.750000,-0.000000;;, - 124;3; 2.000000, 6.750000, 0.000000;;, - 125;3; 2.000000, 6.750000,-0.000000;;, - 126;3; 2.000000, 6.750000, 0.000000;;, - 127;3; 2.000000, 6.750000,-0.000000;;, - 128;3; 2.000000, 6.750000, 0.000000;;, - 129;3; 2.000000, 6.750000,-0.000000;;, - 130;3; 2.000000, 6.750000,-0.000000;;, - 131;3; 2.000000, 6.750000,-0.000000;;, - 132;3; 2.000000, 6.750000,-0.000000;;, - 133;3; 2.000000, 6.750000, 0.000000;;, - 134;3; 2.000000, 6.750000,-0.000000;;, - 135;3; 2.000000, 6.750000, 0.000000;;, - 136;3; 2.000000, 6.750000, 0.000000;;, - 137;3; 2.000000, 6.750000, 0.000000;;, - 138;3; 2.000000, 6.750000, 0.000000;;, - 139;3; 2.000000, 6.750000,-0.000000;;, - 140;3; 2.000000, 6.750000,-0.000000;;, - 141;3; 2.000000, 6.750000, 0.000000;;, - 142;3; 2.000000, 6.750000, 0.000000;;, - 143;3; 2.000000, 6.750000,-0.000000;;, - 144;3; 2.000000, 6.750000, 0.000000;;, - 145;3; 2.000000, 6.750000, 0.000000;;, - 146;3; 2.000000, 6.750000, 0.000000;;, - 147;3; 2.000000, 6.750000,-0.000000;;, - 148;3; 2.000000, 6.750000, 0.000000;;, - 149;3; 2.000000, 6.750000, 0.000000;;, - 150;3; 2.000000, 6.750000,-0.000000;;, - 151;3; 2.000000, 6.750000,-0.000000;;, - 152;3; 2.000000, 6.750000,-0.000000;;, - 153;3; 2.000000, 6.750000,-0.000000;;, - 154;3; 2.000000, 6.750000,-0.000000;;, - 155;3; 2.000000, 6.750000,-0.000000;;, - 156;3; 2.000000, 6.750000,-0.000000;;, - 157;3; 2.000000, 6.750000, 0.000000;;, - 158;3; 2.000000, 6.750000, 0.000000;;, - 159;3; 2.000000, 6.750000,-0.000000;;, - 160;3; 2.000000, 6.750000, 0.000000;;, - 161;3; 2.000000, 6.750000,-0.000000;;, - 162;3; 2.000000, 6.750000, 0.000000;;, - 163;3; 2.000000, 6.750000, 0.000000;;, - 164;3; 2.000000, 6.750000, 0.000000;;, - 165;3; 2.000000, 6.750000, 0.000000;;, - 166;3; 2.000000, 6.750000, 0.000000;;, - 167;3; 2.000000, 6.750000, 0.000000;;, - 168;3; 2.000000, 6.750000, 0.000000;;, - 169;3; 2.000000, 6.750000, 0.000000;;, - 170;3; 2.000000, 6.750000, 0.000000;;, - 171;3; 2.000000, 6.750000, 0.000000;;, - 172;3; 2.000000, 6.750000, 0.000000;;, - 173;3; 2.000000, 6.750000, 0.000000;;, - 174;3; 2.000000, 6.750000, 0.000000;;, - 175;3; 2.000000, 6.750000, 0.000000;;, - 176;3; 2.000000, 6.750000, 0.000000;;, - 177;3; 2.000000, 6.750000, 0.000000;;, - 178;3; 2.000000, 6.750000, 0.000000;;, - 179;3; 2.000000, 6.750000, 0.000000;;, - 180;3; 2.000000, 6.750000, 0.000000;;, - 181;3; 2.000000, 6.750000, 0.000000;;, - 182;3; 2.000000, 6.750000, 0.000000;;, - 183;3; 2.000000, 6.750000, 0.000000;;, - 184;3; 2.000000, 6.750000, 0.000000;;, - 185;3; 2.000000, 6.750000, 0.000000;;, - 186;3; 2.000000, 6.750000, 0.000000;;, - 187;3; 2.000000, 6.750000, 0.000000;;, - 188;3; 2.000000, 6.750000, 0.000000;;; - } - } - Animation { - {Armature_Leg_Right} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 15;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 25;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 40;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 55;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, - 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, - 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, - 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, - 65;4;-0.043249, 0.999151,-0.000000,-0.000000;;, - 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, - 67;4;-0.042626, 0.999235,-0.000000,-0.000000;;, - 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, - 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, - 70;4;-0.040725, 0.999391,-0.000000,-0.000000;;, - 71;4;-0.039732, 0.999450,-0.000000,-0.000000;;, - 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, - 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, - 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, - 75;4;-0.032769, 0.999707,-0.000000,-0.000000;;, - 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, - 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, - 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, - 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, - 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, - 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, - 85;4; 0.699534, 0.714271, 0.000000,-0.000000;;, - 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, - 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, - 88;4; 0.692952, 0.720584, 0.000000,-0.000000;;, - 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, - 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, - 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, - 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 98;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 100;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 105;4; 0.678392, 0.734595, 0.000000,-0.000000;;, - 106;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 108;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 111;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 113;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 129;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 131;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 134;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 136;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 142;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 144;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, - 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 150;4; 0.685070, 0.728162, 0.000000,-0.000000;;, - 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, - 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, - 154;4; 0.692952, 0.720583, 0.000000,-0.000000;;, - 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, - 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, - 157;4; 0.699534, 0.714270, 0.000000,-0.000000;;, - 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, - 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, - 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, - 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 162;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 163;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 164;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 165;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 166;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 167;4; 0.000000, 0.991445, 0.130526,-0.000000;;, - 168;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 169;4; 0.034052, 0.993234, 0.000000,-0.000000;;, - 170;4; 0.129904, 0.974175, 0.000000,-0.000000;;, - 171;4; 0.252901, 0.949704, 0.000000,-0.000000;;, - 172;4; 0.348675, 0.930646, 0.000000,-0.000000;;, - 173;4; 0.382684, 0.923880, 0.000000,-0.000000;;, - 174;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 175;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 176;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 177;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 178;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 179;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 180;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 181;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 182;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 183;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 184;4;-0.348675, 0.930646,-0.000000,-0.000000;;, - 185;4;-0.252901, 0.949704,-0.000000,-0.000000;;, - 186;4;-0.129903, 0.974175,-0.000000,-0.000000;;, - 187;4;-0.034052, 0.993234,-0.000000,-0.000000;;, - 188;4; 0.000000, 1.000000,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 0.999999;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 0.999999;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 0.999999;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 1.000000, 0.000000,-0.000001;;, - 1;3; 1.000000,-0.000000,-0.000001;;, - 2;3; 1.000000,-0.000000,-0.000001;;, - 3;3; 1.000000,-0.000000,-0.000001;;, - 4;3; 1.000000,-0.000000,-0.000001;;, - 5;3; 1.000000,-0.000000,-0.000001;;, - 6;3; 1.000000,-0.000000,-0.000001;;, - 7;3; 1.000000,-0.000000,-0.000001;;, - 8;3; 1.000000,-0.000000,-0.000001;;, - 9;3; 1.000000,-0.000000,-0.000001;;, - 10;3; 1.000000,-0.000000,-0.000000;;, - 11;3; 1.000000,-0.000000,-0.000000;;, - 12;3; 1.000000,-0.000000,-0.000000;;, - 13;3; 1.000000,-0.000000,-0.000000;;, - 14;3; 1.000000,-0.000000,-0.000000;;, - 15;3; 1.000000,-0.000000,-0.000001;;, - 16;3; 1.000000,-0.000000,-0.000001;;, - 17;3; 1.000000,-0.000000,-0.000001;;, - 18;3; 1.000000,-0.000000,-0.000001;;, - 19;3; 1.000000,-0.000000,-0.000001;;, - 20;3; 1.000000,-0.000000,-0.000001;;, - 21;3; 1.000000,-0.000000,-0.000001;;, - 22;3; 1.000000,-0.000000,-0.000000;;, - 23;3; 1.000000,-0.000000,-0.000001;;, - 24;3; 1.000000,-0.000000,-0.000001;;, - 25;3; 1.000000,-0.000000,-0.000001;;, - 26;3; 1.000000,-0.000000,-0.000000;;, - 27;3; 1.000000,-0.000000,-0.000000;;, - 28;3; 1.000000,-0.000000,-0.000000;;, - 29;3; 1.000000,-0.000000,-0.000000;;, - 30;3; 1.000000,-0.000000,-0.000000;;, - 31;3; 1.000000,-0.000000,-0.000001;;, - 32;3; 1.000000,-0.000000,-0.000001;;, - 33;3; 1.000000,-0.000000,-0.000001;;, - 34;3; 1.000000,-0.000000,-0.000001;;, - 35;3; 1.000000,-0.000000,-0.000001;;, - 36;3; 1.000000,-0.000000,-0.000001;;, - 37;3; 1.000000,-0.000000,-0.000001;;, - 38;3; 1.000000,-0.000000,-0.000001;;, - 39;3; 1.000000,-0.000000,-0.000001;;, - 40;3; 1.000000, 0.000000,-0.000001;;, - 41;3; 1.000000,-0.000000,-0.000001;;, - 42;3; 1.000000,-0.000000,-0.000001;;, - 43;3; 1.000000,-0.000000,-0.000001;;, - 44;3; 1.000000,-0.000000,-0.000001;;, - 45;3; 1.000000,-0.000000,-0.000001;;, - 46;3; 1.000000,-0.000000,-0.000001;;, - 47;3; 1.000000,-0.000000,-0.000001;;, - 48;3; 1.000000,-0.000000,-0.000001;;, - 49;3; 1.000000,-0.000000,-0.000001;;, - 50;3; 1.000000,-0.000000,-0.000000;;, - 51;3; 1.000000,-0.000000,-0.000000;;, - 52;3; 1.000000,-0.000000,-0.000000;;, - 53;3; 1.000000,-0.000000,-0.000000;;, - 54;3; 1.000000,-0.000000,-0.000000;;, - 55;3; 1.000000,-0.000000,-0.000001;;, - 56;3; 1.000000,-0.000000,-0.000001;;, - 57;3; 1.000000,-0.000000,-0.000001;;, - 58;3; 1.000000,-0.000000,-0.000001;;, - 59;3; 1.000000,-0.000000,-0.000001;;, - 60;3; 1.000000,-0.000000,-0.000001;;, - 61;3; 1.000000,-0.000000,-0.000001;;, - 62;3; 1.000000,-0.000000,-0.000001;;, - 63;3; 1.000000,-0.000000,-0.000001;;, - 64;3; 1.000000,-0.000000,-0.000001;;, - 65;3; 1.000000,-0.000000,-0.000001;;, - 66;3; 1.000000,-0.000000,-0.000001;;, - 67;3; 1.000000,-0.000000,-0.000000;;, - 68;3; 1.000000,-0.000000,-0.000000;;, - 69;3; 1.000000,-0.000000,-0.000000;;, - 70;3; 1.000000,-0.000000,-0.000000;;, - 71;3; 1.000000,-0.000000,-0.000000;;, - 72;3; 1.000000,-0.000000,-0.000000;;, - 73;3; 1.000000,-0.000000,-0.000000;;, - 74;3; 1.000000,-0.000000,-0.000001;;, - 75;3; 1.000000,-0.000000,-0.000001;;, - 76;3; 1.000000,-0.000000,-0.000001;;, - 77;3; 1.000000,-0.000000,-0.000001;;, - 78;3; 1.000000,-0.000000,-0.000001;;, - 79;3; 1.000000,-0.000000,-0.000001;;, - 80;3; 1.000000, 0.000000,-0.000001;;, - 81;3; 1.000000, 0.000000,-0.000001;;, - 82;3; 1.000000,-0.000000,-0.000001;;, - 83;3; 1.000000,-0.000000,-0.000001;;, - 84;3; 1.000000,-0.000000,-0.000001;;, - 85;3; 1.000000,-0.000000,-0.000001;;, - 86;3; 1.000000,-0.000000,-0.000001;;, - 87;3; 1.000000,-0.000000,-0.000001;;, - 88;3; 1.000000,-0.000000,-0.000001;;, - 89;3; 1.000000,-0.000000,-0.000001;;, - 90;3; 1.000000,-0.000000,-0.000001;;, - 91;3; 1.000000,-0.000000,-0.000001;;, - 92;3; 1.000000,-0.000000,-0.000001;;, - 93;3; 1.000000,-0.000000,-0.000001;;, - 94;3; 1.000000,-0.000000,-0.000001;;, - 95;3; 1.000000,-0.000000,-0.000001;;, - 96;3; 1.000000,-0.000000,-0.000001;;, - 97;3; 1.000000,-0.000000,-0.000001;;, - 98;3; 1.000000,-0.000000,-0.000001;;, - 99;3; 1.000000,-0.000000,-0.000001;;, - 100;3; 1.000000,-0.000000,-0.000001;;, - 101;3; 1.000000,-0.000000,-0.000001;;, - 102;3; 1.000000,-0.000000,-0.000001;;, - 103;3; 1.000000,-0.000000,-0.000001;;, - 104;3; 1.000000,-0.000000,-0.000001;;, - 105;3; 1.000000,-0.000000,-0.000001;;, - 106;3; 1.000000,-0.000000,-0.000001;;, - 107;3; 1.000000,-0.000000,-0.000001;;, - 108;3; 1.000000,-0.000000,-0.000001;;, - 109;3; 1.000000,-0.000000,-0.000001;;, - 110;3; 1.000000,-0.000000,-0.000001;;, - 111;3; 1.000000,-0.000000,-0.000001;;, - 112;3; 1.000000,-0.000000,-0.000001;;, - 113;3; 1.000000,-0.000000,-0.000001;;, - 114;3; 1.000000,-0.000000,-0.000001;;, - 115;3; 1.000000,-0.000000,-0.000001;;, - 116;3; 1.000000,-0.000000,-0.000001;;, - 117;3; 1.000000,-0.000000,-0.000001;;, - 118;3; 1.000000,-0.000000,-0.000001;;, - 119;3; 1.000000,-0.000000,-0.000001;;, - 120;3; 1.000000,-0.000000,-0.000001;;, - 121;3; 1.000000, 0.000000,-0.000001;;, - 122;3; 1.000000,-0.000000,-0.000001;;, - 123;3; 1.000000,-0.000000,-0.000001;;, - 124;3; 1.000000,-0.000000,-0.000001;;, - 125;3; 1.000000,-0.000000,-0.000001;;, - 126;3; 1.000000,-0.000000,-0.000001;;, - 127;3; 1.000000,-0.000000,-0.000001;;, - 128;3; 1.000000,-0.000000,-0.000001;;, - 129;3; 1.000000,-0.000000,-0.000001;;, - 130;3; 1.000000,-0.000000,-0.000001;;, - 131;3; 1.000000,-0.000000,-0.000001;;, - 132;3; 1.000000,-0.000000,-0.000001;;, - 133;3; 1.000000,-0.000000,-0.000001;;, - 134;3; 1.000000,-0.000000,-0.000001;;, - 135;3; 1.000000,-0.000000,-0.000001;;, - 136;3; 1.000000,-0.000000,-0.000001;;, - 137;3; 1.000000,-0.000000,-0.000001;;, - 138;3; 1.000000,-0.000000,-0.000001;;, - 139;3; 1.000000,-0.000000,-0.000001;;, - 140;3; 1.000000,-0.000000,-0.000001;;, - 141;3; 1.000000,-0.000000,-0.000001;;, - 142;3; 1.000000,-0.000000,-0.000001;;, - 143;3; 1.000000,-0.000000,-0.000001;;, - 144;3; 1.000000,-0.000000,-0.000001;;, - 145;3; 1.000000,-0.000000,-0.000001;;, - 146;3; 1.000000,-0.000000,-0.000001;;, - 147;3; 1.000000,-0.000000,-0.000001;;, - 148;3; 1.000000,-0.000000,-0.000001;;, - 149;3; 1.000000,-0.000000,-0.000001;;, - 150;3; 1.000000,-0.000000,-0.000001;;, - 151;3; 1.000000,-0.000000,-0.000001;;, - 152;3; 1.000000,-0.000000,-0.000001;;, - 153;3; 1.000000,-0.000000,-0.000001;;, - 154;3; 1.000000,-0.000000,-0.000001;;, - 155;3; 1.000000,-0.000000,-0.000001;;, - 156;3; 1.000000,-0.000000,-0.000001;;, - 157;3; 1.000000,-0.000000,-0.000001;;, - 158;3; 1.000000,-0.000000,-0.000001;;, - 159;3; 1.000000,-0.000000,-0.000001;;, - 160;3; 1.000000,-0.000000,-0.000001;;, - 161;3; 1.000000, 0.000000,-0.000001;;, - 162;3; 1.000000,-0.000000,-0.000000;;, - 163;3; 1.000000,-0.000000,-0.000000;;, - 164;3; 1.000000,-0.000000,-0.000000;;, - 165;3; 1.000000,-0.000000,-0.000000;;, - 166;3; 1.000000,-0.000000,-0.000000;;, - 167;3; 1.000000,-0.000000,-0.000000;;, - 168;3; 1.000000, 0.000000,-0.000001;;, - 169;3; 1.000000, 0.000000,-0.000001;;, - 170;3; 1.000000, 0.000000,-0.000001;;, - 171;3; 1.000000, 0.000000,-0.000001;;, - 172;3; 1.000000, 0.000000,-0.000001;;, - 173;3; 1.000000, 0.000000,-0.000001;;, - 174;3; 1.000000, 0.000000,-0.000001;;, - 175;3; 1.000000, 0.000000,-0.000001;;, - 176;3; 1.000000, 0.000000,-0.000001;;, - 177;3; 1.000000, 0.000000,-0.000001;;, - 178;3; 1.000000, 0.000000,-0.000001;;, - 179;3; 1.000000, 0.000000,-0.000001;;, - 180;3; 1.000000, 0.000000,-0.000001;;, - 181;3; 1.000000, 0.000000,-0.000001;;, - 182;3; 1.000000, 0.000000,-0.000001;;, - 183;3; 1.000000, 0.000000,-0.000001;;, - 184;3; 1.000000, 0.000000,-0.000001;;, - 185;3; 1.000000, 0.000000,-0.000001;;, - 186;3; 1.000000, 0.000000,-0.000001;;, - 187;3; 1.000000, 0.000000,-0.000001;;, - 188;3; 1.000000, 0.000000,-0.000001;;; - } - } - Animation { - {Armature_Leg_Left} - AnimationKey { // Rotation - 0; - 189; - 0;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 1;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 2;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 3;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 4;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 5;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 6;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 7;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 8;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 9;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 10;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 11;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 12;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 13;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 14;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 15;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 16;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 17;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 18;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 19;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 20;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 21;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 22;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 23;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 24;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 25;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 26;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 27;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 28;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 29;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 30;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 31;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 32;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 33;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 34;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 35;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 36;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 37;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 38;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 39;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 40;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 41;4;-0.000240, 0.999995,-0.000000,-0.000000;;, - 42;4;-0.000967, 0.999979,-0.000000,-0.000000;;, - 43;4;-0.002182, 0.999952,-0.000000,-0.000000;;, - 44;4;-0.003877, 0.999915,-0.000000,-0.000000;;, - 45;4;-0.006032, 0.999868,-0.000000,-0.000000;;, - 46;4;-0.008609, 0.999812,-0.000000,-0.000000;;, - 47;4;-0.011555, 0.999748,-0.000000,-0.000000;;, - 48;4;-0.014798, 0.999677,-0.000000,-0.000000;;, - 49;4;-0.018250, 0.999602,-0.000000,-0.000000;;, - 50;4;-0.021810, 0.999524,-0.000000,-0.000000;;, - 51;4;-0.025369, 0.999446,-0.000000,-0.000000;;, - 52;4;-0.028821, 0.999371,-0.000000,-0.000000;;, - 53;4;-0.032064, 0.999300,-0.000000,-0.000000;;, - 54;4;-0.035010, 0.999236,-0.000000,-0.000000;;, - 55;4;-0.037587, 0.999180,-0.000000,-0.000000;;, - 56;4;-0.039742, 0.999133,-0.000000,-0.000000;;, - 57;4;-0.041437, 0.999096,-0.000000,-0.000000;;, - 58;4;-0.042652, 0.999069,-0.000000,-0.000000;;, - 59;4;-0.043379, 0.999053,-0.000000,-0.000000;;, - 60;4;-0.043619, 0.999048,-0.000000,-0.000000;;, - 61;4;-0.043616, 0.999053,-0.000000,-0.000000;;, - 62;4;-0.043594, 0.999067,-0.000000,-0.000000;;, - 63;4;-0.043536, 0.999089,-0.000000,-0.000000;;, - 64;4;-0.043427, 0.999117,-0.000000,-0.000000;;, - 65;4;-0.043249, 0.999151,-0.000000,-0.000000;;, - 66;4;-0.042989, 0.999191,-0.000000,-0.000000;;, - 67;4;-0.042626, 0.999235,-0.000000,-0.000000;;, - 68;4;-0.042144, 0.999283,-0.000000,-0.000000;;, - 69;4;-0.041519, 0.999336,-0.000000,-0.000000;;, - 70;4;-0.040725, 0.999391,-0.000000,-0.000000;;, - 71;4;-0.039732, 0.999450,-0.000000,-0.000000;;, - 72;4;-0.038501, 0.999511,-0.000000,-0.000000;;, - 73;4;-0.036980, 0.999575,-0.000000,-0.000000;;, - 74;4;-0.035101, 0.999640,-0.000000,-0.000000;;, - 75;4;-0.032769, 0.999707,-0.000000,-0.000000;;, - 76;4;-0.029842, 0.999774,-0.000000,-0.000000;;, - 77;4;-0.026086, 0.999841,-0.000000,-0.000000;;, - 78;4;-0.021070, 0.999906,-0.000000,-0.000000;;, - 79;4;-0.013794, 0.999964,-0.000000,-0.000000;;, - 80;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 81;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 82;4; 0.705874, 0.708245, 0.000000,-0.000000;;, - 83;4; 0.703907, 0.710101, 0.000000,-0.000000;;, - 84;4; 0.701752, 0.712152, 0.000000,-0.000000;;, - 85;4; 0.699534, 0.714271, 0.000000,-0.000000;;, - 86;4; 0.697308, 0.716402, 0.000000,-0.000000;;, - 87;4; 0.695107, 0.718513, 0.000000,-0.000000;;, - 88;4; 0.692952, 0.720584, 0.000000,-0.000000;;, - 89;4; 0.690857, 0.722597, 0.000000,-0.000000;;, - 90;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 91;4; 0.686904, 0.726399, 0.000000,-0.000000;;, - 92;4; 0.685070, 0.728163, 0.000000,-0.000000;;, - 93;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 94;4; 0.681750, 0.731358, 0.000000,-0.000000;;, - 95;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 96;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 97;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 98;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 99;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 100;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 101;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 102;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 103;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 104;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 105;4; 0.678392, 0.734595, 0.000000,-0.000000;;, - 106;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 107;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 108;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 109;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 110;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 111;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 112;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 113;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 114;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 115;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 116;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 117;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 118;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 119;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 120;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 121;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 122;4; 0.706933, 0.707273, 0.000000,-0.000000;;, - 123;4; 0.706408, 0.707776, 0.000000,-0.000000;;, - 124;4; 0.705530, 0.708616, 0.000000,-0.000000;;, - 125;4; 0.704305, 0.709789, 0.000000,-0.000000;;, - 126;4; 0.702749, 0.711279, 0.000000,-0.000000;;, - 127;4; 0.700886, 0.713062, 0.000000,-0.000000;;, - 128;4; 0.698758, 0.715099, 0.000000,-0.000000;;, - 129;4; 0.696415, 0.717342, 0.000000,-0.000000;;, - 130;4; 0.693920, 0.719730, 0.000000,-0.000000;;, - 131;4; 0.691349, 0.722192, 0.000000,-0.000000;;, - 132;4; 0.688777, 0.724654, 0.000000,-0.000000;;, - 133;4; 0.686283, 0.727042, 0.000000,-0.000000;;, - 134;4; 0.683940, 0.729285, 0.000000,-0.000000;;, - 135;4; 0.681811, 0.731323, 0.000000,-0.000000;;, - 136;4; 0.679949, 0.733105, 0.000000,-0.000000;;, - 137;4; 0.678392, 0.734596, 0.000000,-0.000000;;, - 138;4; 0.677167, 0.735768, 0.000000,-0.000000;;, - 139;4; 0.676289, 0.736609, 0.000000,-0.000000;;, - 140;4; 0.675764, 0.737111, 0.000000,-0.000000;;, - 141;4; 0.675590, 0.737277, 0.000000,-0.000000;;, - 142;4; 0.675754, 0.737121, 0.000000,-0.000000;;, - 143;4; 0.676211, 0.736682, 0.000000,-0.000000;;, - 144;4; 0.676923, 0.735998, 0.000000,-0.000000;;, - 145;4; 0.677857, 0.735101, 0.000000,-0.000000;;, - 146;4; 0.678987, 0.734015, 0.000000,-0.000000;;, - 147;4; 0.680291, 0.732761, 0.000000,-0.000000;;, - 148;4; 0.681750, 0.731357, 0.000000,-0.000000;;, - 149;4; 0.683348, 0.729820, 0.000000,-0.000000;;, - 150;4; 0.685070, 0.728162, 0.000000,-0.000000;;, - 151;4; 0.686904, 0.726398, 0.000000,-0.000000;;, - 152;4; 0.688837, 0.724539, 0.000000,-0.000000;;, - 153;4; 0.690857, 0.722596, 0.000000,-0.000000;;, - 154;4; 0.692952, 0.720583, 0.000000,-0.000000;;, - 155;4; 0.695107, 0.718512, 0.000000,-0.000000;;, - 156;4; 0.697308, 0.716401, 0.000000,-0.000000;;, - 157;4; 0.699534, 0.714270, 0.000000,-0.000000;;, - 158;4; 0.701752, 0.712151, 0.000000,-0.000000;;, - 159;4; 0.703907, 0.710100, 0.000000,-0.000000;;, - 160;4; 0.705874, 0.708244, 0.000000,-0.000000;;, - 161;4; 0.707107, 0.707107, 0.000000,-0.000000;;, - 162;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 163;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 164;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 165;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 166;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 167;4; 0.000000, 0.991445,-0.130526,-0.000000;;, - 168;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 169;4;-0.034052, 0.993234,-0.000000,-0.000000;;, - 170;4;-0.129903, 0.974175,-0.000000,-0.000000;;, - 171;4;-0.252901, 0.949704,-0.000000,-0.000000;;, - 172;4;-0.348675, 0.930646,-0.000000,-0.000000;;, - 173;4;-0.382683, 0.923880,-0.000000,-0.000000;;, - 174;4;-0.361005, 0.930646,-0.000000,-0.000000;;, - 175;4;-0.294618, 0.949704,-0.000000,-0.000000;;, - 176;4;-0.194899, 0.974175,-0.000000,-0.000000;;, - 177;4;-0.088939, 0.993234,-0.000000,-0.000000;;, - 178;4; 0.000000, 1.000000,-0.000000,-0.000000;;, - 179;4; 0.088939, 0.993234, 0.000000,-0.000000;;, - 180;4; 0.194899, 0.974175, 0.000000,-0.000000;;, - 181;4; 0.294618, 0.949704, 0.000000,-0.000000;;, - 182;4; 0.361005, 0.930646, 0.000000,-0.000000;;, - 183;4; 0.382684, 0.923880, 0.000000,-0.000000;;, - 184;4; 0.348675, 0.930646, 0.000000,-0.000000;;, - 185;4; 0.252901, 0.949704, 0.000000,-0.000000;;, - 186;4; 0.129904, 0.974175, 0.000000,-0.000000;;, - 187;4; 0.034052, 0.993234, 0.000000,-0.000000;;, - 188;4; 0.000000, 1.000000,-0.000000,-0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 0.999999;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 0.999999;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 0.999999;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3;-1.000000, 0.000000,-0.000001;;, - 1;3;-1.000000,-0.000000,-0.000001;;, - 2;3;-1.000000,-0.000000,-0.000001;;, - 3;3;-1.000000,-0.000000,-0.000001;;, - 4;3;-1.000000,-0.000000,-0.000001;;, - 5;3;-1.000000,-0.000000,-0.000001;;, - 6;3;-1.000000,-0.000000,-0.000001;;, - 7;3;-1.000000,-0.000000,-0.000001;;, - 8;3;-1.000000,-0.000000,-0.000001;;, - 9;3;-1.000000,-0.000000,-0.000001;;, - 10;3;-1.000000,-0.000000,-0.000000;;, - 11;3;-1.000000,-0.000000,-0.000000;;, - 12;3;-1.000000,-0.000000,-0.000000;;, - 13;3;-1.000000,-0.000000,-0.000000;;, - 14;3;-1.000000,-0.000000,-0.000000;;, - 15;3;-1.000000,-0.000000,-0.000001;;, - 16;3;-1.000000,-0.000000,-0.000001;;, - 17;3;-1.000000,-0.000000,-0.000001;;, - 18;3;-1.000000,-0.000000,-0.000001;;, - 19;3;-1.000000,-0.000000,-0.000001;;, - 20;3;-1.000000,-0.000000,-0.000001;;, - 21;3;-1.000000,-0.000000,-0.000001;;, - 22;3;-1.000000,-0.000000,-0.000000;;, - 23;3;-1.000000,-0.000000,-0.000001;;, - 24;3;-1.000000,-0.000000,-0.000001;;, - 25;3;-1.000000,-0.000000,-0.000001;;, - 26;3;-1.000000,-0.000000,-0.000000;;, - 27;3;-1.000000,-0.000000,-0.000000;;, - 28;3;-1.000000,-0.000000,-0.000000;;, - 29;3;-1.000000,-0.000000,-0.000000;;, - 30;3;-1.000000,-0.000000,-0.000000;;, - 31;3;-1.000000,-0.000000,-0.000001;;, - 32;3;-1.000000,-0.000000,-0.000001;;, - 33;3;-1.000000,-0.000000,-0.000001;;, - 34;3;-1.000000,-0.000000,-0.000001;;, - 35;3;-1.000000,-0.000000,-0.000001;;, - 36;3;-1.000000,-0.000000,-0.000001;;, - 37;3;-1.000000,-0.000000,-0.000001;;, - 38;3;-1.000000,-0.000000,-0.000001;;, - 39;3;-1.000000,-0.000000,-0.000001;;, - 40;3;-1.000000, 0.000000,-0.000001;;, - 41;3;-1.000000,-0.000000,-0.000001;;, - 42;3;-1.000000,-0.000000,-0.000001;;, - 43;3;-1.000000,-0.000000,-0.000001;;, - 44;3;-1.000000,-0.000000,-0.000001;;, - 45;3;-1.000000,-0.000000,-0.000001;;, - 46;3;-1.000000,-0.000000,-0.000001;;, - 47;3;-1.000000,-0.000000,-0.000001;;, - 48;3;-1.000000,-0.000000,-0.000001;;, - 49;3;-1.000000,-0.000000,-0.000001;;, - 50;3;-1.000000,-0.000000,-0.000000;;, - 51;3;-1.000000,-0.000000,-0.000000;;, - 52;3;-1.000000,-0.000000,-0.000000;;, - 53;3;-1.000000,-0.000000,-0.000000;;, - 54;3;-1.000000,-0.000000,-0.000000;;, - 55;3;-1.000000,-0.000000,-0.000001;;, - 56;3;-1.000000,-0.000000,-0.000001;;, - 57;3;-1.000000,-0.000000,-0.000001;;, - 58;3;-1.000000,-0.000000,-0.000001;;, - 59;3;-1.000000,-0.000000,-0.000001;;, - 60;3;-1.000000,-0.000000,-0.000001;;, - 61;3;-1.000000,-0.000000,-0.000001;;, - 62;3;-1.000000,-0.000000,-0.000001;;, - 63;3;-1.000000,-0.000000,-0.000001;;, - 64;3;-1.000000,-0.000000,-0.000001;;, - 65;3;-1.000000,-0.000000,-0.000001;;, - 66;3;-1.000000,-0.000000,-0.000001;;, - 67;3;-1.000000,-0.000000,-0.000000;;, - 68;3;-1.000000,-0.000000,-0.000000;;, - 69;3;-1.000000,-0.000000,-0.000000;;, - 70;3;-1.000000,-0.000000,-0.000000;;, - 71;3;-1.000000,-0.000000,-0.000000;;, - 72;3;-1.000000,-0.000000,-0.000000;;, - 73;3;-1.000000,-0.000000,-0.000000;;, - 74;3;-1.000000,-0.000000,-0.000001;;, - 75;3;-1.000000,-0.000000,-0.000001;;, - 76;3;-1.000000,-0.000000,-0.000001;;, - 77;3;-1.000000,-0.000000,-0.000001;;, - 78;3;-1.000000,-0.000000,-0.000001;;, - 79;3;-1.000000,-0.000000,-0.000001;;, - 80;3;-1.000000, 0.000000,-0.000001;;, - 81;3;-1.000000, 0.000000,-0.000001;;, - 82;3;-1.000000,-0.000000,-0.000001;;, - 83;3;-1.000000,-0.000000,-0.000001;;, - 84;3;-1.000000,-0.000000,-0.000001;;, - 85;3;-1.000000,-0.000000,-0.000001;;, - 86;3;-1.000000,-0.000000,-0.000001;;, - 87;3;-1.000000,-0.000000,-0.000001;;, - 88;3;-1.000000,-0.000000,-0.000001;;, - 89;3;-1.000000,-0.000000,-0.000001;;, - 90;3;-1.000000,-0.000000,-0.000001;;, - 91;3;-1.000000,-0.000000,-0.000001;;, - 92;3;-1.000000,-0.000000,-0.000001;;, - 93;3;-1.000000,-0.000000,-0.000001;;, - 94;3;-1.000000,-0.000000,-0.000001;;, - 95;3;-1.000000,-0.000000,-0.000001;;, - 96;3;-1.000000,-0.000000,-0.000001;;, - 97;3;-1.000000,-0.000000,-0.000001;;, - 98;3;-1.000000,-0.000000,-0.000001;;, - 99;3;-1.000000,-0.000000,-0.000001;;, - 100;3;-1.000000,-0.000000,-0.000001;;, - 101;3;-1.000000,-0.000000,-0.000001;;, - 102;3;-1.000000,-0.000000,-0.000001;;, - 103;3;-1.000000,-0.000000,-0.000001;;, - 104;3;-1.000000,-0.000000,-0.000001;;, - 105;3;-1.000000,-0.000000,-0.000001;;, - 106;3;-1.000000,-0.000000,-0.000001;;, - 107;3;-1.000000,-0.000000,-0.000001;;, - 108;3;-1.000000,-0.000000,-0.000001;;, - 109;3;-1.000000,-0.000000,-0.000001;;, - 110;3;-1.000000,-0.000000,-0.000001;;, - 111;3;-1.000000,-0.000000,-0.000001;;, - 112;3;-1.000000,-0.000000,-0.000001;;, - 113;3;-1.000000,-0.000000,-0.000001;;, - 114;3;-1.000000,-0.000000,-0.000001;;, - 115;3;-1.000000,-0.000000,-0.000001;;, - 116;3;-1.000000,-0.000000,-0.000001;;, - 117;3;-1.000000,-0.000000,-0.000001;;, - 118;3;-1.000000,-0.000000,-0.000001;;, - 119;3;-1.000000,-0.000000,-0.000001;;, - 120;3;-1.000000,-0.000000,-0.000001;;, - 121;3;-1.000000, 0.000000,-0.000001;;, - 122;3;-1.000000,-0.000000,-0.000001;;, - 123;3;-1.000000,-0.000000,-0.000001;;, - 124;3;-1.000000,-0.000000,-0.000001;;, - 125;3;-1.000000,-0.000000,-0.000001;;, - 126;3;-1.000000,-0.000000,-0.000001;;, - 127;3;-1.000000,-0.000000,-0.000001;;, - 128;3;-1.000000,-0.000000,-0.000001;;, - 129;3;-1.000000,-0.000000,-0.000001;;, - 130;3;-1.000000,-0.000000,-0.000001;;, - 131;3;-1.000000,-0.000000,-0.000001;;, - 132;3;-1.000000,-0.000000,-0.000001;;, - 133;3;-1.000000,-0.000000,-0.000001;;, - 134;3;-1.000000,-0.000000,-0.000001;;, - 135;3;-1.000000,-0.000000,-0.000001;;, - 136;3;-1.000000,-0.000000,-0.000001;;, - 137;3;-1.000000,-0.000000,-0.000001;;, - 138;3;-1.000000,-0.000000,-0.000001;;, - 139;3;-1.000000,-0.000000,-0.000001;;, - 140;3;-1.000000,-0.000000,-0.000001;;, - 141;3;-1.000000,-0.000000,-0.000001;;, - 142;3;-1.000000,-0.000000,-0.000001;;, - 143;3;-1.000000,-0.000000,-0.000001;;, - 144;3;-1.000000,-0.000000,-0.000001;;, - 145;3;-1.000000,-0.000000,-0.000001;;, - 146;3;-1.000000,-0.000000,-0.000001;;, - 147;3;-1.000000,-0.000000,-0.000001;;, - 148;3;-1.000000,-0.000000,-0.000001;;, - 149;3;-1.000000,-0.000000,-0.000001;;, - 150;3;-1.000000,-0.000000,-0.000001;;, - 151;3;-1.000000,-0.000000,-0.000001;;, - 152;3;-1.000000,-0.000000,-0.000001;;, - 153;3;-1.000000,-0.000000,-0.000001;;, - 154;3;-1.000000,-0.000000,-0.000001;;, - 155;3;-1.000000,-0.000000,-0.000001;;, - 156;3;-1.000000,-0.000000,-0.000001;;, - 157;3;-1.000000,-0.000000,-0.000001;;, - 158;3;-1.000000,-0.000000,-0.000001;;, - 159;3;-1.000000,-0.000000,-0.000001;;, - 160;3;-1.000000,-0.000000,-0.000001;;, - 161;3;-1.000000, 0.000000,-0.000001;;, - 162;3;-1.000000,-0.000000,-0.000000;;, - 163;3;-1.000000,-0.000000,-0.000000;;, - 164;3;-1.000000,-0.000000,-0.000000;;, - 165;3;-1.000000,-0.000000,-0.000000;;, - 166;3;-1.000000,-0.000000,-0.000000;;, - 167;3;-1.000000,-0.000000,-0.000000;;, - 168;3;-1.000000, 0.000000,-0.000001;;, - 169;3;-1.000000, 0.000000,-0.000001;;, - 170;3;-1.000000, 0.000000,-0.000001;;, - 171;3;-1.000000, 0.000000,-0.000001;;, - 172;3;-1.000000, 0.000000,-0.000001;;, - 173;3;-1.000000, 0.000000,-0.000001;;, - 174;3;-1.000000, 0.000000,-0.000001;;, - 175;3;-1.000000, 0.000000,-0.000001;;, - 176;3;-1.000000, 0.000000,-0.000001;;, - 177;3;-1.000000, 0.000000,-0.000001;;, - 178;3;-1.000000, 0.000000,-0.000001;;, - 179;3;-1.000000, 0.000000,-0.000001;;, - 180;3;-1.000000, 0.000000,-0.000001;;, - 181;3;-1.000000, 0.000000,-0.000001;;, - 182;3;-1.000000, 0.000000,-0.000001;;, - 183;3;-1.000000, 0.000000,-0.000001;;, - 184;3;-1.000000, 0.000000,-0.000001;;, - 185;3;-1.000000, 0.000000,-0.000001;;, - 186;3;-1.000000, 0.000000,-0.000001;;, - 187;3;-1.000000, 0.000000,-0.000001;;, - 188;3;-1.000000, 0.000000,-0.000001;;; - } - } -} // End of AnimationSet ArmatureAction -AnimationSet Default_Action { - Animation { - {Player} - AnimationKey { // Rotation - 0; - 189; - 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, - 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;; - } - AnimationKey { // Scale - 1; - 189; - 0;3; 1.000000, 1.000000, 1.000000;;, - 1;3; 1.000000, 1.000000, 1.000000;;, - 2;3; 1.000000, 1.000000, 1.000000;;, - 3;3; 1.000000, 1.000000, 1.000000;;, - 4;3; 1.000000, 1.000000, 1.000000;;, - 5;3; 1.000000, 1.000000, 1.000000;;, - 6;3; 1.000000, 1.000000, 1.000000;;, - 7;3; 1.000000, 1.000000, 1.000000;;, - 8;3; 1.000000, 1.000000, 1.000000;;, - 9;3; 1.000000, 1.000000, 1.000000;;, - 10;3; 1.000000, 1.000000, 1.000000;;, - 11;3; 1.000000, 1.000000, 1.000000;;, - 12;3; 1.000000, 1.000000, 1.000000;;, - 13;3; 1.000000, 1.000000, 1.000000;;, - 14;3; 1.000000, 1.000000, 1.000000;;, - 15;3; 1.000000, 1.000000, 1.000000;;, - 16;3; 1.000000, 1.000000, 1.000000;;, - 17;3; 1.000000, 1.000000, 1.000000;;, - 18;3; 1.000000, 1.000000, 1.000000;;, - 19;3; 1.000000, 1.000000, 1.000000;;, - 20;3; 1.000000, 1.000000, 1.000000;;, - 21;3; 1.000000, 1.000000, 1.000000;;, - 22;3; 1.000000, 1.000000, 1.000000;;, - 23;3; 1.000000, 1.000000, 1.000000;;, - 24;3; 1.000000, 1.000000, 1.000000;;, - 25;3; 1.000000, 1.000000, 1.000000;;, - 26;3; 1.000000, 1.000000, 1.000000;;, - 27;3; 1.000000, 1.000000, 1.000000;;, - 28;3; 1.000000, 1.000000, 1.000000;;, - 29;3; 1.000000, 1.000000, 1.000000;;, - 30;3; 1.000000, 1.000000, 1.000000;;, - 31;3; 1.000000, 1.000000, 1.000000;;, - 32;3; 1.000000, 1.000000, 1.000000;;, - 33;3; 1.000000, 1.000000, 1.000000;;, - 34;3; 1.000000, 1.000000, 1.000000;;, - 35;3; 1.000000, 1.000000, 1.000000;;, - 36;3; 1.000000, 1.000000, 1.000000;;, - 37;3; 1.000000, 1.000000, 1.000000;;, - 38;3; 1.000000, 1.000000, 1.000000;;, - 39;3; 1.000000, 1.000000, 1.000000;;, - 40;3; 1.000000, 1.000000, 1.000000;;, - 41;3; 1.000000, 1.000000, 1.000000;;, - 42;3; 1.000000, 1.000000, 1.000000;;, - 43;3; 1.000000, 1.000000, 1.000000;;, - 44;3; 1.000000, 1.000000, 1.000000;;, - 45;3; 1.000000, 1.000000, 1.000000;;, - 46;3; 1.000000, 1.000000, 1.000000;;, - 47;3; 1.000000, 1.000000, 1.000000;;, - 48;3; 1.000000, 1.000000, 1.000000;;, - 49;3; 1.000000, 1.000000, 1.000000;;, - 50;3; 1.000000, 1.000000, 1.000000;;, - 51;3; 1.000000, 1.000000, 1.000000;;, - 52;3; 1.000000, 1.000000, 1.000000;;, - 53;3; 1.000000, 1.000000, 1.000000;;, - 54;3; 1.000000, 1.000000, 1.000000;;, - 55;3; 1.000000, 1.000000, 1.000000;;, - 56;3; 1.000000, 1.000000, 1.000000;;, - 57;3; 1.000000, 1.000000, 1.000000;;, - 58;3; 1.000000, 1.000000, 1.000000;;, - 59;3; 1.000000, 1.000000, 1.000000;;, - 60;3; 1.000000, 1.000000, 1.000000;;, - 61;3; 1.000000, 1.000000, 1.000000;;, - 62;3; 1.000000, 1.000000, 1.000000;;, - 63;3; 1.000000, 1.000000, 1.000000;;, - 64;3; 1.000000, 1.000000, 1.000000;;, - 65;3; 1.000000, 1.000000, 1.000000;;, - 66;3; 1.000000, 1.000000, 1.000000;;, - 67;3; 1.000000, 1.000000, 1.000000;;, - 68;3; 1.000000, 1.000000, 1.000000;;, - 69;3; 1.000000, 1.000000, 1.000000;;, - 70;3; 1.000000, 1.000000, 1.000000;;, - 71;3; 1.000000, 1.000000, 1.000000;;, - 72;3; 1.000000, 1.000000, 1.000000;;, - 73;3; 1.000000, 1.000000, 1.000000;;, - 74;3; 1.000000, 1.000000, 1.000000;;, - 75;3; 1.000000, 1.000000, 1.000000;;, - 76;3; 1.000000, 1.000000, 1.000000;;, - 77;3; 1.000000, 1.000000, 1.000000;;, - 78;3; 1.000000, 1.000000, 1.000000;;, - 79;3; 1.000000, 1.000000, 1.000000;;, - 80;3; 1.000000, 1.000000, 1.000000;;, - 81;3; 1.000000, 1.000000, 1.000000;;, - 82;3; 1.000000, 1.000000, 1.000000;;, - 83;3; 1.000000, 1.000000, 1.000000;;, - 84;3; 1.000000, 1.000000, 1.000000;;, - 85;3; 1.000000, 1.000000, 1.000000;;, - 86;3; 1.000000, 1.000000, 1.000000;;, - 87;3; 1.000000, 1.000000, 1.000000;;, - 88;3; 1.000000, 1.000000, 1.000000;;, - 89;3; 1.000000, 1.000000, 1.000000;;, - 90;3; 1.000000, 1.000000, 1.000000;;, - 91;3; 1.000000, 1.000000, 1.000000;;, - 92;3; 1.000000, 1.000000, 1.000000;;, - 93;3; 1.000000, 1.000000, 1.000000;;, - 94;3; 1.000000, 1.000000, 1.000000;;, - 95;3; 1.000000, 1.000000, 1.000000;;, - 96;3; 1.000000, 1.000000, 1.000000;;, - 97;3; 1.000000, 1.000000, 1.000000;;, - 98;3; 1.000000, 1.000000, 1.000000;;, - 99;3; 1.000000, 1.000000, 1.000000;;, - 100;3; 1.000000, 1.000000, 1.000000;;, - 101;3; 1.000000, 1.000000, 1.000000;;, - 102;3; 1.000000, 1.000000, 1.000000;;, - 103;3; 1.000000, 1.000000, 1.000000;;, - 104;3; 1.000000, 1.000000, 1.000000;;, - 105;3; 1.000000, 1.000000, 1.000000;;, - 106;3; 1.000000, 1.000000, 1.000000;;, - 107;3; 1.000000, 1.000000, 1.000000;;, - 108;3; 1.000000, 1.000000, 1.000000;;, - 109;3; 1.000000, 1.000000, 1.000000;;, - 110;3; 1.000000, 1.000000, 1.000000;;, - 111;3; 1.000000, 1.000000, 1.000000;;, - 112;3; 1.000000, 1.000000, 1.000000;;, - 113;3; 1.000000, 1.000000, 1.000000;;, - 114;3; 1.000000, 1.000000, 1.000000;;, - 115;3; 1.000000, 1.000000, 1.000000;;, - 116;3; 1.000000, 1.000000, 1.000000;;, - 117;3; 1.000000, 1.000000, 1.000000;;, - 118;3; 1.000000, 1.000000, 1.000000;;, - 119;3; 1.000000, 1.000000, 1.000000;;, - 120;3; 1.000000, 1.000000, 1.000000;;, - 121;3; 1.000000, 1.000000, 1.000000;;, - 122;3; 1.000000, 1.000000, 1.000000;;, - 123;3; 1.000000, 1.000000, 1.000000;;, - 124;3; 1.000000, 1.000000, 1.000000;;, - 125;3; 1.000000, 1.000000, 1.000000;;, - 126;3; 1.000000, 1.000000, 1.000000;;, - 127;3; 1.000000, 1.000000, 1.000000;;, - 128;3; 1.000000, 1.000000, 1.000000;;, - 129;3; 1.000000, 1.000000, 1.000000;;, - 130;3; 1.000000, 1.000000, 1.000000;;, - 131;3; 1.000000, 1.000000, 1.000000;;, - 132;3; 1.000000, 1.000000, 1.000000;;, - 133;3; 1.000000, 1.000000, 1.000000;;, - 134;3; 1.000000, 1.000000, 1.000000;;, - 135;3; 1.000000, 1.000000, 1.000000;;, - 136;3; 1.000000, 1.000000, 1.000000;;, - 137;3; 1.000000, 1.000000, 1.000000;;, - 138;3; 1.000000, 1.000000, 1.000000;;, - 139;3; 1.000000, 1.000000, 1.000000;;, - 140;3; 1.000000, 1.000000, 1.000000;;, - 141;3; 1.000000, 1.000000, 1.000000;;, - 142;3; 1.000000, 1.000000, 1.000000;;, - 143;3; 1.000000, 1.000000, 1.000000;;, - 144;3; 1.000000, 1.000000, 1.000000;;, - 145;3; 1.000000, 1.000000, 1.000000;;, - 146;3; 1.000000, 1.000000, 1.000000;;, - 147;3; 1.000000, 1.000000, 1.000000;;, - 148;3; 1.000000, 1.000000, 1.000000;;, - 149;3; 1.000000, 1.000000, 1.000000;;, - 150;3; 1.000000, 1.000000, 1.000000;;, - 151;3; 1.000000, 1.000000, 1.000000;;, - 152;3; 1.000000, 1.000000, 1.000000;;, - 153;3; 1.000000, 1.000000, 1.000000;;, - 154;3; 1.000000, 1.000000, 1.000000;;, - 155;3; 1.000000, 1.000000, 1.000000;;, - 156;3; 1.000000, 1.000000, 1.000000;;, - 157;3; 1.000000, 1.000000, 1.000000;;, - 158;3; 1.000000, 1.000000, 1.000000;;, - 159;3; 1.000000, 1.000000, 1.000000;;, - 160;3; 1.000000, 1.000000, 1.000000;;, - 161;3; 1.000000, 1.000000, 1.000000;;, - 162;3; 1.000000, 1.000000, 1.000000;;, - 163;3; 1.000000, 1.000000, 1.000000;;, - 164;3; 1.000000, 1.000000, 1.000000;;, - 165;3; 1.000000, 1.000000, 1.000000;;, - 166;3; 1.000000, 1.000000, 1.000000;;, - 167;3; 1.000000, 1.000000, 1.000000;;, - 168;3; 1.000000, 1.000000, 1.000000;;, - 169;3; 1.000000, 1.000000, 1.000000;;, - 170;3; 1.000000, 1.000000, 1.000000;;, - 171;3; 1.000000, 1.000000, 1.000000;;, - 172;3; 1.000000, 1.000000, 1.000000;;, - 173;3; 1.000000, 1.000000, 1.000000;;, - 174;3; 1.000000, 1.000000, 1.000000;;, - 175;3; 1.000000, 1.000000, 1.000000;;, - 176;3; 1.000000, 1.000000, 1.000000;;, - 177;3; 1.000000, 1.000000, 1.000000;;, - 178;3; 1.000000, 1.000000, 1.000000;;, - 179;3; 1.000000, 1.000000, 1.000000;;, - 180;3; 1.000000, 1.000000, 1.000000;;, - 181;3; 1.000000, 1.000000, 1.000000;;, - 182;3; 1.000000, 1.000000, 1.000000;;, - 183;3; 1.000000, 1.000000, 1.000000;;, - 184;3; 1.000000, 1.000000, 1.000000;;, - 185;3; 1.000000, 1.000000, 1.000000;;, - 186;3; 1.000000, 1.000000, 1.000000;;, - 187;3; 1.000000, 1.000000, 1.000000;;, - 188;3; 1.000000, 1.000000, 1.000000;;; - } - AnimationKey { // Position - 2; - 189; - 0;3; 0.000000, 0.000000, 0.000000;;, - 1;3; 0.000000, 0.000000, 0.000000;;, - 2;3; 0.000000, 0.000000, 0.000000;;, - 3;3; 0.000000, 0.000000, 0.000000;;, - 4;3; 0.000000, 0.000000, 0.000000;;, - 5;3; 0.000000, 0.000000, 0.000000;;, - 6;3; 0.000000, 0.000000, 0.000000;;, - 7;3; 0.000000, 0.000000, 0.000000;;, - 8;3; 0.000000, 0.000000, 0.000000;;, - 9;3; 0.000000, 0.000000, 0.000000;;, - 10;3; 0.000000, 0.000000, 0.000000;;, - 11;3; 0.000000, 0.000000, 0.000000;;, - 12;3; 0.000000, 0.000000, 0.000000;;, - 13;3; 0.000000, 0.000000, 0.000000;;, - 14;3; 0.000000, 0.000000, 0.000000;;, - 15;3; 0.000000, 0.000000, 0.000000;;, - 16;3; 0.000000, 0.000000, 0.000000;;, - 17;3; 0.000000, 0.000000, 0.000000;;, - 18;3; 0.000000, 0.000000, 0.000000;;, - 19;3; 0.000000, 0.000000, 0.000000;;, - 20;3; 0.000000, 0.000000, 0.000000;;, - 21;3; 0.000000, 0.000000, 0.000000;;, - 22;3; 0.000000, 0.000000, 0.000000;;, - 23;3; 0.000000, 0.000000, 0.000000;;, - 24;3; 0.000000, 0.000000, 0.000000;;, - 25;3; 0.000000, 0.000000, 0.000000;;, - 26;3; 0.000000, 0.000000, 0.000000;;, - 27;3; 0.000000, 0.000000, 0.000000;;, - 28;3; 0.000000, 0.000000, 0.000000;;, - 29;3; 0.000000, 0.000000, 0.000000;;, - 30;3; 0.000000, 0.000000, 0.000000;;, - 31;3; 0.000000, 0.000000, 0.000000;;, - 32;3; 0.000000, 0.000000, 0.000000;;, - 33;3; 0.000000, 0.000000, 0.000000;;, - 34;3; 0.000000, 0.000000, 0.000000;;, - 35;3; 0.000000, 0.000000, 0.000000;;, - 36;3; 0.000000, 0.000000, 0.000000;;, - 37;3; 0.000000, 0.000000, 0.000000;;, - 38;3; 0.000000, 0.000000, 0.000000;;, - 39;3; 0.000000, 0.000000, 0.000000;;, - 40;3; 0.000000, 0.000000, 0.000000;;, - 41;3; 0.000000, 0.000000, 0.000000;;, - 42;3; 0.000000, 0.000000, 0.000000;;, - 43;3; 0.000000, 0.000000, 0.000000;;, - 44;3; 0.000000, 0.000000, 0.000000;;, - 45;3; 0.000000, 0.000000, 0.000000;;, - 46;3; 0.000000, 0.000000, 0.000000;;, - 47;3; 0.000000, 0.000000, 0.000000;;, - 48;3; 0.000000, 0.000000, 0.000000;;, - 49;3; 0.000000, 0.000000, 0.000000;;, - 50;3; 0.000000, 0.000000, 0.000000;;, - 51;3; 0.000000, 0.000000, 0.000000;;, - 52;3; 0.000000, 0.000000, 0.000000;;, - 53;3; 0.000000, 0.000000, 0.000000;;, - 54;3; 0.000000, 0.000000, 0.000000;;, - 55;3; 0.000000, 0.000000, 0.000000;;, - 56;3; 0.000000, 0.000000, 0.000000;;, - 57;3; 0.000000, 0.000000, 0.000000;;, - 58;3; 0.000000, 0.000000, 0.000000;;, - 59;3; 0.000000, 0.000000, 0.000000;;, - 60;3; 0.000000, 0.000000, 0.000000;;, - 61;3; 0.000000, 0.000000, 0.000000;;, - 62;3; 0.000000, 0.000000, 0.000000;;, - 63;3; 0.000000, 0.000000, 0.000000;;, - 64;3; 0.000000, 0.000000, 0.000000;;, - 65;3; 0.000000, 0.000000, 0.000000;;, - 66;3; 0.000000, 0.000000, 0.000000;;, - 67;3; 0.000000, 0.000000, 0.000000;;, - 68;3; 0.000000, 0.000000, 0.000000;;, - 69;3; 0.000000, 0.000000, 0.000000;;, - 70;3; 0.000000, 0.000000, 0.000000;;, - 71;3; 0.000000, 0.000000, 0.000000;;, - 72;3; 0.000000, 0.000000, 0.000000;;, - 73;3; 0.000000, 0.000000, 0.000000;;, - 74;3; 0.000000, 0.000000, 0.000000;;, - 75;3; 0.000000, 0.000000, 0.000000;;, - 76;3; 0.000000, 0.000000, 0.000000;;, - 77;3; 0.000000, 0.000000, 0.000000;;, - 78;3; 0.000000, 0.000000, 0.000000;;, - 79;3; 0.000000, 0.000000, 0.000000;;, - 80;3; 0.000000, 0.000000, 0.000000;;, - 81;3; 0.000000, 0.000000, 0.000000;;, - 82;3; 0.000000, 0.000000, 0.000000;;, - 83;3; 0.000000, 0.000000, 0.000000;;, - 84;3; 0.000000, 0.000000, 0.000000;;, - 85;3; 0.000000, 0.000000, 0.000000;;, - 86;3; 0.000000, 0.000000, 0.000000;;, - 87;3; 0.000000, 0.000000, 0.000000;;, - 88;3; 0.000000, 0.000000, 0.000000;;, - 89;3; 0.000000, 0.000000, 0.000000;;, - 90;3; 0.000000, 0.000000, 0.000000;;, - 91;3; 0.000000, 0.000000, 0.000000;;, - 92;3; 0.000000, 0.000000, 0.000000;;, - 93;3; 0.000000, 0.000000, 0.000000;;, - 94;3; 0.000000, 0.000000, 0.000000;;, - 95;3; 0.000000, 0.000000, 0.000000;;, - 96;3; 0.000000, 0.000000, 0.000000;;, - 97;3; 0.000000, 0.000000, 0.000000;;, - 98;3; 0.000000, 0.000000, 0.000000;;, - 99;3; 0.000000, 0.000000, 0.000000;;, - 100;3; 0.000000, 0.000000, 0.000000;;, - 101;3; 0.000000, 0.000000, 0.000000;;, - 102;3; 0.000000, 0.000000, 0.000000;;, - 103;3; 0.000000, 0.000000, 0.000000;;, - 104;3; 0.000000, 0.000000, 0.000000;;, - 105;3; 0.000000, 0.000000, 0.000000;;, - 106;3; 0.000000, 0.000000, 0.000000;;, - 107;3; 0.000000, 0.000000, 0.000000;;, - 108;3; 0.000000, 0.000000, 0.000000;;, - 109;3; 0.000000, 0.000000, 0.000000;;, - 110;3; 0.000000, 0.000000, 0.000000;;, - 111;3; 0.000000, 0.000000, 0.000000;;, - 112;3; 0.000000, 0.000000, 0.000000;;, - 113;3; 0.000000, 0.000000, 0.000000;;, - 114;3; 0.000000, 0.000000, 0.000000;;, - 115;3; 0.000000, 0.000000, 0.000000;;, - 116;3; 0.000000, 0.000000, 0.000000;;, - 117;3; 0.000000, 0.000000, 0.000000;;, - 118;3; 0.000000, 0.000000, 0.000000;;, - 119;3; 0.000000, 0.000000, 0.000000;;, - 120;3; 0.000000, 0.000000, 0.000000;;, - 121;3; 0.000000, 0.000000, 0.000000;;, - 122;3; 0.000000, 0.000000, 0.000000;;, - 123;3; 0.000000, 0.000000, 0.000000;;, - 124;3; 0.000000, 0.000000, 0.000000;;, - 125;3; 0.000000, 0.000000, 0.000000;;, - 126;3; 0.000000, 0.000000, 0.000000;;, - 127;3; 0.000000, 0.000000, 0.000000;;, - 128;3; 0.000000, 0.000000, 0.000000;;, - 129;3; 0.000000, 0.000000, 0.000000;;, - 130;3; 0.000000, 0.000000, 0.000000;;, - 131;3; 0.000000, 0.000000, 0.000000;;, - 132;3; 0.000000, 0.000000, 0.000000;;, - 133;3; 0.000000, 0.000000, 0.000000;;, - 134;3; 0.000000, 0.000000, 0.000000;;, - 135;3; 0.000000, 0.000000, 0.000000;;, - 136;3; 0.000000, 0.000000, 0.000000;;, - 137;3; 0.000000, 0.000000, 0.000000;;, - 138;3; 0.000000, 0.000000, 0.000000;;, - 139;3; 0.000000, 0.000000, 0.000000;;, - 140;3; 0.000000, 0.000000, 0.000000;;, - 141;3; 0.000000, 0.000000, 0.000000;;, - 142;3; 0.000000, 0.000000, 0.000000;;, - 143;3; 0.000000, 0.000000, 0.000000;;, - 144;3; 0.000000, 0.000000, 0.000000;;, - 145;3; 0.000000, 0.000000, 0.000000;;, - 146;3; 0.000000, 0.000000, 0.000000;;, - 147;3; 0.000000, 0.000000, 0.000000;;, - 148;3; 0.000000, 0.000000, 0.000000;;, - 149;3; 0.000000, 0.000000, 0.000000;;, - 150;3; 0.000000, 0.000000, 0.000000;;, - 151;3; 0.000000, 0.000000, 0.000000;;, - 152;3; 0.000000, 0.000000, 0.000000;;, - 153;3; 0.000000, 0.000000, 0.000000;;, - 154;3; 0.000000, 0.000000, 0.000000;;, - 155;3; 0.000000, 0.000000, 0.000000;;, - 156;3; 0.000000, 0.000000, 0.000000;;, - 157;3; 0.000000, 0.000000, 0.000000;;, - 158;3; 0.000000, 0.000000, 0.000000;;, - 159;3; 0.000000, 0.000000, 0.000000;;, - 160;3; 0.000000, 0.000000, 0.000000;;, - 161;3; 0.000000, 0.000000, 0.000000;;, - 162;3; 0.000000, 0.000000, 0.000000;;, - 163;3; 0.000000, 0.000000, 0.000000;;, - 164;3; 0.000000, 0.000000, 0.000000;;, - 165;3; 0.000000, 0.000000, 0.000000;;, - 166;3; 0.000000, 0.000000, 0.000000;;, - 167;3; 0.000000, 0.000000, 0.000000;;, - 168;3; 0.000000, 0.000000, 0.000000;;, - 169;3; 0.000000, 0.000000, 0.000000;;, - 170;3; 0.000000, 0.000000, 0.000000;;, - 171;3; 0.000000, 0.000000, 0.000000;;, - 172;3; 0.000000, 0.000000, 0.000000;;, - 173;3; 0.000000, 0.000000, 0.000000;;, - 174;3; 0.000000, 0.000000, 0.000000;;, - 175;3; 0.000000, 0.000000, 0.000000;;, - 176;3; 0.000000, 0.000000, 0.000000;;, - 177;3; 0.000000, 0.000000, 0.000000;;, - 178;3; 0.000000, 0.000000, 0.000000;;, - 179;3; 0.000000, 0.000000, 0.000000;;, - 180;3; 0.000000, 0.000000, 0.000000;;, - 181;3; 0.000000, 0.000000, 0.000000;;, - 182;3; 0.000000, 0.000000, 0.000000;;, - 183;3; 0.000000, 0.000000, 0.000000;;, - 184;3; 0.000000, 0.000000, 0.000000;;, - 185;3; 0.000000, 0.000000, 0.000000;;, - 186;3; 0.000000, 0.000000, 0.000000;;, - 187;3; 0.000000, 0.000000, 0.000000;;, - 188;3; 0.000000, 0.000000, 0.000000;;; - } - } -} // End of AnimationSet Default_Action diff --git a/mods/mobs/models/mobs_cavespider.png b/mods/mobs/models/mobs_cavespider.png deleted file mode 100644 index 5dc5815de..000000000 Binary files a/mods/mobs/models/mobs_cavespider.png and /dev/null differ diff --git a/mods/mobs/models/mobs_pigman.png b/mods/mobs/models/mobs_pigman.png deleted file mode 100644 index 6c6903e3d..000000000 Binary files a/mods/mobs/models/mobs_pigman.png and /dev/null differ diff --git a/mods/mobs/models/mobs_spider.png b/mods/mobs/models/mobs_spider.png deleted file mode 100644 index 2f98963e4..000000000 Binary files a/mods/mobs/models/mobs_spider.png and /dev/null differ diff --git a/mods/mobs/models/mobs_zombie.png b/mods/mobs/models/mobs_zombie.png deleted file mode 100644 index cc4ef6eab..000000000 Binary files a/mods/mobs/models/mobs_zombie.png and /dev/null differ diff --git a/mods/mobs/readme.MD b/mods/mobs/readme.MD new file mode 100644 index 000000000..e48c9a562 --- /dev/null +++ b/mods/mobs/readme.MD @@ -0,0 +1,68 @@ + +MOBS REDO for MINETEST + +Built from PilzAdam's original Simple Mobs with additional mobs by KrupnoPavel, Zeg9, ExeterDad and AspireMint. + + +This mod contains the API only for adding your own mobs into the world, so please use the additional modpacks to add animals, monsters etc. + + +https://forum.minetest.net/viewtopic.php?f=11&t=9917 + + +Crafts: + + - Nametag (paper, black dye, string) can be used right-click on a tamed mob to give them a name. + - Nets can be used to right-click tamed mobs to pick them up and place inside inventory as a spawn egg. + - Magic Lasso is similar to nets but with a better chance of picking up larger mobs. + - Shears are used to right-click sheep and return 1-3 wool. + - Protection Rune lets you protect tamed mobs from harm by other players + +Lucky Blocks: 9 + + +Changelog: + +- 1.32- Added new spawn check to count specific mobs AND new minetest.conf setting to chance spawn chance and numbers, added ability to protect tamed mobs +- 1.31- Added 'attack_animals' and 'specific_attack' flags for custom monster attacks, also 'mob_difficulty' .conf setting to make mobs harder. +- 1.30- Added support for invisibility mod (mobs cant attack what they cant see), tweaked and tidied code +- 1.29- Split original Mobs Redo into a modpack to make it easier to disable mob sets (animal, monster, npc) or simply use the Api itself for your own mod +- 1.28- New damage system added with ability for mob to be immune to weapons or healed by them :) +- 1.27- Added new sheep, lava flan and spawn egg textures. New Lava Pick tool smelts what you dig. New atan checking function. +- 1.26- Pathfinding feature added thanks to rnd, when monsters attack they become scary smart in finding you :) also, beehive produces honey now :) +- 1.25- Mobs no longer spawn within 12 blocks of player or despawn within same range, spawners now have player detection, Code tidy and tweak. +- 1.24- Added feature where certain animals run away when punched (runaway = true in mob definition) +- 1.23- Added mob spawner block for admin to setup spawners in-game (place and right click to enter settings) +- 1.22- Added ability to name tamed animals and npc using nametags, also npc will attack anyone who punches them apart from owner +- 1.21- Added some more error checking to reduce serialize.h error and added height checks for falling off cliffs (thanks cmdskp) +- 1.20- Error checking added to remove bad mobs, out of map limit mobs and stop serialize.h error +- 1.19- Chickens now drop egg items instead of placing the egg, also throwing eggs result in 1/8 chance of spawning chick +- 1.18- Added docile_by_day flag so that monsters will not attack automatically during daylight hours unless hit first +- 1.17- Added 'dogshoot' attack type, shoots when out of reach, melee attack when in reach, also api tweaks and self.reach added +- 1.16- Mobs follow multiple items now, Npc's can breed +- 1.15- Added Feeding/Taming/Breeding function, right-click to pick up any sheep with X mark on them and replace with new one to fix compatibility. +- 1.14- All .self variables saved in staticdata, Fixed self.health bug +- 1.13- Added capture function (thanks blert2112) chance of picking up mob with hand; net; magic lasso, replaced some .x models with newer .b3d one's +- 1.12- Added animal ownership so that players cannot steal your tamed animals +- 1.11- Added flying mobs (and swimming), fly=true and fly_in="air" or "deafult:water_source" for fishy +- 1,10- Footstep removed (use replace), explosion routine added for exploding mobs. +- 1.09- reworked breeding routine, added mob rotation value, added footstep feature, added jumping mobs with sounds feature, added magic lasso for picking up animals +- 1.08- Mob throwing attack has been rehauled so that they can damage one another, also drops and on_die function added +- 1.07- Npc's can now be set to follow player or stand by using self.order and self.owner variables +- beta- Npc mob added, kills monsters, attacks player when punched, right click with food to heal or gold lump for drop +- 1.06- Changed recovery times after breeding, and time taken to grow up (can be sped up by feeding baby animal) +- 1.05- Added ExeterDad's bunny's which can be picked up and tamed with 4 carrots from farming redo or farming_plus, also shears added to get wool from sheep and lastly Jordach/BSD's kitten +- 1.04- Added mating for sheep, cows and hogs... feed animals to make horny and hope for a baby which is half size, will grow up quick though :) +- 1.03- Added mob drop/replace feature so that chickens can drop eggs, cow/sheep can eat grass/wheat etc. +- 1.02- Sheared sheep are remembered and spawn shaven, Warthogs will attack when threatened, Api additions +- 1.01- Mobs that suffer fall damage or die in water/lava/sunlight will now drop items +- 1.0 - more work on Api so that certain mobs can float in water while some sink like a brick :) +- 0.9 - Spawn eggs added for all mobs (admin only, cannot be placed in protected areas)... Api tweaked +- 0.8 - Added sounds to monster mobs (thanks Cyberpangolin for the sfx) and also chicken sound +- 0.7 - mobs.protected switch added to api.lua, when set to 1 mobs no longer spawn in protected areas, also bug fixes +- 0.6 - Api now supports multi-textured mobs, e.g oerkki, dungeon master, rats and chickens have random skins when spawning (sheep fix TODO), also new Honey block +- 0.5 - Mobs now float in water, die from falling, and some code improvements +- 0.4 - Dungeon Masters and Mese Monsters have much better aim due to shoot_offset, also they can both shoot through nodes that aren't walkable (flowers, grass etc) plus new sheep sound :) +- 0.3 - Added LOTT's Spider mob, made Cobwebs, added KPavel's Bee with Honey and Beehives (made texture), Warthogs now have sound and can be tamed, taming of shaved sheep or milked cow with 8 wheat so it will not despawn, many bug fixes :) +- 0.2 - Cooking bucket of milk into cheese now returns empty bucket +- 0.1 - Initial Release diff --git a/mods/mobs/sheep.lua b/mods/mobs/sheep.lua deleted file mode 100644 index f018d159a..000000000 --- a/mods/mobs/sheep.lua +++ /dev/null @@ -1,74 +0,0 @@ - -mobs:register_mob("mobs:sheep", { - type = "animal", - hp_max = 8, - collisionbox = {-0.5, -0.01, -0.5, 0.5, 1, 0.5}, - textures = {"creatures_sheep.png"}, - visual = "mesh", - mesh = "creatures_sheep.x", - makes_footstep_sound = true, - walk_velocity = 1, - run_velocity = 3, - armor = 100, - drops = { - {name = "mobs:meat_raw_sheep", - chance = 1, - min = 1, - max = 2,}, - }, - drawtype = "front", - water_damage = 0, - lava_damage = 8, - animation = { - speed_normal = 17, - speed_run = 25, - stand_start = 0, - stand_end = 80, - walk_start = 81, - walk_end = 100, - }, - follow = "farming:wheat_harvested", - view_range = 6, - on_rightclick = function(self, clicker) - local item = clicker:get_wielded_item() - if item:get_name() == "farming:wheat_harvested" then - if not self.tamed then - if not minetest.setting_getbool("creative_mode") then - item:take_item() - clicker:set_wielded_item(item) - end - self.tamed = true - self.object:set_hp(self.object:get_hp() + 3) - if self.object:get_hp() > 15 then self.object:set_hp(15) end - else - if not minetest.setting_getbool("creative_mode") and self.naked then - item:take_item() - clicker:set_wielded_item(item) - end - self.food = (self.food or 0) + 1 - if self.food >= 8 then - self.food = 0 - self.naked = false - self.object:set_properties({ - textures = {"creatures_sheep.png"}, - }) - end - self.object:set_hp(self.object:get_hp() + 3) - if self.object:get_hp() > 15 then self.object:set_hp(15) return end - if not self.naked then - item:take_item() - clicker:set_wielded_item(item) - end - end - return - end - if item:get_name() == "default:shears" and not self.naked then - self.naked = true - clicker:get_inventory():add_item("main", ItemStack("wool:white "..math.random(1,3))) - minetest.sound_play("default_snow_footstep", {object = self.object, gain = 0.5,}) - self.object:set_properties({ - textures = {"creatures_sheep_shaved.png"}, - }) - end - end, -}) diff --git a/mods/mobs/slime.lua b/mods/mobs/slime.lua deleted file mode 100644 index af120419a..000000000 --- a/mods/mobs/slime.lua +++ /dev/null @@ -1,40 +0,0 @@ -SLIME_SIZE = 1 -SLIME_BOX = math.sqrt(2*math.pow(SLIME_SIZE, 2))/2 -GRAVITY = 9.8 - - -mobs:register_mob("mobs:slime", { - type = "monster", - hp_max = 8, - --collisionbox = {-0.4, -1.0, -0.4, 0.4, 0.8, 0.4}, - collisionbox = {-SLIME_BOX, -SLIME_SIZE/2, -SLIME_BOX, SLIME_BOX, SLIME_SIZE/2, SLIME_BOX}, - visual = "cube", - textures = { - "slime_top.png", - "slime_bottom.png", - "slime_front.png", - "slime_sides.png", - "slime_sides.png", - "slime_sides.png", - }, - --visual_size = {x = 1.1, y = 1.1}, - makes_footstep_sound = true, - view_range = 20, - walk_velocity = 0.2, - randomsound= "slime_random", - run_velocity = 0.2, - on_rightclick = nil, - jump = 1, - damage = 1, - drops = { - {name = "mesecons_materials:glue", - chance = 1, - min = 0, - max = 2,}, - }, - armor = 100, - drawtype = "front", - lava_damage = 15, - light_damage = 0, - attack_type = "dogfight", -}) diff --git a/mods/mobs/sounds/default_punch.ogg b/mods/mobs/sounds/default_punch.ogg new file mode 100644 index 000000000..28a500bf5 Binary files /dev/null and b/mods/mobs/sounds/default_punch.ogg differ diff --git a/mods/mobs/sounds/hit.ogg b/mods/mobs/sounds/hit.ogg deleted file mode 100644 index d9a6a171b..000000000 Binary files a/mods/mobs/sounds/hit.ogg and /dev/null differ diff --git a/mods/mobs/sounds/hit_death.ogg b/mods/mobs/sounds/hit_death.ogg deleted file mode 100644 index a73e00eb7..000000000 Binary files a/mods/mobs/sounds/hit_death.ogg and /dev/null differ diff --git a/mods/mobs/sounds/mobs_bullet.ogg b/mods/mobs/sounds/mobs_bullet.ogg deleted file mode 100644 index 43948c5d9..000000000 Binary files a/mods/mobs/sounds/mobs_bullet.ogg and /dev/null differ diff --git a/mods/mobs/sounds/mobs_fireball.ogg b/mods/mobs/sounds/mobs_fireball.ogg deleted file mode 100644 index 9570ce18f..000000000 Binary files a/mods/mobs/sounds/mobs_fireball.ogg and /dev/null differ diff --git a/mods/mobs/sounds/mobs_fireball_explode.ogg b/mods/mobs/sounds/mobs_fireball_explode.ogg deleted file mode 100644 index 323140e6e..000000000 Binary files a/mods/mobs/sounds/mobs_fireball_explode.ogg and /dev/null differ diff --git a/mods/mobs/sounds/monster_damage.1.ogg b/mods/mobs/sounds/monster_damage.1.ogg deleted file mode 100644 index ce3cbde77..000000000 Binary files a/mods/mobs/sounds/monster_damage.1.ogg and /dev/null differ diff --git a/mods/mobs/sounds/monster_damage.2.ogg b/mods/mobs/sounds/monster_damage.2.ogg deleted file mode 100644 index 122ff24fb..000000000 Binary files a/mods/mobs/sounds/monster_damage.2.ogg and /dev/null differ diff --git a/mods/mobs/sounds/monster_death.ogg b/mods/mobs/sounds/monster_death.ogg deleted file mode 100644 index 7c010fdf7..000000000 Binary files a/mods/mobs/sounds/monster_death.ogg and /dev/null differ diff --git a/mods/mobs/sounds/player_falling_damage.1.ogg b/mods/mobs/sounds/player_falling_damage.1.ogg deleted file mode 100644 index f413806bb..000000000 Binary files a/mods/mobs/sounds/player_falling_damage.1.ogg and /dev/null differ diff --git a/mods/mobs/sounds/player_falling_damage.2.ogg b/mods/mobs/sounds/player_falling_damage.2.ogg deleted file mode 100644 index 8fa451d67..000000000 Binary files a/mods/mobs/sounds/player_falling_damage.2.ogg and /dev/null differ diff --git a/mods/mobs/sounds/player_falling_damage.3.ogg b/mods/mobs/sounds/player_falling_damage.3.ogg deleted file mode 100644 index 8660d8782..000000000 Binary files a/mods/mobs/sounds/player_falling_damage.3.ogg and /dev/null differ diff --git a/mods/mobs/sounds/player_falling_damage.4.ogg b/mods/mobs/sounds/player_falling_damage.4.ogg deleted file mode 100644 index 9d8e1a255..000000000 Binary files a/mods/mobs/sounds/player_falling_damage.4.ogg and /dev/null differ diff --git a/mods/mobs/sounds/zombie_random.ogg b/mods/mobs/sounds/zombie_random.ogg deleted file mode 100644 index 0806ca643..000000000 Binary files a/mods/mobs/sounds/zombie_random.ogg and /dev/null differ diff --git a/mods/mobs/sounds/zombie_sun_damage.ogg b/mods/mobs/sounds/zombie_sun_damage.ogg deleted file mode 100644 index ce3cbde77..000000000 Binary files a/mods/mobs/sounds/zombie_sun_damage.ogg and /dev/null differ diff --git a/mods/mobs/spawner.lua b/mods/mobs/spawner.lua new file mode 100644 index 000000000..cb7cd1600 --- /dev/null +++ b/mods/mobs/spawner.lua @@ -0,0 +1,163 @@ + +local S = mobs.intllib + +-- mob spawner + +local spawner_default = "mobs_animal:pumba 10 15 0 0" + +minetest.register_node("mobs:spawner", { + tiles = {"mob_spawner.png"}, + drawtype = "glasslike", + paramtype = "light", + walkable = true, + description = S("Mob Spawner"), + groups = {cracky = 1}, + + on_construct = function(pos) + + local meta = minetest.get_meta(pos) + + -- text entry formspec + meta:set_string("formspec", + "field[text;" .. S("Mob MinLight MaxLight Amount PlayerDist") .. ";${command}]") + meta:set_string("infotext", S("Spawner Not Active (enter settings)")) + meta:set_string("command", spawner_default) + end, + + on_right_click = function(pos, placer) + + if minetest.is_protected(pos, placer:get_player_name()) then + return + end + end, + + on_receive_fields = function(pos, formname, fields, sender) + + if not fields.text or fields.text == "" then + return + end + + local meta = minetest.get_meta(pos) + local comm = fields.text:split(" ") + local name = sender:get_player_name() + + if minetest.is_protected(pos, name) then + minetest.record_protection_violation(pos, name) + return + end + + local mob = comm[1] -- mob to spawn + local mlig = tonumber(comm[2]) -- min light + local xlig = tonumber(comm[3]) -- max light + local num = tonumber(comm[4]) -- total mobs in area + local pla = tonumber(comm[5]) -- player distance (0 to disable) + local yof = tonumber(comm[6]) or 0 -- Y offset to spawn mob + + if mob and mob ~= "" and mobs.spawning_mobs[mob] == true + and num and num >= 0 and num <= 10 + and mlig and mlig >= 0 and mlig <= 15 + and xlig and xlig >= 0 and xlig <= 15 + and pla and pla >=0 and pla <= 20 + and yof and yof > -10 and yof < 10 then + + meta:set_string("command", fields.text) + meta:set_string("infotext", S("Spawner Active (@1)", mob)) + + else + minetest.chat_send_player(name, S("Mob Spawner settings failed!")) + minetest.chat_send_player(name, + S("> name min_light[0-14] max_light[0-14] max_mobs_in_area[0 to disable] distance[1-20] y_offset[-10 to 10]")) + end + end, +}) + +-- spawner abm +minetest.register_abm({ + nodenames = {"mobs:spawner"}, + interval = 10, + chance = 4, + catch_up = false, + + action = function(pos, node, active_object_count, active_object_count_wider) + + -- get meta and command + local meta = minetest.get_meta(pos) + local comm = meta:get_string("command"):split(" ") + + -- get settings from command + local mob = comm[1] + local mlig = tonumber(comm[2]) + local xlig = tonumber(comm[3]) + local num = tonumber(comm[4]) + local pla = tonumber(comm[5]) or 0 + local yof = tonumber(comm[6]) or 0 + + -- if amount is 0 then do nothing + if num == 0 then + return + end + + -- check objects inside 9x9 area around spawner + local objs = minetest.get_objects_inside_radius(pos, 9) + local count = 0 + local ent = nil + + -- count mob objects of same type in area + for k, obj in pairs(objs) do + + ent = obj:get_luaentity() + + if ent and ent.name == mob then + count = count + 1 + end + end + + -- is there too many of same type? + if count >= num then + return + end + + -- spawn mob if player detected and in range + if pla > 0 then + + local in_range = 0 + local objs = minetest.get_objects_inside_radius(pos, pla) + + for _,oir in pairs(objs) do + + if oir:is_player() then + + in_range = 1 + + break + end + end + + -- player not found + if in_range == 0 then + return + end + end + + -- find air blocks within 5 nodes of spawner + local air = minetest.find_nodes_in_area( + {x = pos.x - 5, y = pos.y + yof, z = pos.z - 5}, + {x = pos.x + 5, y = pos.y + yof, z = pos.z + 5}, + {"air"}) + + -- spawn in random air block + if air and #air > 0 then + + local pos2 = air[math.random(#air)] + local lig = minetest.get_node_light(pos2) or 0 + + pos2.y = pos2.y + 0.5 + + -- only if light levels are within range + if lig >= mlig and lig <= xlig then + minetest.add_entity(pos2, mob) + end + end + + end +}) diff --git a/mods/mobs/spider.lua b/mods/mobs/spider.lua deleted file mode 100644 index 194c6ef29..000000000 --- a/mods/mobs/spider.lua +++ /dev/null @@ -1,49 +0,0 @@ -mobs:register_mob("mobs:spider", { - type = "monster", - hp_max = 16, - --collisionbox = {-0.4, -1.0, -0.4, 0.4, 0.8, 0.4}, - collisionbox = {-0.9, -0.01, -0.7, 0.7, 0.6, 0.7}, - visual_size = {x=7,y=7}, - visual = "mesh", - mesh = "creatures_spider.x", - textures = {"mobs_spider.png"}, - --visual_size = {x = 1.1, y = 1.1}, - makes_footstep_sound = true, - view_range = 20, - walk_velocity = 1, - run_velocity = 4, - hostile_type = 2, - on_rightclick = nil, - jump = false, - damage = 2, - drops = { - {name = "farming:string", - chance = 2, - min = 1, - max = 3,}, - {name = "mobs:spider_eye", - chance = 30, - min = 1, - max = 1,}, - }, - armor = 200, - light_resistant = true, - drawtype = "front", - water_damage = 0, - lava_damage = 15, - light_damage = 0, - step = 1, - attack_type = "dogfight", - animation = { - speed_normal = 15, - speed_run = 15, - stand_start = 1, - stand_end = 1, - walk_start = 20, - walk_end = 40, - run_start = 20, - run_end = 40, - punch_start = 50, - punch_end = 90, - }, -}) diff --git a/mods/mobs/textures/mob_spawner.png b/mods/mobs/textures/mob_spawner.png new file mode 100644 index 000000000..8f0ac39b7 Binary files /dev/null and b/mods/mobs/textures/mob_spawner.png differ diff --git a/mods/mobs/textures/mobs_blood.png b/mods/mobs/textures/mobs_blood.png new file mode 100644 index 000000000..77cfbdaa6 Binary files /dev/null and b/mods/mobs/textures/mobs_blood.png differ diff --git a/mods/mobs/textures/mobs_magic_lasso.png b/mods/mobs/textures/mobs_magic_lasso.png new file mode 100644 index 000000000..befdc1120 Binary files /dev/null and b/mods/mobs/textures/mobs_magic_lasso.png differ diff --git a/mods/mobs/textures/mobs_nametag.png b/mods/mobs/textures/mobs_nametag.png new file mode 100644 index 000000000..74005b3a2 Binary files /dev/null and b/mods/mobs/textures/mobs_nametag.png differ diff --git a/mods/mobs/textures/mobs_net.png b/mods/mobs/textures/mobs_net.png new file mode 100644 index 000000000..df7c3a61f Binary files /dev/null and b/mods/mobs/textures/mobs_net.png differ diff --git a/mods/mobs/textures/slime.png b/mods/mobs/textures/slime.png deleted file mode 100644 index 0d087a097..000000000 Binary files a/mods/mobs/textures/slime.png and /dev/null differ diff --git a/mods/mobs/textures/slime_bottom.png b/mods/mobs/textures/slime_bottom.png deleted file mode 100644 index 5f37ef75b..000000000 Binary files a/mods/mobs/textures/slime_bottom.png and /dev/null differ diff --git a/mods/mobs/textures/slime_front.png b/mods/mobs/textures/slime_front.png deleted file mode 100644 index cb655358e..000000000 Binary files a/mods/mobs/textures/slime_front.png and /dev/null differ diff --git a/mods/mobs/textures/slime_sides.png b/mods/mobs/textures/slime_sides.png deleted file mode 100644 index d09f5d677..000000000 Binary files a/mods/mobs/textures/slime_sides.png and /dev/null differ diff --git a/mods/mobs/textures/slime_top.png b/mods/mobs/textures/slime_top.png deleted file mode 100644 index 886eb87ae..000000000 Binary files a/mods/mobs/textures/slime_top.png and /dev/null differ diff --git a/mods/mobs/textures/spawn_creeper.png b/mods/mobs/textures/spawn_creeper.png deleted file mode 100644 index 79cce8da2..000000000 Binary files a/mods/mobs/textures/spawn_creeper.png and /dev/null differ diff --git a/mods/mobs/textures/spawn_sheep.png b/mods/mobs/textures/spawn_sheep.png deleted file mode 100644 index 22ba83d8e..000000000 Binary files a/mods/mobs/textures/spawn_sheep.png and /dev/null differ diff --git a/mods/mobs/textures/spawn_slime.png b/mods/mobs/textures/spawn_slime.png deleted file mode 100644 index 2bfc1370f..000000000 Binary files a/mods/mobs/textures/spawn_slime.png and /dev/null differ diff --git a/mods/mobs/textures/spawn_spider.png b/mods/mobs/textures/spawn_spider.png deleted file mode 100644 index 35a5355c8..000000000 Binary files a/mods/mobs/textures/spawn_spider.png and /dev/null differ diff --git a/mods/mobs/textures/spawn_zombie.png b/mods/mobs/textures/spawn_zombie.png deleted file mode 100644 index f9bb6ebb7..000000000 Binary files a/mods/mobs/textures/spawn_zombie.png and /dev/null differ diff --git a/mods/mobs/zombie.lua b/mods/mobs/zombie.lua deleted file mode 100644 index 7d445900c..000000000 --- a/mods/mobs/zombie.lua +++ /dev/null @@ -1,58 +0,0 @@ -mobs:register_mob("mobs:zombie", { - type = "monster", - hp_max = 20, - --collisionbox = {-0.4, -1.0, -0.4, 0.4, 0.8, 0.4}, - collisionbox = {-0.4, -1.3, -0.4, 0.4, 1, 0.4}, - visual = "mesh", - mesh = "creatures_zombie.x", - textures = {"mobs_zombie.png"}, - --visual_size = {x = 1.1, y = 1.1}, - makes_footstep_sound = true, - view_range = 15, - walk_velocity = 0.8, - randomsound= "zombie_random", - run_velocity = 1.1, - on_rightclick = nil, - damage = 1, - drops = { - {name = "mobs:rotten_flesh", - chance = 2, - min = 1, - max = 2,}, - {name = "default:sword_steel", - chance = 15, - min = 0, - max = 1,}, - {name = "default:shovel_gold", - chance = 18, - min = 0, - max = 1,}, - {name = "default:steel_ingot", - chance = 24, - min = 1, - max = 5,}, - {name = "farming:carrot_item", - chance = 10, - min = 0, - max = 1,}, - {name = "farming:potato_item", - chance = 25, - min = 0, - max = 1,}, - }, - armor = 100, - drawtype = "front", - lava_damage = 15, - light_damage = 5, - attack_type = "dogfight", - animation = { - speed_normal = 10, - speed_run = 30, - stand_start = 0, - stand_end = 79, - walk_start = 168, - walk_end = 187, - die_start = 162, - die_end = 166, - }, -}) diff --git a/mods/mobs_mc/api-mcorg.lua b/mods/mobs_mc/api-mcorg.lua new file mode 100644 index 000000000..800a154bd --- /dev/null +++ b/mods/mobs_mc/api-mcorg.lua @@ -0,0 +1,872 @@ +mobs = {} + +mobs.default_definition = { + physical = true, + jump = function (self) + local v = self.object:getvelocity() + v.y = 5 + self.object:setvelocity(v) + end, + + + timer = 0, + env_damage_timer = 0, -- only if state = "attack" + bombtimer = -999, + attack = {player=nil, dist=nil}, + state = "stand", + v_start = false, + old_y = nil, + lifetimer = 600, + tamed = false, + + boom = function(self, tnt_range) + local pos = self.object:getpos() + self.object:remove() + tnt:boom(pos) + end, + + set_velocity = function(self, v) + local get_flowing_dir = function(self) + local pos = self.object:getpos() + local param2 = minetest.get_node(pos).param2 + local p4 = { + {x=1,y=0,z=0}, + {x=-1,y=0,z=0}, + {x=0,y=0,z=1}, + {x=0,y=0,z=-1}, + } + local out = {x=0,y=0,z=0} + local num = 0 + for i=1,4 do + local p2 = vector.add(pos, p4[i]) + local name = minetest.get_node(p2).name + local par2 = minetest.get_node(p2).param2 + -- param2 == 13 means water is falling down a block + if (name == "default:water_flowing" and par2 < param2 and param2 < 13) or (name == "default:water_flowing" and par2 == 13) or name == "air" then + out = vector.add(out, p4[i]) + num = num + 1 + end + end + if num then + return out + else + return false + end + end + local yaw = self.object:getyaw() + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + local x = math.sin(yaw) * -v + local z = math.cos(yaw) * v + local v1 = {x=x, y=self.object:getvelocity().y, z=z} + local pos = self.object:getpos() + local name = minetest.get_node(pos).name + if name == "default:water_flowing" then + local v = get_flowing_dir(self) + if v then + v1 = vector.add(v1, vector.multiply(v, 1.3)) + end + end + self.object:setvelocity(v1) + end, + + get_velocity = function(self) + local v = self.object:getvelocity() + return (v.x^2 + v.z^2)^(0.5) + end, + + set_animation = function(self, type) + if not self.animation then + return + end + if not self.animation.current then + self.animation.current = "" + end + if type == "stand" and self.animation.current ~= "stand" then + if + self.animation.stand_start + and self.animation.stand_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.stand_start,y=self.animation.stand_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "stand" + end + elseif type == "look" and self.animation.current ~= "look" then + if + self.animation.look_start + and self.animation.look_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.look_start,y=self.animation.look_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "look" + end + elseif type == "eat" and self.animation.current ~= "eat" then + if + self.animation.eat_start + and self.animation.eat_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.eat_start,y=self.animation.eat_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "eat" + if self.name == "mobs:sheep" and self.naked then + local pos = self.object:getpos() + pos.y = pos.y - 1 + if minetest.get_node(pos).name == "default:dirt_with_grass" then + minetest.set_node(pos, {name = "default:dirt"}) + self.naked = false + if not self.color then + self.object:set_properties({ + textures = {"sheep.png"}, + }) + else + self.object:set_properties({ + textures = {"sheep_"..self.color..".png"}, + }) + end + end + end + end + elseif type == "shoot" and self.animation.current ~= "shoot" then + if + self.animation.shoot_start + and self.animation.shoot_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.shoot_start,y=self.animation.shoot_end}, + self.animation.speed_normal, 0 + ) + self.animation.shootdur = (self.animation.shoot_end - self.animation.shoot_start)/self.animation.speed_normal - .5 + self.animation.current = "shoot" + end + elseif type == "fly" and self.animation.current ~= "fly" then + if + self.animation.fly_start + and self.animation.fly_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.fly_start,y=self.animation.fly_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "fly" + end + elseif type == "walk" and self.animation.current ~= "walk" then + if + self.animation.walk_start + and self.animation.walk_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.walk_start,y=self.animation.walk_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "walk" + end + elseif type == "run" and self.animation.current ~= "run" then + if + self.animation.run_start + and self.animation.run_end + and self.animation.speed_run + then + self.object:set_animation( + {x=self.animation.run_start,y=self.animation.run_end}, + self.animation.speed_run, 0 + ) + self.animation.current = "run" + end + elseif type == "punch" and self.animation.current ~= "punch" then + if + self.animation.punch_start + and self.animation.punch_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.punch_start,y=self.animation.punch_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "punch" + end + elseif type == "hurt" and self.animation.current ~= "hurt" then + self.animation.hurtdur = .5 + if + self.animation.hurt_start + and self.animation.hurt_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.hurt_start,y=self.animation.hurt_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "hurt" + self.animation.hurtdur = (self.animation.hurt_end - self.animation.hurt_start)/self.animation.speed_normal - 1 + end + elseif type == "death" and self.animation.current ~= "death" then + self.animation.deathdur = 1 + if + self.animation.death_start + and self.animation.death_end + and self.animation.speed_normal + then + self.object:set_animation( + {x=self.animation.death_start,y=self.animation.death_end}, + self.animation.speed_normal, 0 + ) + self.animation.current = "death" + self.animation.deathdur = (self.animation.death_end - self.animation.death_start)/self.animation.speed_normal - .5 + end + end + end, + + on_step = function(self, dtime) + if self.type == "monster" and minetest.setting_getbool("only_peaceful_mobs") then + self.object:remove() + end + + self.lifetimer = self.lifetimer - dtime + if self.lifetimer <= 0 and not self.tamed then + local player_count = 0 + for _,obj in ipairs(minetest.get_objects_inside_radius(self.object:getpos(), 30)) do + if obj:is_player() then + player_count = player_count+1 + end + end + if player_count == 0 and self.state ~= "attack" then + self.object:remove() + return + end + end + if self.object:getvelocity().y > 0.1 then + local yaw = self.object:getyaw() + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + local x = math.sin(yaw) * -2 + local z = math.cos(yaw) * 2 + self.object:setacceleration({x=x, y=-10, z=z}) + else + self.object:setacceleration({x=0, y=-10, z=0}) + end + + if self.disable_fall_damage and self.object:getvelocity().y == 0 then + if not self.old_y then + self.old_y = self.object:getpos().y + else + local d = self.old_y - self.object:getpos().y + if d > 5 then + local damage = d-5 + self.object:set_hp(self.object:get_hp()-damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + self.old_y = self.object:getpos().y + end + end + + self.timer = self.timer+dtime + self.bombtimer = self.bombtimer+dtime + if self.state ~= "attack" then + if self.timer < 1 then + return + end + self.timer = 0 + end + + if self.sounds and self.sounds.random and math.random(1, 100) <= 1 then + minetest.sound_play(self.sounds.random, {object = self.object}) + end + + local do_env_damage = function(self) + local pos = self.object:getpos() + local n = minetest.get_node(pos) + + if self.light_damage and self.light_damage ~= 0 + and pos.y>0 + and minetest.get_node_light(pos) + and minetest.get_node_light(pos) > 4 + and minetest.get_timeofday() > 0.2 + and minetest.get_timeofday() < 0.8 + then + self.object:set_hp(self.object:get_hp()-self.light_damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + + if self.water_damage and self.water_damage ~= 0 and + minetest.get_item_group(n.name, "water") ~= 0 + then + self.object:set_hp(self.object:get_hp()-self.water_damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + + if self.lava_damage and self.lava_damage ~= 0 and + minetest.get_item_group(n.name, "lava") ~= 0 + then + self.object:set_hp(self.object:get_hp()-self.lava_damage) + if self.object:get_hp() == 0 then + self.object:remove() + end + end + end + + -- ridable pigs + if self.name == "mobs:pig" and self.saddle == "yes" and self.driver then + local item = self.driver:get_wielded_item() + if item:get_name() == "mobs:carrotstick" then + local yaw = self.driver:get_look_yaw() - math.pi / 2 + local velo = self.object:getvelocity() + local v = 1.5 + if math.abs(velo.x) + math.abs(velo.z) < .6 then velo.y = 5 end + self.state = "walk" + self:set_animation("walk") + self.object:setyaw(yaw) + self.object:setvelocity({x = -math.sin(yaw) * v, y = velo.y, z = math.cos(yaw) * v}) + + local inv = self.driver:get_inventory() + local stack = inv:get_stack("main", self.driver:get_wield_index()) + stack:add_wear(100) + if stack:get_wear() > 65400 then + stack = {name = "fishing:pole", count = 1} + end + inv:set_stack("main", self.driver:get_wield_index(), stack) + return + end + end + + self.env_damage_timer = self.env_damage_timer + dtime + if self.state == "attack" and self.env_damage_timer > 1 then + self.env_damage_timer = 0 + do_env_damage(self) + elseif self.state ~= "attack" then + do_env_damage(self) + end + + if self.type == "monster" and minetest.setting_getbool("enable_damage") then + for _,player in pairs(minetest.get_connected_players()) do + local s = self.object:getpos() + local p = player:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist < 2 and self.attack_type == "bomb" and self.bombmode ~= "armed" then + if self.sounds and self.sounds.approach then + minetest.sound_play(self.sounds.approach, {object = self.object}) + end + self.bombmode = "armed" + self.bombtimer = 0 + end + if dist < self.view_range then + if self.attack.dist then + if dist < self.attack.dist then + self.attack.player = player + self.attack.dist = dist + end + else + self.state = "attack" + self.attack.player = player + self.attack.dist = dist + end + end + end + end + + if self.follow and self.follow ~= "" and not self.following then + for _,player in pairs(minetest.get_connected_players()) do + local s = self.object:getpos() + local p = player:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if self.view_range and dist < self.view_range then + self.following = player + end + end + end + + if self.following and self.following:is_player() then + if self.following:get_wielded_item():get_name() ~= self.follow then + self.following = nil + self.v_start = false + else + local s = self.object:getpos() + local p = self.following:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist > self.view_range then + self.following = nil + self.v_start = false + else + local vec = {x=p.x-s.x, y=p.y-s.y, z=p.z-s.z} + local yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if p.x > s.x then + yaw = yaw+math.pi + end + self.object:setyaw(yaw) + if dist > 2 then + if not self.v_start then + self.v_start = true + self.set_velocity(self, self.walk_velocity) + else + if self.jump and self.get_velocity(self) <= 0.5 and self.object:getvelocity().y == 0 then + self:jump() + end + self.set_velocity(self, self.walk_velocity) + end + self:set_animation("walk") + else + self.v_start = false + self.set_velocity(self, 0) + self:set_animation("stand") + end + return + end + end + end + + if self.state == "stand" then + if math.random(1, 4) == 1 then + self.object:setyaw(self.object:getyaw()+((math.random(0,360)-180)/180*math.pi)) + end + self.set_velocity(self, 0) + self.set_animation(self, "stand") + local standanim = math.random(1,4) + if standanim == 2 then + self.set_animation(self, "look") + elseif standanim == 3 then + self.set_animation(self, "eat") + elseif standanim == 4 then + self.set_animation(self, "fly") + end + if math.random(1, 100) <= 50 then + self.set_velocity(self, self.walk_velocity) + self.state = "walk" + self.set_animation(self, "walk") + end + elseif self.state == "walk" then + if math.random(1, 100) <= 30 then + self.object:setyaw(self.object:getyaw()+((math.random(0,360)-180)/180*math.pi)) + end + if self.jump and self.get_velocity(self) <= 0.5 and self.object:getvelocity().y == 0 then + self:jump() + end + self:set_animation("walk") + self.set_velocity(self, self.walk_velocity) + if math.random(1, 100) <= 10 then + self.set_velocity(self, 0) + self.state = "stand" + self:set_animation("stand") + end + elseif self.state == "attack" and (self.attack_type == "dogfight" or self.attack_type == "bomb") then + if not self.attack.player or not self.attack.player:is_player() then + self.state = "stand" + self:set_animation("stand") + self.attack = {player=nil, dist=nil} + return + end + local s = self.object:getpos() + local p = self.attack.player:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist > self.view_range or self.attack.player:get_hp() <= 0 then + self.state = "stand" + self.v_start = false + self.set_velocity(self, 0) + self.attack = {player=nil, dist=nil} + self:set_animation("stand") + return + else + self.attack.dist = dist + end + if self.attack_type == "bomb" and self.bombmode == "armed" and self.bombtimer > 2 then + -- print("***BOOM",self.bombtimer) + self.bombmode = "exploded" + self.boom(self, math.random(2, 4)) + end + local vec = {x=p.x-s.x, y=p.y-s.y, z=p.z-s.z} + local yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if p.x > s.x then + yaw = yaw+math.pi + end + -- creepers use a spiraling approach: + if self.attack_type == "bomb" then + yaw = yaw - 14*math.pi/180 + end + self.object:setyaw(yaw) + if self.attack.dist > 2 then + if not self.v_start then + self.v_start = true + self.set_velocity(self, self.run_velocity) + else + if self.jump and self.get_velocity(self) <= 0.5 and self.object:getvelocity().y == 0 then + self:jump() + end + self.set_velocity(self, self.run_velocity) + end + self:set_animation("run") + else + self.set_velocity(self, 0) + self:set_animation("punch") + self.v_start = false + if self.timer > 1 then + self.timer = 0 + if self.sounds and self.sounds.attack then + minetest.sound_play(self.sounds.attack, {object = self.object}) + end + self.attack.player:punch(self.object, 1.0, { + full_punch_interval=1.0, + damage_groups = {fleshy=self.damage} + }, vec) + end + end + elseif self.state == "attack" and self.attack_type == "shoot" then + if not self.attack.player or not self.attack.player:is_player() then + self.state = "stand" + self:set_animation("stand") + self.attack = {player=nil, dist=nil} + return + end + local s = self.object:getpos() + local p = self.attack.player:getpos() + local dist = ((p.x-s.x)^2 + (p.y-s.y)^2 + (p.z-s.z)^2)^0.5 + if dist > self.view_range or self.attack.player:get_hp() <= 0 then + self.state = "stand" + self.v_start = false + self.set_velocity(self, 0) + self.attack = {player=nil, dist=nil} + self:set_animation("stand") + return + else + self.attack.dist = dist + self.shoot_interval = (dist + self.view_range) / self.view_range + end + + local vec = {x=p.x-s.x, y=p.y-s.y, z=p.z-s.z} + local yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if p.x > s.x then + yaw = yaw+math.pi + end + self.object:setyaw(yaw) + if self.attack.dist < 4 then + self.set_velocity(self, -self.run_velocity) + elseif self.attack.dist > 8 then + self.set_velocity(self, self.run_velocity) + else + self.set_velocity(self, 0) + end + if self.timer > self.shoot_interval and math.random(1, 100) <= 60 then + self.timer = 0 + + self:set_animation("shoot") + minetest.after(self.animation.shootdur, function() + self:set_animation("walk") + end) + if self.sounds and self.sounds.attack then + minetest.sound_play(self.sounds.attack, {object = self.object}) + end + + local p = self.object:getpos() + p.y = p.y + (self.collisionbox[2]+self.collisionbox[5])/2 + local obj = minetest.add_entity(p, self.arrow) + local amount = (vec.x^2+vec.y^2+vec.z^2)^0.5 + local v = 15 + vec.y = vec.y+1 + vec.x = vec.x*v/amount + vec.y = vec.y*v/amount + vec.z = vec.z*v/amount + obj:setvelocity(vec) + end + end + end, + + on_activate = function(self, staticdata, dtime_s) + self.object:set_armor_groups({fleshy=self.armor}) + self.object:setacceleration({x=0, y=-10, z=0}) + self.state = "stand" + self.attack = {player = nil, dist = nil} + self.object:setvelocity({x=0, y=self.object:getvelocity().y, z=0}) + self.object:setyaw(math.random(1, 360)/180*math.pi) + if self.type == "monster" and minetest.setting_getbool("only_peaceful_mobs") then + self.object:remove() + end + self.lifetimer = 600 - dtime_s + if staticdata then + local tmp = minetest.deserialize(staticdata) + if tmp and tmp.lifetimer then + self.lifetimer = tmp.lifetimer - dtime_s + end + if tmp and tmp.tamed then + self.tamed = tmp.tamed + end + if tmp and tmp.color then + self.color = tmp.color + end + if tmp and tmp.naked then + self.naked = tmp.naked + end + if tmp and tmp.saddle then + self.saddle = tmp.saddle + end + end + if self.name == "mobs:sheep" and self.color and not self.naked then + self.object:set_properties({ + textures = {"sheep_"..self.color..".png"}, + }) + self.drops = { + {name = "mobs:mutton_raw", + chance = 1, + min = 1, + max = 2,}, + {name = "wool:"..self.color, + chance = 1, + min = 1, + max = 1,}, + } + end + if self.name == "mobs:sheep" and not self.color then + local col = "white" + local cols = {"dark_grey", "grey", "black", "brown", "pink"} + if math.random(100) > 80 then + col = cols[math.random(1,5)] + end + self.color = col + self.object:set_properties({ + textures = {"sheep_"..self.color..".png"}, + }) + self.drops = { + {name = "mobs:mutton_raw", + chance = 1, + min = 1, + max = 2,}, + {name = "wool:"..self.color, + chance = 1, + min = 1, + max = 1,}, + } + end + if self.name == "mobs:sheep" and self.naked then + self.object:set_properties({ + textures = {"sheep_sheared.png"}, + }) + end + if self.name == "mobs:pig" and self.saddle == "yes" then + self.object:set_properties({ + textures = {"pig_with_saddle.png"}, + }) + end + + if self.lifetimer <= 0 and not self.tamed then + self.object:remove() + end + end, + + get_staticdata = function(self) + local tmp = { + lifetimer = self.lifetimer, + tamed = self.tamed, + color = self.color, + naked = self.naked, + saddle = self.saddle, + } + return minetest.serialize(tmp) + end, + + on_punch = function(self, hitter) + -- death happens at 20 hp so we can play the death animation: + if self.object:get_hp() <= 20 then + local pos = self.object:getpos() +minetest.add_particlespawner({ + amount = 20, + time = .2, + minpos = {x=pos.x-1, y=pos.y-.5, z=pos.z-1}, + maxpos = {x=pos.x+1, y=pos.y+.5, z=pos.z+1}, + minvel = {x=0, y=.3, z=0}, + maxvel = {x=0, y=2, z=0}, + minacc = {x=-.2, y=-.2, z=-.2}, + maxacc = {x=.2, y=.2, z=.2}, + minexptime = 1, + maxexptime = 5, + minsize = 1, + maxsize = 1, + collisiondetection = false, + vertical = false, + texture = "bettertnt_smoke.png", +}) + self:set_animation("death") + self.object:set_hp(1000) + if self.name == "mobs:pig" and self.driver then + local name = self.driver:get_player_name() + self.driver:set_detach() + default.player_attached[name] = false + default.player_set_animation(self.driver, "stand" , 30) + self.driver = nil + end + minetest.after(self.animation.deathdur, function() + self.object:remove() + end) + if self.sounds and self.sounds.death then + minetest.sound_play(self.sounds.death, {object = self.object}) + end + pos.y = pos.y + 0.5 + local obj = nil + local ndrops = 0 + for _,drop in ipairs(self.drops) do + if math.random(1, drop.chance) == 1 and ndrops < (self.maxdrops or 100) then + obj = minetest.add_item(pos, ItemStack(drop.name.." "..math.random(drop.min, drop.max))) + ndrops = ndrops + 1 + if obj then + obj:setvelocity({x=math.random(-1,1), y=5, z=math.random(-1,1)}) + end + end + end + else + if self.sounds and self.sounds.hurt then + minetest.sound_play(self.sounds.hurt, {object = self.object}) + end + self:set_animation("hurt") + minetest.after(self.animation.hurtdur, function() + self:set_animation("walk") + end) + end + end, + + __index = function(table,key) + return mobs.default_definition[key] + end,} + +function mobs:register_mob(name, def) + setmetatable (def,mobs.default_definition) + minetest.register_entity(name, def) +end + +function mobs:check_player_dist(pos, node) + for _,player in pairs(minetest.get_connected_players()) do + local p = player:getpos() + local dist = ((p.x-pos.x)^2 + (p.y-pos.y)^2 + (p.z-pos.z)^2)^0.5 + if dist < 24 then + return 1 + end + end + return nil +end + +mobs.spawning_mobs = {} +function mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, spawn_func) + if minetest.setting_getbool(string.gsub(name,":","_").."_spawn") ~= false then + mobs.spawning_mobs[name] = true + minetest.register_abm({ + nodenames = nodes, + neighbors = {"air"}, + interval = 10, + chance = chance, + action = function(pos, node, _, active_object_count_wider) + if node.name == "default:ice" or node.name == "default:glass" then + return + end + if active_object_count_wider > active_object_count then + return + end + if not mobs.spawning_mobs[name] then + return + end + pos.y = pos.y+1 + if not minetest.get_node_light(pos) then + return + end + if minetest.get_node_light(pos) > max_light then + return + end + if minetest.get_node_light(pos) < min_light then + return + end + if pos.y > max_height then + return + end + if minetest.get_node(pos).name ~= "air" then + return + end + pos.y = pos.y+1 + if minetest.get_node(pos).name ~= "air" then + return + end + if spawn_func and not spawn_func(pos, node) then + return + end + if mobs:check_player_dist(pos, node) then + return + end + if minetest.setting_getbool("display_mob_spawn") then + minetest.chat_send_all("[mobs] Add "..name.." at "..minetest.pos_to_string(pos)) + end + minetest.add_entity(pos, name) + end + }) + end +end + +function mobs:register_arrow(name, def) + minetest.register_entity(name, { + physical = false, + visual = def.visual, + visual_size = def.visual_size, + textures = def.textures, + velocity = def.velocity, + hit_player = def.hit_player, + hit_node = def.hit_node, + + on_step = function(self, dtime) + local pos = self.object:getpos() + if minetest.get_node(self.object:getpos()).name ~= "air" then + minetest.sound_play("bowhit1", {pos = pos}) + self.hit_node(self, pos, node) + self.object:remove() + return + end + pos.y = pos.y-1 + for _,player in pairs(minetest.get_objects_inside_radius(pos, 1)) do + if player:is_player() then + self.hit_player(self, player) + minetest.sound_play("damage", {pos = pos}) + self.object:remove() + return + end + end + end + }) +end + +function mobs:register_egg(mob, desc, img) +minetest.register_craftitem(mob, { + description = "Spawn "..desc, + inventory_image = img, + on_place = function(itemstack, placer, pointed_thing) + local pos = pointed_thing.above + if pointed_thing.above and not minetest.is_protected(pos, placer:get_player_name()) then + pos.y = pos.y + 0.5 + minetest.add_entity(pos, mob) + if not minetest.setting_getbool("creative_mode") then + itemstack:take_item() + end + end + return itemstack + end, +}) +end + + diff --git a/mods/mobs_mc/api-mm-mcmods.lua b/mods/mobs_mc/api-mm-mcmods.lua new file mode 100644 index 000000000..b24b4045e --- /dev/null +++ b/mods/mobs_mc/api-mm-mcmods.lua @@ -0,0 +1,3010 @@ + +--esmobs v1.3 +--maikerumine +--made for Extreme Survival game +--License for code WTFPL + +-- Mobs Api (12th May 2016) +--REVISED 20160516 maikerumine for esmobs + +mobs = {} +mobs.mod = "redo" + +-- Load settings +local damage_enabled = minetest.setting_getbool("enable_damage") +local peaceful_only = minetest.setting_getbool("only_peaceful_mobs") +local disable_blood = minetest.setting_getbool("mobs_disable_blood") +local creative = minetest.setting_getbool("creative_mode") +local spawn_protected = tonumber(minetest.setting_get("mobs_spawn_protected")) or 1 +local remove_far = minetest.setting_getbool("remove_far_mobs") + +-- pathfinding settings +local enable_pathfinding = false +local enable_pathfind_digging = false +local stuck_timeout = 3 -- how long before mob gets stuck in place and starts searching +local stuck_path_timeout = 10 -- how long will mob follow path before giving up + +--bones settings maikerumine bones code +local enable_mob_bones = true +local enable_mob_allbones = false + + + +-- internal functions + +local pi = math.pi +local square = math.sqrt +local atan = function(x) + + if x ~= x then + --error("atan bassed NaN") + print ("atan based NaN") + return 0 + else + return math.atan(x) + end +end + +do_attack = function(self, player) + + if self.state ~= "attack" then + + if math.random(0,100) < 90 + and self.sounds.war_cry then + + minetest.sound_play(self.sounds.war_cry,{ + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + self.state = "attack" + self.attack = player + end +end + +set_velocity = function(self, v) + + v = v or 0 + + local yaw = (self.object:getyaw() + self.rotate) or 0 + + self.object:setvelocity({ + x = math.sin(yaw) * -v, + y = self.object:getvelocity().y, + z = math.cos(yaw) * v + }) +end + +get_velocity = function(self) + + local v = self.object:getvelocity() + + return (v.x * v.x + v.z * v.z) ^ 0.5 +end + +set_animation = function(self, type) + + if not self.animation then + return + end + + self.animation.current = self.animation.current or "" + + self.animation.speed_normal = self.animation.speed_normal or 15 + + if type == "stand" + and self.animation.current ~= "stand" then + + if self.animation.stand_start + and self.animation.stand_end then + + self.object:set_animation({ + x = self.animation.stand_start, + y = self.animation.stand_end}, + (self.animation.speed_stand or self.animation.speed_normal), 0) + + self.animation.current = "stand" + end + + elseif type == "walk" + and self.animation.current ~= "walk" then + + if self.animation.walk_start + and self.animation.walk_end then + + self.object:set_animation({ + x = self.animation.walk_start, + y = self.animation.walk_end}, + (self.animation.speed_walk or self.animation.speed_normal), 0) + + self.animation.current = "walk" + end + + elseif type == "run" + and self.animation.current ~= "run" then + + if self.animation.run_start + and self.animation.run_end then + + self.object:set_animation({ + x = self.animation.run_start, + y = self.animation.run_end}, + (self.animation.speed_run or self.animation.speed_normal), 0) + + self.animation.current = "run" + end + + elseif type == "punch" + and self.animation.current ~= "punch" then + + if self.animation.punch_start + and self.animation.punch_end then + + self.object:set_animation({ + x = self.animation.punch_start, + y = self.animation.punch_end}, + (self.animation.speed_punch or self.animation.speed_normal), 0) + + self.animation.current = "punch" + end + elseif type == "punch2" + and self.animation.current ~= "punch2" then + + if self.animation.punch2_start + and self.animation.punch2_end then + + self.object:set_animation({ + x = self.animation.punch2_start, + y = self.animation.punch2_end}, + (self.animation.speed_punch2 or self.animation.speed_normal), 0) + + self.animation.current = "punch2" + end + elseif type == "shoot" + and self.animation.current ~= "shoot" then + + if self.animation.shoot_start + and self.animation.shoot_end then + + self.object:set_animation({ + x = self.animation.shoot_start, + y = self.animation.shoot_end}, + (self.animation.speed_shoot or self.animation.speed_normal), 0) + + self.animation.current = "shoot" + end + end +end + +-- check line of sight for walkers and swimmers alike +function line_of_sight_water(self, pos1, pos2, stepsize) + + local s, pos_w = minetest.line_of_sight(pos1, pos2, stepsize) + + -- normal walking and flying mobs can see you through air + if s == true then + return true + end + + -- swimming mobs can see you through water + if s == false + and self.fly + and self.fly_in == "default:water_source" then + + local nod = minetest.get_node(pos_w).name + + if nod == "default:water_source" + or nod == "default:water_flowing" then + + return true + end + end + + return false + +end + +-- particle effects +function effect(pos, amount, texture, max_size, radius) + + radius = radius or 2 + + minetest.add_particlespawner({ + amount = amount, + time = 0.25, + minpos = pos, + maxpos = pos, + minvel = {x = -radius, y = -radius, z = -radius}, + maxvel = {x = radius, y = radius, z = radius}, + minacc = {x = -radius, y = -radius, z = -radius}, + maxacc = {x = radius, y = radius, z = radius}, + minexptime = 0.1, + maxexptime = 1, + minsize = 0.5, + maxsize = (max_size or 1), + texture = texture, + }) +end + +-- update nametag colour +function update_tag(self) + + local col = "#00FF00" + local qua = self.hp_max / 4 + + if self.health <= math.floor(qua * 3) then + col = "#FFFF00" + end + + if self.health <= math.floor(qua * 2) then + col = "#FF6600" + end + + if self.health <= math.floor(qua) then + col = "#FF0000" + end + + self.object:set_properties({ + nametag = self.nametag, + nametag_color = col + }) + +end + +-- check if mob is dead or only hurt +function check_for_death(self) + + -- has health actually changed? + if self.health == self.old_health then + return + end + + self.old_health = self.health + + -- still got some health? play hurt sound + if self.health > 0 then + + if self.sounds.damage then + + minetest.sound_play(self.sounds.damage,{ + object = self.object, + gain = 1.0, + max_hear_distance = self.sounds.distance + }) + end + + -- make sure health isn't higher than max + if self.health > self.hp_max then + self.health = self.hp_max + end + + update_tag(self) + + return false + end + + -- drop items when dead + local obj + local pos = self.object:getpos() + + for _,drop in pairs(self.drops) do + + if math.random(1, drop.chance) == 1 then + + obj = minetest.add_item(pos, + ItemStack(drop.name .. " " + .. math.random(drop.min, drop.max))) + + if obj then + + obj:setvelocity({ + x = math.random(-1, 1), + y = 9, + z = math.random(-1, 1) + }) + end + end + end + + -- play death sound + if self.sounds.death then + + minetest.sound_play(self.sounds.death,{ + object = self.object, + gain = 1.0, + max_hear_distance = self.sounds.distance + }) + end + + -- execute custom death function + if self.on_die then + self.on_die(self, pos) + end + + self.object:remove() + + return true +end + +-- check if within map limits (-30911 to 30927) +function within_limits(pos, radius) + + if (pos.x - radius) > -30913 + and (pos.x + radius) < 30928 + and (pos.y - radius) > -30913 + and (pos.y + radius) < 30928 + and (pos.z - radius) > -30913 + and (pos.z + radius) < 30928 then + return true -- within limits + end + + return false -- beyond limits +end + +-- is mob facing a cliff +local function is_at_cliff(self) + + if self.fear_height == 0 then -- if 0, no falling protection! + return false + end + + local yaw = self.object:getyaw() + local dir_x = -math.sin(yaw) * (self.collisionbox[4] + 0.5) + local dir_z = math.cos(yaw) * (self.collisionbox[4] + 0.5) + local pos = self.object:getpos() + local ypos = pos.y + self.collisionbox[2] -- just above floor + + if minetest.line_of_sight( + {x = pos.x + dir_x, y = ypos, z = pos.z + dir_z}, + {x = pos.x + dir_x, y = ypos - self.fear_height, z = pos.z + dir_z} + , 1) then + + return true + end + + return false +end + +-- get node but use fallback for nil or unknown +local function node_ok(pos, fallback) + + fallback = fallback or "default:dirt" + + local node = minetest.get_node_or_nil(pos) + + if not node then + return minetest.registered_nodes[fallback] + end + + if minetest.registered_nodes[node.name] then + return node + end + + return minetest.registered_nodes[fallback] +end + +-- environmental damage (water, lava, fire, light) +do_env_damage = function(self) + + -- feed/tame text timer (so mob 'full' messages dont spam chat) + if self.htimer > 0 then + self.htimer = self.htimer - 1 + end + + local pos = self.object:getpos() + + self.time_of_day = minetest.get_timeofday() + + -- remove mob if beyond map limits + if not within_limits(pos, 0) then + self.object:remove() + return + end + + -- daylight above ground + if self.light_damage ~= 0 + and pos.y > 0 + and self.time_of_day > 0.2 + and self.time_of_day < 0.8 + and (minetest.get_node_light(pos) or 0) > 12 then + + self.health = self.health - self.light_damage + + effect(pos, 5, "tnt_smoke.png") + end + + -- what is mob standing in? + pos.y = pos.y + self.collisionbox[2] + 0.1 -- foot level + self.standing_in = node_ok(pos, "air").name + --print ("standing in " .. self.standing_in) + + if self.water_damage ~= 0 + or self.lava_damage ~= 0 then + + local nodef = minetest.registered_nodes[self.standing_in] + + pos.y = pos.y + 1 + + -- water + if self.water_damage ~= 0 + and nodef.groups.water then + + self.health = self.health - self.water_damage + + effect(pos, 5, "bubble.png") + end + + -- lava or fire + if self.lava_damage ~= 0 + and (nodef.groups.lava + or self.standing_in == "fire:basic_flame" + or self.standing_in == "fire:permanent_flame") then + + self.health = self.health - self.lava_damage + + effect(pos, 5, "fire_basic_flame.png") + end + end + + check_for_death(self) +end + +-- jump if facing a solid node (not fences or gates) +do_jump = function(self) + + if self.fly + or self.child then + return + end + + local pos = self.object:getpos() + + -- what is mob standing on? + pos.y = pos.y + self.collisionbox[2] - 0.2 + + local nod = node_ok(pos) + +--print ("standing on:", nod.name, pos.y) + + if minetest.registered_nodes[nod.name].walkable == false then + return + end + + -- where is front + local yaw = self.object:getyaw() + local dir_x = -math.sin(yaw) * (self.collisionbox[4] + 0.5) + local dir_z = math.cos(yaw) * (self.collisionbox[4] + 0.5) + + -- what is in front of mob? + local nod = node_ok({ + x = pos.x + dir_x, + y = pos.y + 0.5, + z = pos.z + dir_z + }) + + -- thin blocks that do not need to be jumped + if nod.name == "default:snow" then + return + end + +--print ("in front:", nod.name, pos.y + 0.5) + + if (minetest.registered_items[nod.name].walkable + and not nod.name:find("fence") + and not nod.name:find("gate")) + or self.walk_chance == 0 then + + local v = self.object:getvelocity() + + v.y = self.jump_height + 1 + v.x = v.x * 2.2 + v.z = v.z * 2.2 + + self.object:setvelocity(v) + + if self.sounds.jump then + + minetest.sound_play(self.sounds.jump, { + object = self.object, + gain = 1.0, + max_hear_distance = self.sounds.distance + }) + end + else + if self.state ~= "attack" then + self.state = "stand" + set_animation(self, "stand") + end + end +end + +-- this is a faster way to calculate distance +local get_distance = function(a, b) + + local x, y, z = a.x - b.x, a.y - b.y, a.z - b.z + + return square(x * x + y * y + z * z) +end + +-- blast damage to entities nearby (modified from TNT mod) +function entity_physics(pos, radius) + + radius = radius * 2 + + local objs = minetest.get_objects_inside_radius(pos, radius) + local obj_pos, dist + + for _, obj in pairs(objs) do + + obj_pos = obj:getpos() + + dist = math.max(1, get_distance(pos, obj_pos)) + + local damage = math.floor((4 / dist) * radius) + local ent = obj:get_luaentity() + + if obj:is_player() then + obj:set_hp(obj:get_hp() - damage) + + else --if ent.health then + + obj:punch(obj, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = damage}, + }, nil) + + end + end +end + +-- should mob follow what I'm holding ? +function follow_holding(self, clicker) + + local item = clicker:get_wielded_item() + local t = type(self.follow) + + -- single item + if t == "string" + and item:get_name() == self.follow then + return true + + -- multiple items + elseif t == "table" then + + for no = 1, #self.follow do + + if self.follow[no] == item:get_name() then + return true + end + end + end + + return false +end + +-- find two animals of same type and breed if nearby and horny +local function breed(self) + + -- child take 240 seconds before growing into adult + if self.child == true then + + self.hornytimer = self.hornytimer + 1 + + if self.hornytimer > 240 then + + self.child = false + self.hornytimer = 0 + + self.object:set_properties({ + textures = self.base_texture, + mesh = self.base_mesh, + visual_size = self.base_size, + collisionbox = self.base_colbox, + }) + + -- jump when fully grown so not to fall into ground + self.object:setvelocity({ + x = 0, + y = self.jump_height, + z = 0 + }) + end + + return + end + + -- horny animal can mate for 40 seconds, + -- afterwards horny animal cannot mate again for 200 seconds + if self.horny == true + and self.hornytimer < 240 then + + self.hornytimer = self.hornytimer + 1 + + if self.hornytimer >= 240 then + self.hornytimer = 0 + self.horny = false + end + end + + -- find another same animal who is also horny and mate if close enough + if self.horny == true + and self.hornytimer <= 40 then + + local pos = self.object:getpos() + + effect({x = pos.x, y = pos.y + 1, z = pos.z}, 4, "heart.png") + + local ents = minetest.get_objects_inside_radius(pos, 3) + local num = 0 + local ent = nil + + for i, obj in pairs(ents) do + + ent = obj:get_luaentity() + + -- check for same animal with different colour + local canmate = false + + if ent then + + if ent.name == self.name then + canmate = true + else + local entname = string.split(ent.name,":") + local selfname = string.split(self.name,":") + + if entname[1] == selfname[1] then + entname = string.split(entname[2],"_") + selfname = string.split(selfname[2],"_") + + if entname[1] == selfname[1] then + canmate = true + end + end + end + end + + if ent + and canmate == true + and ent.horny == true + and ent.hornytimer <= 40 then + num = num + 1 + end + + -- found your mate? then have a baby + if num > 1 then + + self.hornytimer = 41 + ent.hornytimer = 41 + + -- spawn baby + minetest.after(5, function(dtime) + + local mob = minetest.add_entity(pos, self.name) + local ent2 = mob:get_luaentity() + local textures = self.base_texture + + if self.child_texture then + textures = self.child_texture[1] + end + + mob:set_properties({ + textures = textures, + visual_size = { + x = self.base_size.x / 2, + y = self.base_size.y / 2 + }, + collisionbox = { + self.base_colbox[1] / 2, + self.base_colbox[2] / 2, + self.base_colbox[3] / 2, + self.base_colbox[4] / 2, + self.base_colbox[5] / 2, + self.base_colbox[6] / 2 + }, + }) + ent2.child = true + ent2.tamed = true + ent2.owner = self.owner + end) + + num = 0 + + break + end + end + end +end + +-- find and replace what mob is looking for (grass, wheat etc.) +function replace(self, pos) + + if self.replace_rate + and self.child == false + and math.random(1, self.replace_rate) == 1 then + + local pos = self.object:getpos() + + pos.y = pos.y + self.replace_offset + +-- print ("replace node = ".. minetest.get_node(pos).name, pos.y) + + if self.replace_what + and self.replace_with + and self.object:getvelocity().y == 0 + and #minetest.find_nodes_in_area(pos, pos, self.replace_what) > 0 then + + minetest.set_node(pos, {name = self.replace_with}) + + -- when cow/sheep eats grass, replace wool and milk + if self.gotten == true then + self.gotten = false + self.object:set_properties(self) + end + end + end +end + +-- check if daytime and also if mob is docile during daylight hours +function day_docile(self) + + if self.docile_by_day == false then + + return false + + elseif self.docile_by_day == true + and self.time_of_day > 0.2 + and self.time_of_day < 0.8 then + + return true + end +end + +-- path finding and smart mob routine by rnd +function smart_mobs(self, s, p, dist, dtime) + + local s1 = self.path.lastpos + + -- is it becoming stuck? + if math.abs(s1.x - s.x) + math.abs(s1.z - s.z) < 1.5 then + self.path.stuck_timer = self.path.stuck_timer + dtime + else + self.path.stuck_timer = 0 + end + + self.path.lastpos = {x = s.x, y = s.y, z = s.z} + + -- im stuck, search for path + if (self.path.stuck_timer > stuck_timeout and not self.path.following) + or (self.path.stuck_timer > stuck_path_timeout + and self.path.following) then + + self.path.stuck_timer = 0 + + -- lets try find a path, first take care of positions + -- since pathfinder is very sensitive + local sheight = self.collisionbox[5] - self.collisionbox[2] + + -- round position to center of node to avoid stuck in walls + -- also adjust height for player models! + s.x = math.floor(s.x + 0.5) + s.y = math.floor(s.y + 0.5) - sheight + s.z = math.floor(s.z + 0.5) + + local ssight, sground + ssight, sground = minetest.line_of_sight(s, { + x = s.x, y = s.y - 4, z = s.z}, 1) + + -- determine node above ground + if not ssight then + s.y = sground.y + 1 + end + + local p1 = self.attack:getpos() + + p1.x = math.floor(p1.x + 0.5) + p1.y = math.floor(p1.y + 0.5) + p1.z = math.floor(p1.z + 0.5) + + self.path.way = minetest.find_path(s, p1, 16, 2, 6, "Dijkstra") --"A*_noprefetch") + + -- attempt to unstick mob that is "daydreaming" + self.object:setpos({ + x = s.x + 0.1 * (math.random() * 2 - 1), + y = s.y + 1, + z = s.z + 0.1 * (math.random() * 2 - 1) + }) + + self.state = "" + do_attack(self, self.attack) + + -- no path found, try something else + if not self.path.way then + + self.path.following = false +-- self.path.stuck = true + + -- lets make way by digging/building if not accessible + if enable_pathfind_digging then + + -- add block and remove one block above so + -- there is room to jump if needed + if s.y < p1.y then + + if not minetest.is_protected(s, "") then + minetest.set_node(s, {name = "default:dirt"}) + end + + local sheight = math.ceil(self.collisionbox[5]) + 1 + + -- assume mob is 2 blocks high so it digs above its head + s.y = s.y + sheight + + if not minetest.is_protected(s, "") then + + local node1 = minetest.get_node(s).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.set_node(s, {name = "air"}) + minetest.add_item(s, ItemStack(node1)) + end + end + + s.y = s.y - sheight + self.object:setpos({x = s.x, y = s.y + 2, z = s.z}) + + else -- dig 2 blocks to make door toward player direction + + local yaw1 = self.object:getyaw() + pi / 2 + + local p1 = { + x = s.x + math.cos(yaw1), + y = s.y, + z = s.z + math.sin(yaw1) + } + + if not minetest.is_protected(p1, "") then + + local node1 = minetest.get_node(p1).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.add_item(p1, ItemStack(node1)) + minetest.set_node(p1, {name = "air"}) + end + + p1.y = p1.y + 1 + node1 = minetest.get_node(p1).name + + if node1 ~= "air" + and node1 ~= "ignore" then + minetest.add_item(p1, ItemStack(node1)) + minetest.set_node(p1, {name = "air"}) + end + + end + end + end + + -- will try again in 2 second + self.path.stuck_timer = stuck_timeout - 2 + + -- frustration! cant find the damn path :( + if self.sounds.random then + minetest.sound_play(self.sounds.random, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + else + + -- yay i found path + if self.sounds.attack then + + set_velocity(self, self.walk_velocity) + + minetest.sound_play(self.sounds.attack, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + -- follow path now that it has it + self.path.following = true + end + end +end + +-- monster find someone to attack +local monster_attack = function(self) + + if self.type ~= "monster" + or not damage_enabled + or self.state == "attack" + or day_docile(self) then + return + end + + local s = self.object:getpos() + local p, sp, dist + local player, type, obj, min_player = nil, nil, nil, nil + local min_dist = self.view_range + 1 + + for _,oir in pairs(minetest.get_objects_inside_radius(s, self.view_range)) do + + if oir:is_player() then + + player = oir + type = "player" + else + obj = oir:get_luaentity() + + if obj then + player = obj.object + type = obj.type + end + end + + if type == "player" + or type == "npc" then + + s = self.object:getpos() + p = player:getpos() + sp = s + + -- aim higher to make looking up hills more realistic + p.y = p.y + 1 + sp.y = sp.y + 1 + + dist = get_distance(p, s) + + if dist < self.view_range then + -- field of view check goes here + + -- choose closest player to attack + --if minetest.line_of_sight(sp, p, 2) == true + if line_of_sight_water(self, sp, p, 2) == true + and dist < min_dist then + min_dist = dist + min_player = player + end + end + end + end + + -- attack player + if min_player then + do_attack(self, min_player) + end +end + +-- npc, find closest monster to attack +local npc_attack = function(self) + + if self.type ~= "npc" + or not self.attacks_monsters + or self.state == "attack" then + return + end + + local s = self.object:getpos() + local min_dist = self.view_range + 1 + local obj, min_player = nil, nil + + for _, oir in pairs(minetest.get_objects_inside_radius(s, self.view_range)) do + + obj = oir:get_luaentity() + + if obj + and obj.type == "monster" then + + p = obj.object:getpos() + + dist = get_distance(p, s) + + if dist < min_dist then + min_dist = dist + min_player = obj.object + end + end + end + + if min_player then + do_attack(self, min_player) + end +end + +-- follow player if owner or holding item, if fish outta water then flop +local follow_flop = function(self) + + -- find player to follow + if (self.follow ~= "" + or self.order == "follow") + and not self.following + and self.state ~= "attack" + and self.state ~= "runaway" then + + local s, p, dist + + for _,player in pairs(minetest.get_connected_players()) do + + s = self.object:getpos() + p = player:getpos() + dist = get_distance(p, s) + + if dist < self.view_range then + self.following = player + break + end + end + end + + if self.type == "npc" + and self.order == "follow" + and self.state ~= "attack" + and self.owner ~= "" then + + -- npc stop following player if not owner + if self.following + and self.owner + and self.owner ~= self.following:get_player_name() then + self.following = nil + end + else + -- stop following player if not holding specific item + if self.following + and self.following:is_player() + and follow_holding(self, self.following) == false then + self.following = nil + end + + end + + -- follow that thing + if self.following then + + local s = self.object:getpos() + local p + + if self.following:is_player() then + + p = self.following:getpos() + + elseif self.following.object then + + p = self.following.object:getpos() + end + + if p then + + local dist = get_distance(p, s) + + -- dont follow if out of range + if dist > self.view_range then + self.following = nil + else + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + if vec.x ~= 0 + and vec.z ~= 0 then + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + end + + -- anyone but standing npc's can move along + if dist > self.reach + and self.order ~= "stand" then + + if (self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0) + or (self.object:getvelocity().y == 0 + and self.jump_chance > 0) then + + do_jump(self) + end + + set_velocity(self, self.walk_velocity) + + if self.walk_chance ~= 0 then + set_animation(self, "walk") + end + else + set_velocity(self, 0) + set_animation(self, "stand") + end + + return + end + end + end + + -- water swimmers flop when on land + if self.fly + and self.fly_in == "default:water_source" + and self.standing_in ~= self.fly_in then + + self.state = "flop" + self.object:setvelocity({x = 0, y = -5, z = 0}) + + set_animation(self, "stand") + + return + end +end + +-- dogshoot attack switch and counter function +local dogswitch = function(self, dtime) + + -- switch mode not activated + if not self.dogshoot_switch + or not dtime then + return 0 + end + + self.dogshoot_count = self.dogshoot_count + dtime + + if self.dogshoot_count > self.dogshoot_count_max then + + self.dogshoot_count = 0 + + if self.dogshoot_switch == 1 then + self.dogshoot_switch = 2 + else + self.dogshoot_switch = 1 + end + end + + return self.dogshoot_switch +end + +-- execute current state (stand, walk, run, attacks) +local do_states = function(self, dtime) + + local yaw = 0 + + if self.state == "stand" then + + if math.random(1, 4) == 1 then + + local lp = nil + local s = self.object:getpos() + + if self.type == "npc" then + + local o = minetest.get_objects_inside_radius(self.object:getpos(), 3) + + for _,o in pairs(o) do + + if o:is_player() then + lp = o:getpos() + break + end + end + end + + -- look at any players nearby, otherwise turn randomly + if lp then + + local vec = { + x = lp.x - s.x, + y = lp.y - s.y, + z = lp.z - s.z + } + + if vec.x ~= 0 + and vec.z ~= 0 then + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if lp.x > s.x then + yaw = yaw + pi + end + end + else + yaw = (math.random(0, 360) - 180) / 180 * pi + end + + self.object:setyaw(yaw) + end + + set_velocity(self, 0) + set_animation(self, "stand") + + -- npc's ordered to stand stay standing + if self.type ~= "npc" + or self.order ~= "stand" then + + if self.walk_chance ~= 0 + and math.random(1, 100) <= self.walk_chance + and is_at_cliff(self) == false then + + set_velocity(self, self.walk_velocity) + self.state = "walk" + set_animation(self, "walk") + end + end + + elseif self.state == "walk" then + + local s = self.object:getpos() + local lp = minetest.find_node_near(s, 1, {"group:water"}) + + -- if water nearby then turn away + if lp then + + local vec = { + x = lp.x - s.x, + y = lp.y - s.y, + z = lp.z - s.z + } + + if vec.x ~= 0 + and vec.z ~= 0 then + + yaw = atan(vec.z / vec.x) + 3 * pi / 2 - self.rotate + + if lp.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + end + + -- otherwise randomly turn + elseif math.random(1, 100) <= 30 then + + local yaw = (math.random(0, 360) - 180) / 180 * pi + + self.object:setyaw(yaw) + end + + -- stand for great fall in front + local temp_is_cliff = is_at_cliff(self) + + -- jump when walking comes to a halt + if temp_is_cliff == false + and self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0 then + + do_jump(self) + end + + if temp_is_cliff + or math.random(1, 100) <= 30 then + + set_velocity(self, 0) + self.state = "stand" + set_animation(self, "stand") + else + set_velocity(self, self.walk_velocity) + set_animation(self, "walk") + end + + -- runaway when punched + elseif self.state == "runaway" then + + self.runaway_timer = self.runaway_timer + 1 + + -- stop after 3 seconds or when at cliff + if self.runaway_timer > 3 + or is_at_cliff(self) then + self.runaway_timer = 0 + set_velocity(self, 0) + self.state = "stand" + set_animation(self, "stand") + else + set_velocity(self, self.run_velocity) + set_animation(self, "walk") + end + + -- jump when walking comes to a halt + if self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0 then + + do_jump(self) + end + + -- attack routines (explode, dogfight, shoot, dogshoot) + elseif self.state == "attack" then + + -- calculate distance from mob and enemy + local s = self.object:getpos() + local p = self.attack:getpos() or s + local dist = get_distance(p, s) + + -- stop attacking if player or out of range + if dist > self.view_range + or not self.attack + or not self.attack:getpos() + or self.attack:get_hp() <= 0 then + + --print(" ** stop attacking **", dist, self.view_range) + self.state = "stand" + set_velocity(self, 0) + set_animation(self, "stand") + self.attack = nil + self.v_start = false + self.timer = 0 + self.blinktimer = 0 + + return + end + + if self.attack_type == "explode" then + + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + if vec.x ~= 0 + and vec.z ~= 0 then + + yaw = atan(vec.z / vec.x) + pi / 2 - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + end + + if dist > self.reach then + + if not self.v_start then + + self.v_start = true + set_velocity(self, self.run_velocity) + self.timer = 0 + self.blinktimer = 0 + else + self.timer = 0 + self.blinktimer = 0 + + if get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0 then + + local v = self.object:getvelocity() + v.y = 5 + self.object:setvelocity(v) + end + + set_velocity(self, self.run_velocity) + end + + set_animation(self, "run") + else + set_velocity(self, 0) + set_animation(self, "punch") + + self.timer = self.timer + dtime + self.blinktimer = (self.blinktimer or 0) + dtime + + if self.blinktimer > 0.2 then + + self.blinktimer = 0 + + if self.blinkstatus then + self.object:settexturemod("") + else + self.object:settexturemod("^[brighten") + end + + self.blinkstatus = not self.blinkstatus + end + + if self.timer > 3 then + + local pos = self.object:getpos() + local radius = self.explosion_radius or 1 + + -- hurt player/mobs caught in blast area + entity_physics(pos, radius) + + -- dont damage anything if area protected or next to water + if minetest.find_node_near(pos, 1, {"group:water"}) + or minetest.is_protected(pos, "") then + + if self.sounds.explode then + + minetest.sound_play(self.sounds.explode, { + object = self.object, + gain = 1.0, + max_hear_distance = 16 + }) + end + + self.object:remove() + + effect(pos, 15, "tnt_smoke.png", 5) + + return + end + + pos.y = pos.y - 1 + + mobs:explosion(pos, radius, 0, 1, self.sounds.explode) + + self.object:remove() + + return + end + end + + elseif self.attack_type == "dogfight" + or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 2) + or (self.attack_type == "dogshoot" and dist <= self.reach and dogswitch(self) == 0) then + + if self.fly + and dist > self.reach then + + local nod = node_ok(s) + local p1 = s + local me_y = math.floor(p1.y) + local p2 = p + local p_y = math.floor(p2.y + 1) + local v = self.object:getvelocity() + + if nod.name == self.fly_in then + + if me_y < p_y then + + self.object:setvelocity({ + x = v.x, + y = 1 * self.walk_velocity, + z = v.z + }) + + elseif me_y > p_y then + + self.object:setvelocity({ + x = v.x, + y = -1 * self.walk_velocity, + z = v.z + }) + end + else + if me_y < p_y then + + self.object:setvelocity({ + x = v.x, + y = 0.01, + z = v.z + }) + + elseif me_y > p_y then + + self.object:setvelocity({ + x = v.x, + y = -0.01, + z = v.z + }) + end + end + + end + + -- rnd: new movement direction + if self.path.following + and self.path.way + and self.attack_type ~= "dogshoot" then + + -- no paths longer than 50 + if #self.path.way > 50 + or dist < self.reach then + self.path.following = false + return + end + + local p1 = self.path.way[1] + + if not p1 then + self.path.following = false + return + end + + if math.abs(p1.x-s.x) + math.abs(p1.z - s.z) < 0.6 then + -- reached waypoint, remove it from queue + table.remove(self.path.way, 1) + end + + -- set new temporary target + p = {x = p1.x, y = p1.y, z = p1.z} + end + + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + if vec.x ~= 0 + and vec.z ~= 0 then + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + end + + -- move towards enemy if beyond mob reach + if dist > self.reach then + + -- path finding by rnd + if self.pathfinding -- only if mob has pathfinding enabled + and enable_pathfinding then + + smart_mobs(self, s, p, dist, dtime) + end + + -- jump attack + if (self.jump + and get_velocity(self) <= 0.5 + and self.object:getvelocity().y == 0) + or (self.object:getvelocity().y == 0 + and self.jump_chance > 0) then + + do_jump(self) + end + + if is_at_cliff(self) then + + set_velocity(self, 0) + set_animation(self, "stand") + else + + if self.path.stuck then + set_velocity(self, self.walk_velocity) + else + set_velocity(self, self.run_velocity) + end + + set_animation(self, "run") + end + + else -- rnd: if inside reach range + + self.path.stuck = false + self.path.stuck_timer = 0 + self.path.following = false -- not stuck anymore + + set_velocity(self, 0) + + if not self.custom_attack then + + if self.timer > 1 then + + self.timer = 0 + + if self.double_melee_attack + and math.random(1, 2) == 1 then + set_animation(self, "punch2") + else + set_animation(self, "punch") + end + + local p2 = p + local s2 = s + + p2.y = p2.y + 1.5 + s2.y = s2.y + 1.5 + + --if minetest.line_of_sight(p2, s2) == true then + if line_of_sight_water(self, p2, s2) == true then + + -- play attack sound + if self.sounds.attack then + + minetest.sound_play(self.sounds.attack, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + -- punch player + self.attack:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = self.damage} + }, nil) + end + end + else -- call custom attack every second + if self.custom_attack + and self.timer > 1 then + + self.timer = 0 + + self.custom_attack(self, p) + end + end + end + + elseif self.attack_type == "shoot" + or (self.attack_type == "dogshoot" and dogswitch(self, dtime) == 1) + or (self.attack_type == "dogshoot" and dist > self.reach and dogswitch(self) == 0) then + + p.y = p.y - .5 + s.y = s.y + .5 + + local dist = get_distance(p, s) + local vec = { + x = p.x - s.x, + y = p.y - s.y, + z = p.z - s.z + } + + if vec.x ~= 0 + and vec.z ~= 0 then + + yaw = (atan(vec.z / vec.x) + pi / 2) - self.rotate + + if p.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + end + + set_velocity(self, 0) + + if self.shoot_interval + and self.timer > self.shoot_interval + and math.random(1, 100) <= 60 then + + self.timer = 0 + set_animation(self, "shoot") + + -- play shoot attack sound + if self.sounds.shoot_attack then + + minetest.sound_play(self.sounds.shoot_attack, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + local p = self.object:getpos() + + p.y = p.y + (self.collisionbox[2] + self.collisionbox[5]) / 2 + + local obj = minetest.add_entity(p, self.arrow) + local ent = obj:get_luaentity() + local amount = (vec.x * vec.x + vec.y * vec.y + vec.z * vec.z) ^ 0.5 + local v = ent.velocity or 1 -- or set to default --seems to be buggy mc + ent.switch = 1 + + -- offset makes shoot aim accurate + vec.y = vec.y + self.shoot_offset + vec.x = vec.x * (v / amount) + vec.y = vec.y * (v / amount) + vec.z = vec.z * (v / amount) + + obj:setvelocity(vec) + end + end + end +end + +-- falling and fall damage +local falling = function(self, pos) + + if self.fly then + return + end + + -- floating in water (or falling) + local v = self.object:getvelocity() + + -- going up then apply gravity + if v.y > 0.1 then + + self.object:setacceleration({ + x = 0, + y = self.fall_speed, + z = 0 + }) + end + + -- in water then float up + if minetest.registered_nodes[node_ok(pos).name].groups.liquid then + + if self.floats == 1 then + + self.object:setacceleration({ + x = 0, + y = -self.fall_speed / (math.max(1, v.y) ^ 2), + z = 0 + }) + end + else + -- fall downwards + self.object:setacceleration({ + x = 0, + y = self.fall_speed, + z = 0 + }) + + -- fall damage + if self.fall_damage == 1 + and self.object:getvelocity().y == 0 then + + local d = self.old_y - self.object:getpos().y + + if d > 5 then + + self.health = self.health - math.floor(d - 5) + + effect(pos, 5, "tnt_smoke.png") + + if check_for_death(self) then + return + end + end + + self.old_y = self.object:getpos().y + end + end +end + +local mob_punch = function(self, hitter, tflp, tool_capabilities, dir) + + -- direction error check + dir = dir or {x = 0, y = 0, z = 0} + + -- weapon wear + local weapon = hitter:get_wielded_item() + local punch_interval = 1.4 + + -- calculate mob damage + local damage = 0 + local armor = self.object:get_armor_groups() or {} + local tmp + + -- quick error check incase it ends up 0 (serialize.h check test) + if tflp == 0 then + tflp = 0.2 + end + + for group,_ in pairs( (tool_capabilities.damage_groups or {}) ) do + + tmp = tflp / (tool_capabilities.full_punch_interval or 1.4) + + if tmp < 0 then + tmp = 0.0 + elseif tmp > 1 then + tmp = 1.0 + end + + damage = damage + (tool_capabilities.damage_groups[group] or 0) + * tmp * ((armor[group] or 0) / 100.0) + end + + -- check for tool immunity or special damage + for _, no in pairs(self.immune_to) do + + if no[1] == weapon:get_name() then + + damage = no[2] or 0 + + break + end + end + + -- print ("Mob Damage is", damage) + + -- add weapon wear + if tool_capabilities then + punch_interval = tool_capabilities.full_punch_interval or 1.4 + end + + if weapon:get_definition() + and weapon:get_definition().tool_capabilities then + + weapon:add_wear(math.floor((punch_interval / 75) * 9000)) + hitter:set_wielded_item(weapon) + end + + -- weapon sounds + if weapon:get_definition().sounds ~= nil then + + local s = math.random(0, #weapon:get_definition().sounds) + + minetest.sound_play(weapon:get_definition().sounds[s], { + object = hitter, + max_hear_distance = 8 + }) + else + minetest.sound_play("default_punch", { + object = hitter, + max_hear_distance = 5 + }) + end + + -- do damage + self.health = self.health - math.floor(damage) + + -- exit here if dead + if check_for_death(self) then + return + end + + -- add healthy afterglow when hit + core.after(0.1, function() + self.object:settexturemod("^[colorize:#c9900070") + + core.after(0.3, function() + self.object:settexturemod("") + end) + end) + + -- blood_particles + if self.blood_amount > 0 + and not disable_blood then + + local pos = self.object:getpos() + + pos.y = pos.y + (-self.collisionbox[2] + self.collisionbox[5]) / 2 + + effect(pos, self.blood_amount, self.blood_texture) + end + + -- knock back effect (only on full punch) + if self.knock_back > 0 + and tflp > punch_interval then + + local v = self.object:getvelocity() + local r = 1.4 - math.min(punch_interval, 1.4) + local kb = r * 5 + local up = 2 + + -- if already in air then dont go up anymore when hit + if v.y > 0 + or self.fly then + up = 0 + end + + self.object:setvelocity({ + x = dir.x * kb, + y = up, + z = dir.z * kb + }) + + self.pause_timer = r + end + + -- if skittish then run away + if self.runaway == true then + + local lp = hitter:getpos() + local s = self.object:getpos() + + local vec = { + x = lp.x - s.x, + y = lp.y - s.y, + z = lp.z - s.z + } + + if vec.x ~= 0 + and vec.z ~= 0 then + + local yaw = atan(vec.z / vec.x) + 3 * pi / 2 - self.rotate + + if lp.x > s.x then + yaw = yaw + pi + end + + self.object:setyaw(yaw) + end + + self.state = "runaway" + self.runaway_timer = 0 + self.following = nil + end + + -- attack puncher and call other mobs for help + if self.passive == false + and self.state ~= "flop" + and self.child == false + and hitter:get_player_name() ~= self.owner then + + -- attack whoever punched mob + self.state = "" + do_attack(self, hitter) + + -- alert others to the attack + local obj = nil + + for _, oir in pairs(minetest.get_objects_inside_radius(hitter:getpos(), 5)) do + + obj = oir:get_luaentity() + + if obj then + + if obj.group_attack == true + and obj.state ~= "attack" then + do_attack(obj, hitter) + end + end + end + end +end + +local mob_activate = function(self, staticdata, dtime_s, def) + + -- remove monsters in peaceful mode, or when no data + if (self.type == "monster" and peaceful_only) + or not staticdata then + + self.object:remove() + + return + end + + -- load entity variables + local tmp = minetest.deserialize(staticdata) + + if tmp then + + for _,stat in pairs(tmp) do + self[_] = stat + end + end + + -- select random texture, set model and size + if not self.base_texture then + + self.base_texture = def.textures[math.random(1, #def.textures)] + self.base_mesh = def.mesh + self.base_size = self.visual_size + self.base_colbox = self.collisionbox + end + + -- set texture, model and size + local textures = self.base_texture + local mesh = self.base_mesh + local vis_size = self.base_size + local colbox = self.base_colbox + + -- specific texture if gotten + if self.gotten == true + and def.gotten_texture then + textures = def.gotten_texture + end + + -- specific mesh if gotten + if self.gotten == true + and def.gotten_mesh then + mesh = def.gotten_mesh + end + + -- set child objects to half size + if self.child == true then + + vis_size = { + x = self.base_size.x / 2, + y = self.base_size.y / 2 + } + + if def.child_texture then + textures = def.child_texture[1] + end + + colbox = { + self.base_colbox[1] / 2, + self.base_colbox[2] / 2, + self.base_colbox[3] / 2, + self.base_colbox[4] / 2, + self.base_colbox[5] / 2, + self.base_colbox[6] / 2 + } + end + + if self.health == 0 then + self.health = math.random (self.hp_min, self.hp_max) + end + + -- rnd: pathfinding init + self.path = {} + self.path.way = {} -- path to follow, table of positions + self.path.lastpos = {x = 0, y = 0, z = 0} + self.path.stuck = false + self.path.following = false -- currently following path? + self.path.stuck_timer = 0 -- if stuck for too long search for path + -- end init + + self.object:set_armor_groups({immortal = 1, fleshy = self.armor}) + self.old_y = self.object:getpos().y + self.old_health = self.health + self.object:setyaw((math.random(0, 360) - 180) / 180 * pi) + self.sounds.distance = self.sounds.distance or 10 + self.textures = textures + self.mesh = mesh + self.collisionbox = colbox + self.visual_size = vis_size + self.standing_in = "" + + -- set anything changed above + self.object:set_properties(self) + update_tag(self) +end + +local mob_step = function(self, dtime) + + local pos = self.object:getpos() + local yaw = self.object:getyaw() or 0 + + -- when lifetimer expires remove mob (except npc and tamed) + if self.type ~= "npc" + and not self.tamed + and self.state ~= "attack" + and remove_far ~= true then + + self.lifetimer = self.lifetimer - dtime + + if self.lifetimer <= 0 then + + -- only despawn away from player + local objs = minetest.get_objects_inside_radius(pos, 15) + + for _,oir in pairs(objs) do + + if oir:is_player() then + + self.lifetimer = 20 + + return + end + end + + minetest.log("action", + "lifetimer expired, removed " .. self.name) + + effect(pos, 15, "tnt_smoke.png") + + self.object:remove() + + return + end + end + + falling(self, pos) + + -- knockback timer + if self.pause_timer > 0 then + + self.pause_timer = self.pause_timer - dtime + + if self.pause_timer < 1 then + self.pause_timer = 0 + end + + return + end + + -- run custom function (defined in mob lua file) + if self.do_custom then + self.do_custom(self, dtime) + end + + -- attack timer + self.timer = self.timer + dtime + + if self.state ~= "attack" then + + if self.timer < 1 then + return + end + + self.timer = 0 + end + + -- never go over 100 + if self.timer > 100 then + self.timer = 1 + end + + -- node replace check (cow eats grass etc.) + replace(self, pos) + + -- mob plays random sound at times + if self.sounds.random + and math.random(1, 100) == 1 then + + minetest.sound_play(self.sounds.random, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + + -- environmental damage timer (every 1 second) + self.env_damage_timer = self.env_damage_timer + dtime + + if (self.state == "attack" and self.env_damage_timer > 1) + or self.state ~= "attack" then + + self.env_damage_timer = 0 + + do_env_damage(self) + end + + monster_attack(self) + + npc_attack(self) + + breed(self) + + follow_flop(self) + + do_states(self, dtime) + +--BREAK + -- ridable pigs + if self.name == "mobs:pig" and self.saddle == "yes" and self.driver then + local item = self.driver:get_wielded_item() + if item:get_name() == "mobs:carrotstick" then + local yaw = self.driver:get_look_yaw() - math.pi / 2 + local velo = self.object:getvelocity() + local v = 1.5 + if math.abs(velo.x) + math.abs(velo.z) < .6 then velo.y = 5 end + self.state = "walk" + self.object:setyaw(yaw) + self.object:setvelocity({x = -math.sin(yaw) * v, y = velo.y, z = math.cos(yaw) * v}) + + local inv = self.driver:get_inventory() + local stack = inv:get_stack("main", self.driver:get_wield_index()) + stack:add_wear(100) + if stack:get_wear() > 65400 then + stack = {name = "fishing:pole_wood", count = 1} + end + inv:set_stack("main", self.driver:get_wield_index(), stack) + return + end + end + + self.env_damage_timer = self.env_damage_timer + dtime + if self.state == "attack" and self.env_damage_timer > 1 then + self.env_damage_timer = 0 + do_env_damage(self) + elseif self.state ~= "attack" then + do_env_damage(self) + end +--BREAK + + +end + +-- default function when mobs are blown up with TNT +local do_tnt = function(obj, damage) + + --print ("----- Damage", damage) + + obj.object:punch(obj.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = damage}, + }, nil) + + return false, true, {} +end + +mobs.spawning_mobs = {} + +-- register mob function +function mobs:register_mob(name, def) + + mobs.spawning_mobs[name] = true + +minetest.register_entity(name, { + + stepheight = def.stepheight or 0.6, + name = name, + type = def.type, + attack_type = def.attack_type, + fly = def.fly, + fly_in = def.fly_in or "air", + owner = def.owner or "", + order = def.order or "", + on_die = def.on_die, + do_custom = def.do_custom, + jump_height = def.jump_height or 6, + jump_chance = def.jump_chance or 0, + drawtype = def.drawtype, -- DEPRECATED, use rotate instead + rotate = math.rad(def.rotate or 0), -- 0=front, 90=side, 180=back, 270=side2 + lifetimer = def.lifetimer or 180, -- 3 minutes + hp_min = def.hp_min or 5, + hp_max = def.hp_max or 10, + physical = true, + collisionbox = def.collisionbox, + visual = def.visual, + visual_size = def.visual_size or {x = 1, y = 1}, + mesh = def.mesh, + textures = def.textures, -- maikerumine texture code + makes_footstep_sound = def.makes_footstep_sound or false, + view_range = def.view_range or 5, + walk_velocity = def.walk_velocity or 1, + run_velocity = def.run_velocity or 2, + damage = def.damage or 0, + light_damage = def.light_damage or 0, + water_damage = def.water_damage or 0, + lava_damage = def.lava_damage or 0, + fall_damage = def.fall_damage or 1, + fall_speed = def.fall_speed or -10, -- must be lower than -2 (default: -10) + drops = def.drops or {}, + armor = def.armor, + on_rightclick = def.on_rightclick, + arrow = def.arrow, + shoot_interval = def.shoot_interval, + sounds = def.sounds or {}, + animation = def.animation, + follow = def.follow, + jump = def.jump or true, + walk_chance = def.walk_chance or 50, + attacks_monsters = def.attacks_monsters or false, + group_attack = def.group_attack or false, + --fov = def.fov or 120, + passive = def.passive or false, + recovery_time = def.recovery_time or 0.5, + knock_back = def.knock_back or 3, + blood_amount = def.blood_amount or 5, + blood_texture = def.blood_texture or "mobs_blood.png", + shoot_offset = def.shoot_offset or 0, + floats = def.floats or 1, -- floats in water by default + replace_rate = def.replace_rate, + replace_what = def.replace_what, + replace_with = def.replace_with, + replace_offset = def.replace_offset or 0, + timer = 0, + env_damage_timer = 0, -- only used when state = "attack" + tamed = false, + pause_timer = 0, + horny = false, + hornytimer = 0, + child = false, + gotten = false, + health = 0, + reach = def.reach or 3, + htimer = 0, + child_texture = def.child_texture, + docile_by_day = def.docile_by_day or false, + time_of_day = 0.5, + fear_height = def.fear_height or 0, + runaway = def.runaway, + runaway_timer = 0, + pathfinding = def.pathfinding, + immune_to = def.immune_to or {}, + explosion_radius = def.explosion_radius, + custom_attack = def.custom_attack, + double_melee_attack = def.double_melee_attack, + dogshoot_switch = def.dogshoot_switch, + dogshoot_count = 0, + dogshoot_count_max = def.dogshoot_count_max or 5, + + on_blast = def.on_blast or do_tnt, + + on_step = mob_step, + + on_punch = mob_punch, + + on_activate = function(self, staticdata, dtime_s) + mob_activate(self, staticdata, dtime_s, def) + end, + + get_staticdata = function(self) + + -- remove mob when out of range unless tamed + if remove_far + and self.remove_ok + and not self.tamed then + + --print ("REMOVED " .. self.name) + + self.object:remove() + + return nil + end + + self.remove_ok = true + self.attack = nil + self.following = nil + self.state = "stand" + + -- used to rotate older mobs + if self.drawtype + and self.drawtype == "side" then + self.rotate = math.rad(90) + end + + local tmp = {} + + for _,stat in pairs(self) do + + local t = type(stat) + + if t ~= 'function' + and t ~= 'nil' + and t ~= 'userdata' then + tmp[_] = self[_] + end + end + + -- print('===== '..self.name..'\n'.. dump(tmp)..'\n=====\n') + return minetest.serialize(tmp) + end, + +}) + +end -- END mobs:register_mob function + +-- global functions + +function mobs:spawn_specific(name, nodes, neighbors, min_light, max_light, + interval, chance, active_object_count, min_height, max_height, day_toggle) + + -- chance override in minetest.conf for registered mob + local new_chance = tonumber(minetest.setting_get(name .. "_chance")) + + if new_chance ~= nil then + + if new_chance == 0 then + print("[Mobs Redo] " .. name .. " has spawning disabled") + return + end + + chance = new_chance + + print ("[Mobs Redo] Chance setting for " .. name .. " changed to " .. chance) + + end + + minetest.register_abm({ + + nodenames = nodes, + neighbors = neighbors, + interval = interval, + chance = chance, + catch_up = false, + + action = function(pos, node, aoc, active_object_count_wider) + + -- do not spawn if too many active entities in area + if active_object_count_wider > active_object_count + or not mobs.spawning_mobs[name] then + return + end + + -- if toggle set to nil then ignore day/night check + if day_toggle ~= nil then + + local tod = (minetest.get_timeofday() or 0) * 24000 + + if tod > 4500 and tod < 19500 then + -- daylight, but mob wants night + if day_toggle == false then + return + end + else + -- night time but mob wants day + if day_toggle == true then + return + end + end + end + + -- spawn above node + pos.y = pos.y + 1 + + -- only spawn away from player + local objs = minetest.get_objects_inside_radius(pos, 10) + + for _,oir in pairs(objs) do + + if oir:is_player() then + return + end + end + + -- mobs cannot spawn in protected areas when enabled + if spawn_protected == 1 + and minetest.is_protected(pos, "") then + return + end + + -- check if light and height levels are ok to spawn + local light = minetest.get_node_light(pos) + if not light + or light > max_light + or light < min_light + or pos.y > max_height + or pos.y < min_height then + return + end + + -- are we spawning inside solid nodes? + if minetest.registered_nodes[node_ok(pos).name].walkable == true then + return + end + + pos.y = pos.y + 1 + + if minetest.registered_nodes[node_ok(pos).name].walkable == true then + return + end + + -- spawn mob half block higher than ground + pos.y = pos.y - 0.5 + + local mob = minetest.add_entity(pos, name) + + if mob and mob:get_luaentity() then +-- print ("[mobs] Spawned " .. name .. " at " +-- .. minetest.pos_to_string(pos) .. " on " +-- .. node.name .. " near " .. neighbors[1]) + else + print ("[mobs]" .. name .. " failed to spawn at " + .. minetest.pos_to_string(pos)) + end + + end + }) +end + +-- compatibility with older mob registration +function mobs:register_spawn(name, nodes, max_light, min_light, chance, active_object_count, max_height, day_toggle) + + mobs:spawn_specific(name, nodes, {"air"}, min_light, max_light, 30, + chance, active_object_count, -31000, max_height, day_toggle) +end + +-- set content id's +local c_air = minetest.get_content_id("air") +local c_ignore = minetest.get_content_id("ignore") +local c_obsidian = minetest.get_content_id("default:obsidian") +local c_brick = minetest.get_content_id("default:obsidianbrick") +local c_chest = minetest.get_content_id("default:chest_locked") + +-- explosion (cannot break protected or unbreakable nodes) +function mobs:explosion(pos, radius, fire, smoke, sound) + + radius = radius or 0 + fire = fire or 0 + smoke = smoke or 0 + + -- if area protected or near map limits then no blast damage + if minetest.is_protected(pos, "") + or not within_limits(pos, radius) then + return + end + + -- explosion sound + if sound + and sound ~= "" then + + minetest.sound_play(sound, { + pos = pos, + gain = 1.0, + max_hear_distance = 16 + }) + end + + pos = vector.round(pos) -- voxelmanip doesn't work properly unless pos is rounded ?!?! + + local vm = VoxelManip() + local minp, maxp = vm:read_from_map(vector.subtract(pos, radius), vector.add(pos, radius)) + local a = VoxelArea:new({MinEdge = minp, MaxEdge = maxp}) + local data = vm:get_data() + local p = {} + local pr = PseudoRandom(os.time()) + + for z = -radius, radius do + for y = -radius, radius do + local vi = a:index(pos.x + (-radius), pos.y + y, pos.z + z) + for x = -radius, radius do + + p.x = pos.x + x + p.y = pos.y + y + p.z = pos.z + z + + if (x * x) + (y * y) + (z * z) <= (radius * radius) + pr:next(-radius, radius) + and data[vi] ~= c_air + and data[vi] ~= c_ignore + and data[vi] ~= c_obsidian + and data[vi] ~= c_brick + and data[vi] ~= c_chest then + + local n = node_ok(p).name + local on_blast = minetest.registered_nodes[n].on_blast + + if on_blast then + return on_blast(p) + else + -- after effects + if fire > 0 + and (minetest.registered_nodes[n].groups.flammable + or math.random(1, 100) <= 30) then + + minetest.set_node(p, {name = "fire:basic_flame"}) + else + minetest.set_node(p, {name = "air"}) + + if smoke > 0 then + effect(p, 2, "tnt_smoke.png", 5) + end + end + end + end + + vi = vi + 1 + + end + end + end +end + +-- register arrow for shoot attack +function mobs:register_arrow(name, def) + + if not name or not def then return end -- errorcheck + + minetest.register_entity(name, { + + physical = false, + visual = def.visual, + visual_size = def.visual_size, + textures = def.textures, + velocity = def.velocity, + hit_player = def.hit_player, + hit_node = def.hit_node, + hit_mob = def.hit_mob, + drop = def.drop or false, + collisionbox = {0, 0, 0, 0, 0, 0}, -- remove box around arrows + timer = 0, + switch = 0, + + on_step = def.on_step or function(self, dtime) + + self.timer = self.timer + 1 + + local pos = self.object:getpos() + + if self.switch == 0 + or self.timer > 150 + or not within_limits(pos, 0) then + + self.object:remove() ; -- print ("removed arrow") + + return + end + + -- does arrow have a tail (fireball) + if def.tail + and def.tail == 1 + and def.tail_texture then + effect(pos, 1, def.tail_texture, 10, 0) + end + + if self.hit_node then + + local node = node_ok(pos).name + + --if minetest.registered_nodes[node].walkable then + if node ~= "air" then + + self.hit_node(self, pos, node) + + if self.drop == true then + + pos.y = pos.y + 1 + + self.lastpos = (self.lastpos or pos) + + minetest.add_item(self.lastpos, self.object:get_luaentity().name) + end + + self.object:remove() ; -- print ("hit node") + + return + end + end + + if (self.hit_player or self.hit_mob) + -- clear mob entity before arrow becomes active + and self.timer > (10 - (self.velocity / 2)) then + + for _,player in pairs(minetest.get_objects_inside_radius(pos, 1.0)) do + + if self.hit_player + and player:is_player() then + + self.hit_player(self, player) + self.object:remove() ; -- print ("hit player") + return + end + + if self.hit_mob + and player:get_luaentity() + and player:get_luaentity().name ~= self.object:get_luaentity().name + and player:get_luaentity().name ~= "__builtin:item" + and player:get_luaentity().name ~= "gauges:hp_bar" + and player:get_luaentity().name ~= "signs:text" + and player:get_luaentity().name ~= "itemframes:item" then + + self.hit_mob(self, player) + + self.object:remove() ; -- print ("hit mob") + + return + end + end + end + + self.lastpos = pos + end + }) +end + +-- Spawn Egg +function mobs:register_egg(mob, desc, background, addegg, no_creative) + + local grp = {} + + -- do NOT add this egg to creative inventory (e.g. dungeon master) + if creative and no_creative == true then + grp = {not_in_creative_inventory = 1} + end + + local invimg = background + + if addegg == 1 then + invimg = "mobs_chicken_egg.png^(" .. invimg .. + "^[mask:mobs_chicken_egg_overlay.png)" + end + + minetest.register_craftitem(mob, { + + description = desc, + inventory_image = invimg, + groups = grp, + + on_place = function(itemstack, placer, pointed_thing) + + local pos = pointed_thing.above + + if pos + and within_limits(pos, 0) + and not minetest.is_protected(pos, placer:get_player_name()) then + + pos.y = pos.y + 1 + + local mob = minetest.add_entity(pos, mob) + local ent = mob:get_luaentity() + + if not ent then + mob:remove() + return + end + + if ent.type ~= "monster" then + -- set owner and tame if not monster + ent.owner = placer:get_player_name() + ent.tamed = true + end + + -- if not in creative then take item + if not creative then + itemstack:take_item() + end + end + + return itemstack + end, + }) +end + +-- capture critter (thanks to blert2112 for idea) +function mobs:capture_mob(self, clicker, chance_hand, chance_net, chance_lasso, force_take, replacewith) + + if not self.child + and clicker:is_player() + and clicker:get_inventory() then + + -- get name of clicked mob + local mobname = self.name + + -- if not nil change what will be added to inventory + if replacewith then + mobname = replacewith + end + + local name = clicker:get_player_name() + + -- is mob tamed? + if self.tamed == false + and force_take == false then + + minetest.chat_send_player(name, "Not tamed!") + + return + end + + -- cannot pick up if not owner + if self.owner ~= name + and force_take == false then + + minetest.chat_send_player(name, self.owner.." is owner!") + + return + end + + if clicker:get_inventory():room_for_item("main", mobname) then + + -- was mob clicked with hand, net, or lasso? + local tool = clicker:get_wielded_item() + local chance = 0 + + if tool:is_empty() then + chance = chance_hand + + elseif tool:get_name() == "mobs:net" then + + chance = chance_net + + tool:add_wear(4000) -- 17 uses + + clicker:set_wielded_item(tool) + + elseif tool:get_name() == "mobs:magic_lasso" then + + chance = chance_lasso + + tool:add_wear(650) -- 100 uses + + clicker:set_wielded_item(tool) + end + + -- return if no chance + if chance == 0 then return end + + -- calculate chance.. add to inventory if successful? + if math.random(1, 100) <= chance then + + clicker:get_inventory():add_item("main", mobname) + + self.object:remove() + else + minetest.chat_send_player(name, "Missed!") + end + end + end +end + +local mob_obj = {} +local mob_sta = {} + +-- feeding, taming and breeding (thanks blert2112) +function mobs:feed_tame(self, clicker, feed_count, breed, tame) + + if not self.follow then + return false + end + + -- can eat/tame with item in hand + if follow_holding(self, clicker) then + + -- if not in creative then take item + if not creative then + + local item = clicker:get_wielded_item() + + item:take_item() + + clicker:set_wielded_item(item) + end + + -- increase health + self.health = self.health + 4 + + if self.health >= self.hp_max then + + self.health = self.hp_max + + if self.htimer < 1 then + + minetest.chat_send_player(clicker:get_player_name(), + self.name:split(":")[2] + .. " at full health (" .. tostring(self.health) .. ")") + + self.htimer = 5 + end + end + + self.object:set_hp(self.health) + + update_tag(self) + + -- make children grow quicker + if self.child == true then + + self.hornytimer = self.hornytimer + 20 + + return true + end + + -- feed and tame + self.food = (self.food or 0) + 1 + if self.food >= feed_count then + + self.food = 0 + + if breed and self.hornytimer == 0 then + self.horny = true + end + + self.gotten = false + + if tame then + + if self.tamed == false then + minetest.chat_send_player(clicker:get_player_name(), + self.name:split(":")[2] + .. " has been tamed!") + end + + self.tamed = true + + if not self.owner or self.owner == "" then + self.owner = clicker:get_player_name() + end + end + + -- make sound when fed so many times + if self.sounds.random then + + minetest.sound_play(self.sounds.random, { + object = self.object, + max_hear_distance = self.sounds.distance + }) + end + end + + return true + end + + local item = clicker:get_wielded_item() + + -- if mob has been tamed you can name it with a nametag + if item:get_name() == "mobs:nametag" + and clicker:get_player_name() == self.owner then + + local name = clicker:get_player_name() + + -- store mob and nametag stack in external variables + mob_obj[name] = self + mob_sta[name] = item + + local tag = self.nametag or "" + + local formspec = "size[8,4]" + .. default.gui_bg + .. default.gui_bg_img + .. "field[0.5,1;7.5,0;name;Enter name:;" .. tag .. "]" + .. "button_exit[2.5,3.5;3,1;mob_rename;Rename]" + minetest.show_formspec(name, "mobs_nametag", formspec) + end + + return false + +end + +-- inspired by blockmen's nametag mod +minetest.register_on_player_receive_fields(function(player, formname, fields) + + -- right-clicked with nametag and name entered? + if formname == "mobs_nametag" + and fields.name + and fields.name ~= "" then + + local name = player:get_player_name() + + if not mob_obj[name] + or not mob_obj[name].object then + return + end + + -- update nametag + mob_obj[name].nametag = fields.name + + update_tag(mob_obj[name]) + + -- if not in creative then take item + if not creative then + + mob_sta[name]:take_item() + + player:set_wielded_item(mob_sta[name]) + end + + -- reset external variables + mob_obj[name] = nil + mob_sta[name] = nil + + end +end) + +-- compatibility function for old entities to new modpack entities +function mobs:alias_mob(old_name, new_name) + + -- spawn egg + minetest.register_alias(old_name, new_name) + + -- entity + minetest.register_entity(":" .. old_name, { + + physical = false, + + on_step = function(self) + + local pos = self.object:getpos() + + minetest.add_entity(pos, new_name) + + self.object:remove() + end + }) +end + + --Brandon Reese code to face pos + function mobs:face_pos(self,pos) + local s = self.object:getpos() + local vec = {x=pos.x-s.x, y=pos.y-s.y, z=pos.z-s.z} + local yaw = math.atan(vec.z/vec.x)+math.pi/2 + if self.drawtype == "side" then + yaw = yaw+(math.pi/2) + end + if pos.x > s.x then + yaw = yaw+math.pi + end + self.object:setyaw(yaw) + return yaw + end + + --Reese chat + local_chat = function(pos,text,radius) + if radius == nil then + radius = 25 + end + if pos ~= nil then + local oir = minetest.get_objects_inside_radius(pos, radius) + for _,p in pairs(oir) do + if p:is_player() then + minetest.chat_send_player(p:get_player_name(),text) + end + end + end + end + + --maikeruminefollow + function mobs:team_player(self,pos) + if tamed == true or + self.tamed == true then + self.order = "follow" + end + end diff --git a/mods/mobs_mc/chicken.lua b/mods/mobs_mc/chicken.lua new file mode 100644 index 000000000..fefb36d78 --- /dev/null +++ b/mods/mobs_mc/chicken.lua @@ -0,0 +1,159 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +mobs:register_mob("mobs_mc:chicken", { + type = "animal", + hp_max = 24, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + + visual = "mesh", + mesh = "mobs_mc_chicken.x", + textures = { + {"mobs_mc_chicken.png"} + }, + makes_footstep_sound = true, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mcl_mobitems:chicken_raw", + chance = 1, + min = 1, + max = 1,}, + {name = "mcl_mobitems:feather", + chance = 1, + min = 0, + max = 2,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + sounds = { + random = "Chicken1", + death = "Chickenhurt1", + hurt = "Chickenhurt1", + }, + animation = { + speed_normal = 24, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + hurt_start = 118, + hurt_end = 154, + death_start = 154, + death_end = 179, + eat_start = 49, + eat_end = 78, + look_start = 78, + look_end = 108, + fly_start = 181, + fly_end = 187, + }, + --[[ + follow = "farming:seed_wheat", + view_range = 5, + on_rightclick = function(self, clicker) + if clicker:get_inventory() then + if minetest.registered_items[":mobs:egg"] then + clicker:get_inventory():add_item("main", ItemStack(":mobs:egg 1")) + end + end + end, + + do_custom = function(self) + + if self.child + or math.random(1, 5000) > 1 then + return + end + + local pos = self.object:getpos() + + minetest.add_item(pos, ":mobs:egg") + + minetest.sound_play("default_place_node_hard", { + pos = pos, + gain = 1.0, + max_hear_distance = 5, + }) + end, + ]] + --from mobs_animals + follow = {"farming:seed_wheat", "farming:seed_cotton"}, + view_range = 5, + + on_rightclick = function(self, clicker) + + if mobs:feed_tame(self, clicker, 8, true, true) then + return + end + + mobs:capture_mob(self, clicker, 30, 50, 80, false, nil) + end, + + do_custom = function(self) + + if self.child + or math.random(1, 5000) > 1 then + return + end + + local pos = self.object:getpos() + + minetest.add_item(pos, "mcl_mobitems:egg") + + minetest.sound_play("default_place_node_hard", { + pos = pos, + gain = 1.0, + max_hear_distance = 5, + }) + end, + +}) + +--mobs:register_spawn("mobs_mc:chicken", {"default:dirt_with_grass"}, 20, 8, 7000, 1, 31000) + + +-- from mobs_redo +-- egg +minetest.register_node(":mobs:egg", { + description = "Chicken Egg", + tiles = {"mobs_chicken_egg.png"}, + inventory_image = "mobs_chicken_egg.png", + visual_scale = 0.7, + drawtype = "plantlike", + wield_image = "mobs_chicken_egg.png", + paramtype = "light", + walkable = false, + is_ground_content = true, + sunlight_propagates = true, + selection_box = { + type = "fixed", + fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} + }, + groups = {snappy = 2, dig_immediate = 3}, + after_place_node = function(pos, placer, itemstack) + if placer:is_player() then + minetest.set_node(pos, {name = "mobs:egg", param2 = 1}) + end + end, + on_use = mobs_shoot_egg +}) + +-- compatibility +mobs:alias_mob("mobs:chicken", "mobs_mc:chicken") + +-- spawn eggs +mobs:register_egg("mobs_mc:chicken", "Chicken", "spawn_egg_chicken.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC chicken loaded") +end diff --git a/mods/mobs_mc/cow.lua b/mods/mobs_mc/cow.lua new file mode 100644 index 000000000..1d04dbe7a --- /dev/null +++ b/mods/mobs_mc/cow.lua @@ -0,0 +1,139 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +mobs:register_mob("mobs_mc:cow", { + type = "animal", + hp_max = 28, + collisionbox = {-0.6, -0.01, -0.6, 0.6, 1.8, 0.6}, + + visual = "mesh", + mesh = "mobs_mc_cow.x", + textures = { + {"mobs_mc_cow.png"} + }, + makes_footstep_sound = true, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mobs:beef_raw", + chance = 1, + min = 1, + max = 3,}, + {name = "mobs:leather", + chance = 1, + min = 0, + max = 2,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + fear_height = 3, + sounds = { + random = "Cow1", + death = "Cowhurt1", + damage = "Cowhurt1", + }, + animation = { + speed_normal = 24, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + hurt_start = 118, + hurt_end = 154, + death_start = 154, + death_end = 179, + eat_start = 49, + eat_end = 78, + look_start = 78, + look_end = 108, + }, + --[[ + follow = "farming:wheat", + view_range = 5, + on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + if item:get_name() == "bucket:bucket_empty" and clicker:get_inventory() then + local inv = clicker:get_inventory() + inv:remove_item("main", "bucket:bucket_empty") + -- if room add bucket of milk to inventory, otherwise drop as item + if inv:room_for_item("main", {name="mobs:bucket_milk"}) then + clicker:get_inventory():add_item("main", "mobs:bucket_milk") + else + local pos = self.object:getpos() + pos.y = pos.y + 0.5 + minetest.add_item(pos, {name = "mobs:bucket_milk"}) + end + end + end, + ]] + --from mobs_animals + follow = "farming:wheat", + view_range = 7, + replace_rate = 10, + replace_what = {"default:grass_3", "default:grass_4", "default:grass_5", "farming:wheat_8"}, + replace_with = "air", + fear_height = 2, + on_rightclick = function(self, clicker) + + -- feed or tame + if mobs:feed_tame(self, clicker, 8, true, true) then + return + end + + local tool = clicker:get_wielded_item() + + -- milk cow with empty bucket + if tool:get_name() == "bucket:bucket_empty" then + + --if self.gotten == true + if self.child == true then + return + end + + if self.gotten == true then + minetest.chat_send_player(clicker:get_player_name(), + "Cow already milked!") + return + end + + local inv = clicker:get_inventory() + + inv:remove_item("main", "bucket:bucket_empty") + + if inv:room_for_item("main", {name = "mobs:bucket_milk"}) then + clicker:get_inventory():add_item("main", "mobs:bucket_milk") + else + local pos = self.object:getpos() + pos.y = pos.y + 0.5 + minetest.add_item(pos, {name = "mobs:bucket_milk"}) + end + + self.gotten = true -- milked + + return + end + + mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) + end, +}) + +--mobs:register_spawn("mobs_mc:cow", {"default:dirt_with_grass"}, 20, 8, 7000, 1, 31000) + + +-- compatibility +mobs:alias_mob("mobs:cow", "mobs_mc:cow") + +-- spawn egg +mobs:register_egg("mobs_mc:cow", "Cow", "spawn_egg_cow.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Cow loaded") +end diff --git a/mods/mobs_mc/creeper.lua b/mods/mobs_mc/creeper.lua new file mode 100644 index 000000000..672d9298e --- /dev/null +++ b/mods/mobs_mc/creeper.lua @@ -0,0 +1,111 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + + +mobs:register_mob("mobs_mc:creeper", { + type = "monster", + hp_max = 30, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.6, 0.4}, + pathfinding = true, + group_attack = true, + visual = "mesh", + visual_size = {x=.75, y=.75, z=.75}, + mesh = "mobs_creeper.x", + textures = { + {"mobs_creeper.png"} + }, + makes_footstep_sound = false, + sounds = { + attack = "Fuse", + death = "Creeperdeath", + damage = "Creeper4", + war_cry = "Fuse", + explode = "explo", + }, + walk_velocity = 1.5, + run_velocity = 3, + damage = 1, + explosion_radius = 3, + armor = 200, + maxdrops = 3, + drops = { + {name = "tnt:gunpowder", + chance = 1, + min = 0, + max = 2,}, + {name = "default:flint_and_steel", + chance = 1, + min = 0, + max = 1,}, + {name = "farorb:farorb", + chance = 1, + min = 0, + max = 1,}, + {name = "jdukebox:disc_1", + chance = 10, + min = 0, + max = 1,}, + {name = "jdukebox:disc_2", + chance = 10, + min = 0, + max = 1,}, + {name = "jdukebox:disc_3", + chance = 10, + min = 0, + max = 1,}, + {name = "jdukebox:disc_4", + chance = 10, + min = 0, + max = 1,}, + {name = "jdukebox:disc_5", + chance = 10, + min = 0, + max = 1,}, + {name = "jdukebox:disc_6", + chance = 10, + min = 0, + max = 1,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + run_start = 24, + run_end = 49, + hurt_start = 110, + hurt_end = 139, + death_start = 140, + death_end = 189, + look_start = 50, + look_end = 108, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + view_range = 16, + attack_type = "explode", +}) +mobs:register_spawn("mobs_mc:creeper", {"group:crumbly", "group:cracky", "group:choppy", "group:snappy"}, 7, -1, 5000, 4, 31000) + + + +-- compatibility +mobs:alias_mob("mobs:creeper", "mobs_mc:creeper") + +-- spawn eggs +mobs:register_egg("mobs_mc:creeper", "Creeper", "spawn_egg_creeper.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Creeper loaded") +end diff --git a/mods/mobs_mc/depends.txt b/mods/mobs_mc/depends.txt new file mode 100644 index 000000000..dfbdfe6ab --- /dev/null +++ b/mods/mobs_mc/depends.txt @@ -0,0 +1,5 @@ +default +fire +mobs +tnt +mcl_mobitems diff --git a/mods/mobs_mc/description.txt b/mods/mobs_mc/description.txt new file mode 100644 index 000000000..c57195fea --- /dev/null +++ b/mods/mobs_mc/description.txt @@ -0,0 +1 @@ +Adds Minecraft-like monsters and animals. diff --git a/mods/mobs_mc/enderman.lua b/mods/mobs_mc/enderman.lua new file mode 100644 index 000000000..a4719eb2d --- /dev/null +++ b/mods/mobs_mc/enderman.lua @@ -0,0 +1,80 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +mobs:register_mob("mobs_mc:enderman", { + type = "monster", + hp_max = 39, + collisionbox = {-0.4, -2.4, -0.4, 0.4, 1.8, 0.4}, + + visual = "mesh", + mesh = "mobs_sand_monster.b3d", + textures = { + {"mobs_endermen.png"} + }, + visual_size = {x=1.2, y=2.5}, + makes_footstep_sound = true, + sounds = { + random = "mobs_sandmonster", + death = "green_slime_death", + damage = "Creeperdeath", + }, + walk_velocity = 3.2, + run_velocity = 5.4, + damage = 1, + armor = 200, + drops = { + {name = "default:obsidian", + chance = 4, + min = 0, + max = 2,}, + {name = "default:diamond", + chance = 11, + min = 1, + max = 1,}, + {name = "farorb:farorb", + chance = 3, + min = 0, + max = 1,}, + }, + animation = { + speed_normal = 45, + speed_run = 15, + stand_start = 0, + stand_end = 39, + walk_start = 41, + walk_end = 72, + run_start = 74, + run_end = 105, + punch_start = 74, + punch_end = 105, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + view_range = 16, + attack_type = "dogfight", + replace_rate = 1, + replace_what = {"default:torch","default:sand","default:desert_sand","default:cobble","default:dirt","default:dirt_with_glass","default:dirt_with_dry_grass","default:wood","default:stone","default:sandstone"}, + replace_with = "air", + replace_offset = -1, + +}) +mobs:register_spawn("mobs_mc:enderman", { "default:sand", "default:desert_sand"}, 5, -1, 5000, 4, 31000) + + + + +-- spawn eggs +mobs:register_egg("mobs_mc:enderman", "Enderman", "spawn_egg_overlay.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Enderman loaded") +end diff --git a/mods/mobs_mc/ghast.lua b/mods/mobs_mc/ghast.lua new file mode 100644 index 000000000..179dad948 --- /dev/null +++ b/mods/mobs_mc/ghast.lua @@ -0,0 +1,125 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +mobs:register_mob("mobs_mc:ghast", { + type = "monster", + pathfinding = true, + group_attack = true, + hp_max = 50, + collisionbox = {-1.45, -1.45, -1.45 ,1.45, 1.45, 1.45}, + visual_size = {x=3.0, y=3.0}, +-- textures = { +-- {"ghast_top.png", "ghast_bottom.png", "ghast_front.png", "ghast_sides.png", "ghast_sides.png", "ghast_sides.png"} +-- }, + textures = { + {"ghast_white.png", "ghast_white.png", "ghast_front.png", "ghast_white.png", "ghast_white.png", "ghast_white.png"} + }, + visual = "cube", + blood_texture ="mobs_blood.png", + rotate = 270, + makes_footstep_sound = true, + sounds = { + shoot = "mobs_fireball", + death = "zombiedeath", + damage = "ghast_damage", + attack = "mobs_fireball", + random = "mobs_eerie", + }, + walk_velocity = .8, + run_velocity = 2.6, + damage = 1, + armor = 100, + drops = { + {name = "default:lava_source 1", + chance = 3, + min = 1, + max = 4,}, + {name = "default:diamond", + chance = 1, + min = 1, + max = 5,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + drawtype = "front", + water_damage = 10, + lava_damage = 0, + light_damage = 0, + fall_damage = 0, + view_range = 16, + --attack_type = "dogshoot", + attack_type = "dogshoot", + arrow = "mobs_monster:fireball", + shoot_interval = 3.5, + shoot_offset = 1, + --'dogshoot_switch' allows switching between shoot and dogfight modes inside dogshoot using timer (1 = shoot, 2 = dogfight) + --'dogshoot_count_max' number of seconds before switching above modes. + dogshoot_switch = 1, + dogshoot_count_max =1, + passive = false, + jump = true, + jump_height = 4, + floats=1, + fly = true, + jump_chance = 98, + fear_height = 120, +}) + + +mobs:register_spawn("mobs_mc:ghast", {"default:flowing_lava", "nether:rack","air"}, 17, -1, 5000, 1, -2000) + +-- fireball (weapon) +mobs:register_arrow(":mobs_monster:fireball", { + visual = "sprite", + visual_size = {x = 0.5, y = 0.5}, + textures = {"mobs_fireball.png"}, + velocity = 6, + + -- direct hit, no fire... just plenty of pain + hit_player = function(self, player) + player:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = 8}, + }, nil) + end, + + hit_mob = function(self, player) + player:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = 8}, + }, nil) + end, + + -- node hit, bursts into flame + hit_node = function(self, pos, node) + mobs:explosion(pos, 1, 1, 0) + end +}) + + + + +-- spawn eggs +mobs:register_egg("mobs_mc:ghast", "Ghast", "ghast_front.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Ghast loaded") +end diff --git a/mods/mobs_mc/horse.lua b/mods/mobs_mc/horse.lua new file mode 100644 index 000000000..6315dba5a --- /dev/null +++ b/mods/mobs_mc/horse.lua @@ -0,0 +1,359 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +------------------------- +--KPGMOBS HORSE +------------------------- +--By: KrupnovPavel +--Tweaked by: maikerumine +local function is_ground(pos) + local nn = minetest.get_node(pos).name + return minetest.get_item_group(nn, "crumbly") ~= 0 or + minetest.get_item_group(nn, "choppy") ~= 0 or + minetest.get_item_group(nn, "cracky") ~= 0 or + minetest.get_item_group(nn, "snappy") ~= 0 or + minetest.get_item_group(nn, "unbreakable") ~= 0 or + minetest.get_item_group(nn, "immortal") ~= 0 +end + +local function get_sign(i) + if i == 0 then + return 0 + else + return i/math.abs(i) + end +end + +local function get_velocity(v, yaw, y) + local x = math.cos(yaw)*v + local z = math.sin(yaw)*v + return {x=x, y=y, z=z} +end + +local function get_v(v) + return math.sqrt(v.x^2+v.z^2) +end + +function merge(a, b) + if type(a) == 'table' and type(b) == 'table' then + for k,v in pairs(b) do if type(v)=='table' and type(a[k] or false)=='table' then merge(a[k],v) else a[k]=v end end + end + return a +end + +-- HORSE go go goooo :) +local horse = { + physical = true, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + visual = "mesh", + stepheight = 1.1, + visual_size = {x=1,y=1}, + mesh = "mobs_horseh1.x", + driver = nil, + v = 0, + + on_rightclick = function(self, clicker) + if not clicker or not clicker:is_player() then + return + end + if self.driver and clicker == self.driver then + self.driver = nil + clicker:set_detach() + elseif not self.driver then + self.driver = clicker + clicker:set_attach(self.object, "", {x=0,y=11,z=0}, {x=0,y=0,z=0}) + self.object:setyaw(clicker:get_look_yaw()) + end + end, + + on_activate = function(self, staticdata, dtime_s) + self.object:set_armor_groups({immortal=1}) + print (self.texture, self.jmp) + end, + + on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, direction) + if puncher and puncher:is_player() then + puncher:get_inventory():add_item("main", self.name) + self.object:remove() + end + end, + + on_step = function(self, dtime) + + self.v = get_v(self.object:getvelocity())*get_sign(self.v) + + if self.driver then + local ctrl = self.driver:get_player_control() + if ctrl.up then + self.v = self.v + self.jmp + end + if ctrl.down then + self.v = self.v-0.1 + end + if ctrl.left then + self.object:setyaw(self.object:getyaw()+math.pi/120+dtime*math.pi/120) + end + if ctrl.right then + self.object:setyaw(self.object:getyaw()-math.pi/120-dtime*math.pi/120) + end + if ctrl.jump then + local p = self.object:getpos() + p.y = p.y-0.5 + if is_ground(p) then + local pos = self.object:getpos() + pos.y = math.floor(pos.y)+4 + self.object:setpos(pos) + self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), 0)) + end + end + end + + local s = get_sign(self.v) + self.v = self.v - 0.02*s + if s ~= get_sign(self.v) then + self.object:setvelocity({x=0, y=0, z=0}) + self.v = 0 + return + end + + if math.abs(self.v) > 4.5 then + self.v = 4.5*get_sign(self.v) + end + + local p = self.object:getpos() + p.y = p.y-0.5 + + if not is_ground(p) then + if minetest.registered_nodes[minetest.get_node(p).name].walkable then + self.v = 0 + end + self.object:setacceleration({x=0, y=-10, z=0}) + self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), self.object:getvelocity().y)) + else + p.y = p.y+1 + if is_ground(p) then + self.object:setacceleration({x=0, y=3, z=0}) + local y = self.object:getvelocity().y + if y > 2 then + y = 2 + end + if y < 0 then + self.object:setacceleration({x=0, y=10, z=0}) + end + self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), y)) + else + self.object:setacceleration({x=0, y=0, z=0}) + if math.abs(self.object:getvelocity().y) < 1 then + local pos = self.object:getpos() + pos.y = math.floor(pos.y)+0.5 + self.object:setpos(pos) + self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), 0)) + else + self.object:setvelocity(get_velocity(self.v, self.object:getyaw(), self.object:getvelocity().y)) + end + end + end + end, +} + +--END HORSE + +-- backup table +local hbak = horse + +-- Brown Horse +local hrs = { + textures = {"mobs_horseh1.png"}, + jmp = 2, +} +minetest.register_entity("mobs_mc:horseh1", merge(hrs, horse)) + +-- White Horse +horse = hbak +local peg = { + textures = {"mobs_horsepegh1.png"}, + jmp = 2, +} +minetest.register_entity("mobs_mc:horsepegh1", merge(peg, horse)) + +-- Black Horse +horse = hbak +local ara = { + textures = {"mobs_horsearah1.png"}, + jmp = 3, +} +minetest.register_entity("mobs_mc:horsearah1", merge(ara, horse)) + + +mobs:register_mob("mobs_mc:horse", { + type = "animal", + hp_min = 5, + hp_max = 10, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = { + {"mobs_horseh.png"}, + }, + visual = "mesh", + mesh = "mobs_horse.x", + makes_footstep_sound = true, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mcl_mobitems:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + fear_height = 6, + animation = { + speed_normal = 15, + stand_start = 25, stand_end = 75, + walk_start = 75, walk_end = 100, + }, + follow = "farming:wheat", + view_range = 5, + + on_rightclick = function(self, clicker) + local tool = clicker:get_wielded_item() + if tool:get_name() == "mobs:saddle" then + clicker:get_inventory():remove_item("main", "mobs:saddle") + local pos = self.object:getpos() + self.object:remove() + minetest.add_entity(pos, "mobs_mc:horseh1") + end + end, +}) + +mobs:register_mob("mobs_mc:horse2", { + type = "animal", + hp_min = 5, + hp_max = 10, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = { + {"mobs_horsepegh.png"}, + }, + visual = "mesh", + mesh = "mobs_horse.x", + makes_footstep_sound = true, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mcl_mobitems:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + fear_height = 6, + animation = { + speed_normal = 15, + stand_start = 25, stand_end = 75, + walk_start = 75, walk_end = 100, + }, + follow = "farming:wheat", + view_range = 5, + + on_rightclick = function(self, clicker) + local tool = clicker:get_wielded_item() + if tool:get_name() == "mobs:saddle" then + clicker:get_inventory():remove_item("main", "mobs:saddle") + local pos = self.object:getpos() + self.object:remove() + minetest.add_entity(pos, "mobs_mc:horsepegh1") + end + end, +}) + +mobs:register_mob("mobs_mc:horse3", { + type = "animal", + hp_min = 5, + hp_max = 10, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + textures = { + {"mobs_horsearah.png"}, + }, + visual = "mesh", + mesh = "mobs_horse.x", + makes_footstep_sound = true, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mcl_mobitems:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + fear_height = 6, + animation = { + speed_normal = 15, + stand_start = 25, stand_end = 75, + walk_start = 75, walk_end = 100, + }, + follow = "farming:wheat", + view_range = 5, + + on_rightclick = function(self, clicker) + local tool = clicker:get_wielded_item() + if tool:get_name() == "mobs:saddle" then + clicker:get_inventory():remove_item("main", "mobs:saddle") + local pos = self.object:getpos() + self.object:remove() + minetest.add_entity(pos, "mobs_mc:horsearah1") + end + end, +}) +mobs:register_spawn("mobs_mc:horse", {"default:dirt_with_dry_grass","es:strange_grass","es:aiden_grass"}, 20, 12, 21000, 1, 12) +mobs:register_spawn("mobs_mc:horse2", {"default:dirt_with_dry_grass"}, 20, 12, 23000, 1, 31000) +mobs:register_spawn("mobs_mc:horse3", {"default:desert_sand"}, 20, 8, 17000, 1, 5) + + +-- saddle +minetest.register_craftitem(":mobs:saddle", { + description = "Saddle", + inventory_image = "saddle.png", +}) + +minetest.register_craft({ + output = "mobs:saddle", + recipe = { + {"mobs:leather", "mobs:leather", "mobs:leather"}, + {"farming:string", "", "farming:string"}, + {"default:steel_ingot", "", "default:steel_ingot"} + }, +}) + +-- compatibility +mobs:alias_mob("mobs:horse", "mobs_mc:horse") +mobs:alias_mob("mobs:horse2", "mobs_mc:horse2") +mobs:alias_mob("mobs:horse3", "mobs_mc:horse3") + +-- spawn eggs +-- KPV wild horse spawn eggs +mobs:register_egg("mobs_mc:horse", "Brown Horse", "mobs_horse_inv.png", 0) +mobs:register_egg("mobs_mc:horse2", "White Horse", "mobs_horse_peg_inv.png", 0) +mobs:register_egg("mobs_mc:horse3", "Arabic Horse", "mobs_horse_ara_inv.png", 0) +-- KPV tamed horse spawn eggs +mobs:register_egg("mobs_mc:horseh1", "Tamed Brown Horse", "mobs_horse_inv.png", 0) +mobs:register_egg("mobs_mc:horsepegh1", "Tamed White Horse", "mobs_horse_peg_inv.png", 0) +mobs:register_egg("mobs_mc:horsearah1", "Tamed Arabic Horse", "mobs_horse_ara_inv.png", 0) + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Horse loaded") +end diff --git a/mods/mobs_mc/init.lua b/mods/mobs_mc/init.lua new file mode 100644 index 000000000..931a5cd0d --- /dev/null +++ b/mods/mobs_mc/init.lua @@ -0,0 +1,31 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +local path = minetest.get_modpath("mobs_mc") + +-- Animals +dofile(path .. "/chicken.lua") -- Mesh and animation by Pavel_S +dofile(path .. "/cow.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/sheep.lua") -- Mesh and animation by Pavel_S +dofile(path .. "/pig.lua") -- Mesh and animation by Pavel_S +dofile(path .. "/horse.lua") -- KrupnoPavel +dofile(path .. "/wolf.lua") -- KrupnoPavel +dofile(path .. "/horse.lua") -- KrupnoPavel + + +-- NPC +dofile(path .. "/villager.lua") -- KrupnoPavel + +--Monsters +dofile(path .. "/creeper.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/skeleton.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/zombie.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/zombiepig.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/slimes.lua") -- Tomas J. Luis +dofile(path .. "/spider.lua") -- Spider by AspireMint (fishyWET (CC-BY-SA 3.0 license for texture) +dofile(path .. "/enderman.lua") -- maikerumine +dofile(path .. "/ghast.lua") -- maikerumine + +print ("[MOD] Mobs Redo 'MC' loaded") diff --git a/mods/mobs_mc/license.txt b/mods/mobs_mc/license.txt new file mode 100644 index 000000000..5e5f5d0af --- /dev/null +++ b/mods/mobs_mc/license.txt @@ -0,0 +1,269 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes such as this one. + + +Notes +----- + +cows: right-click with empty bucket gets milk +sheep: right-click gets wool +chicken: right-click to get an egg + +Milk and eggs need a food mod to be installed. + +Textures are from Faithful 32x32 pack (http://www.minecraftforum.net/topic/72747-faithful-32x32-pack-updateocelot-two-cats-new-saplings-ctm-17/) + +Sounds are from the Minecraft Wiki (Freesound license) + +=====Pig=====(at layer 1) +=====Cow=====(at layer 2) +=====Sheep=====(at layer 3) + +Ver.0.3 +Mesh by Morn76 +Animation by Pavel_S + +===Chicken=== +Mesh and animation by Pavel_S + +Meshes : Pig, Cow, Sheep +Armatures : Pig_Rig, Cow_Rig, Sheep_Rig + +==Animation== +Optimized for 24fps. +(the last frame equal to first in each animation) +The first frame of each animation is default pose. +=List of animations : + standing (head bobbing slightly up and down) : 1-24 + walking : 24-50 + eating (head goes to the ground) : 50-79 + eating cycle : 58-73 + look around + right : 79-99 + looking left pose : 89 + left : 99-119 + looking right pose : 109 + hurt (quick half jump with legs slightly crossed) : 119-155 + death (falls on left side) : 155-180 + +There is no delays for looking around and repeats for eating! + +==Rig== +See Pig_Rig.png + +==ChangeLog== +0.3 +Added Cow, Sheep +Added Cow and Sheep animations +Fixed UVunwraps +Extended hurt and death animation + +0.2 +Added Pig animation +Fixed UVunwrap + +=====Creeper===== +Ver.0.3 +Mesh by Morn76 +Animation by Pavel_S + +Meshes : Creeper +Armatures : Creeper_Rig + +==Animation== +Optimized for 24fps. +(the last frame equal to first in each animation) +The first frame of each animation is default pose. +=List of animations : + standing : 1-25 + walking : 25-50 + look around + right : 50-80 + looking left pose : 65 + left : 80-110 + looking right pose : 95 + hurt : 110-140 + death : 140-190 + +=====Skeleton===== +Ver.0.3 +Mesh by Morn76 +Animation by Pavel_S + +Meshes : Skeleton +Armatures : Skeleton_Rig + +==Animation== +Optimized for 30fps. +(the last frame equal to first in each animation) +The first frame of each animation is default pose. +=List of animations : + standing (head bobbing slightly up and down) : 1-25 + walking : 25-50 + hurt (quick half jump with legs slightly crossed) : 85-117 + death (falls on left side) : 117-146 + +=====Zombie===== +Mesh by Morn76 +Animation by Pavel_S + + 1 - 24 - standing +24 - 48 - walking +48 - 64 - running +64 - 88 - hurm +88 - 120 - death + + +******************************************************************************* + +Original "Slimes Redone" README follows + +"Slimes Redone" - Mod for Minetest (http://www.minetest.net/) + +Introduction +========================================================================================================================== +This mod adds two type of mobs in the world of Minetest: green slimes and lava slimes. They are hostile and will attack the +players as soon as they see them. If they are defeated, the slimes maybe will reward the player with useful resources. + +Green slimes live in the tall grass of the jungles and in the ancient ruins of lost temples. And lava slimes live deep +underground near the lava pools. + +I've made this mod inspired by this other: https://forum.minetest.net/viewtopic.php?f=11&t=2979&hilit=slimes which adds friendly +slimes. Thank you Jeija! + +Details +========================================================================================================================== +- Adds two new hostile mobs: green slimes and lava slimes. +- They attack players and hurt them on touch. (i'm not sure if the amount of damage is enough or too much...:/) +- The biger ones split in a random amout of smaller versions when defeated: big > medium > small. +- They can get different enviromental damage: water, lava, sunlight and falling. +- They use custom textures and sounds. (more work needs to be done here ;P) +- Cartoonish animation (they deform a bit when landing and stretch out when jumping). +- Effects (blood, smoke, bubbles, footprints,..). +- API to add new slimes. + +Green slimes: + > spawn in jungle grass or in temples mossy cobble (default:mossycobble). + > on die, they drop a randomish amount of glue (from mesecon mod) + > Lava hurts them. + +Lava slimes: + > spawn in lava pools deep under ground. + > on die, they drop a randomish amount of gunpowder (from default tnt mod). + > water hurts them. + > when they jump they leave behind a footprint of fire. ^^ + +Install +========================================================================================================================== +Unzip the archive an place it in minetest-base-directory/mods/minetest/ +If you have a windows client or a linux run-in-place client. +If you have a linux system-wide instalation place it in ~/.minetest/mods/minetest/. +If you want to install this mod only in one world create the folder worldmods/ in your world directory. +For further information or help see: http://wiki.minetest.com/wiki/Installing_Mods + +How to use the mod: +========================================================================================================================== +Just install it an everything should work. + +Mod Information +========================================================================================================================== +Version: 0.1 +Required Minetest Version: >=0.4.12 +Dependencies: default, default:tnt, mesecon (https://forum.minetest.net/viewtopic.php?f=11&t=628&hilit=mesecon) +Soft Dependencies: (none) +Highly Recommended: (none) +Craft Recipies: (none) +Git Repo: https://github.com/TomasJLuis/mt-slimes-redone + +Modders/Developers +========================================================================================================================= +If you are a modder, you should know that I've never used LUA before. this is my first mod for Mintetest, and I've used +this mod to learn how to mod on Minetest. So may be you will find a code full of mistakes and bad practices... ;P +If you spot someting that can/must be improved/changed/removed and want to help me to improve this mode and my knowledge, +please tell me here: https://forum.minetest.net/viewtopic.php?f=9&t=11743&p=175186#p175186 +Thank you! + +Version history +========================================================================================================================== +0.1 - Initial release + +Copyright and Licensing +========================================================================================================================== + +- Author: Tomas J. Luis + +- Original sound for slime damage by RandomationPictures under licence CC0 1.0. +http://www.freesound.org/people/RandomationPictures/sounds/138481/ + +- Original sounds for slime jump, land and death by Dr. Minky under licence CC BY 3.0. +http://www.freesound.org/people/DrMinky/sounds/ + +- Source code and images by Tomas J. Luis under WTFPL. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + + + + + + +******************************************************************************* + +Original "simple mobs" README follows + +=== MOBS-MOD for MINETEST-C55 === +by PilzAdam + +Inroduction: +This mod adds some basic hostile and friendly mobs to the game. + +How to install: +Unzip the archive an place it in minetest-base-directory/mods/minetest/ +if you have a windows client or a linux run-in-place client. If you have +a linux system-wide instalation place it in ~/.minetest/mods/minetest/. +If you want to install this mod only in one world create the folder +worldmods/ in your worlddirectory. +For further information or help see: +http://wiki.minetest.com/wiki/Installing_Mods + +How to use the mod: +See https://github.com/PilzAdam/mobs/wiki + +For developers: +The API documentation is moved to https://github.com/PilzAdam/mobs/wiki/API + +License: +Sourcecode: WTFPL (see below) +Grahpics: WTFPL (see below) +Models: WTFPL (by Pavel_S, see below) + +See also: +http://minetest.net/ + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + + Copyright (C) 2004 Sam Hocevar + + Everyone is permitted to copy and distribute verbatim or modified + copies of this license document, and changing it is allowed as long + as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. + + + diff --git a/mods/mobs_mc/mod.conf b/mods/mobs_mc/mod.conf new file mode 100644 index 000000000..cd4f98c75 --- /dev/null +++ b/mods/mobs_mc/mod.conf @@ -0,0 +1 @@ +name = mobs_mc diff --git a/mods/mobs_mc/models/3d_armor_character.b3d b/mods/mobs_mc/models/3d_armor_character.b3d new file mode 100644 index 000000000..278956b0c Binary files /dev/null and b/mods/mobs_mc/models/3d_armor_character.b3d differ diff --git a/mods/mobs_mc/models/mobs_chicken.x b/mods/mobs_mc/models/mobs_chicken.x new file mode 100644 index 000000000..8c267e3d7 --- /dev/null +++ b/mods/mobs_mc/models/mobs_chicken.x @@ -0,0 +1,6032 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Chicken_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Chicken_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Chicken_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 4.589765, 2.530680, 1.000000;; + } + Frame Chicken_Rig_Head { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000005, 0.000000, + 0.000000, 0.999933, 0.011550, 0.000000, + -0.000005,-0.011550, 0.999933, 0.000000, + 0.023066, 4.738051, 2.665740, 1.000000;; + } + } // End of Chicken_Rig_Head + Frame Chicken_Rig_Leg_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.961346, 2.540998,-1.666857, 1.000000;; + } + } // End of Chicken_Rig_Leg_L + Frame Chicken_Rig_Leg_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.929329, 2.540998,-1.666857, 1.000000;; + } + } // End of Chicken_Rig_Leg_R + Frame Chicken_Rig_Wing_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -2.118756, 2.519446, 1.774359, 1.000000;; + } + } // End of Chicken_Rig_Wing_L + Frame Chicken_Rig_Wing_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 2.086739, 2.519446, 1.774359, 1.000000;; + } + } // End of Chicken_Rig_Wing_R + } // End of Chicken_Rig_Body + } // End of Chicken_Rig_Root + Frame Chicken { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Chicken mesh + 160; + -1.946891;-2.595855; 6.529420;, + -1.946891; 2.595855; 6.529420;, + -1.946891; 2.595855; 2.635638;, + -1.946891;-2.595855; 2.635638;, + -1.946891; 2.595855; 6.529420;, + 1.946891; 2.595855; 6.529420;, + 1.946891; 2.595855; 2.635638;, + -1.946891; 2.595855; 2.635638;, + 1.946891; 2.595855; 6.529420;, + 1.946891;-2.595855; 6.529420;, + 1.946891;-2.595855; 2.635638;, + 1.946891; 2.595855; 2.635638;, + 1.946891;-2.595855; 6.529420;, + -1.946891;-2.595855; 6.529420;, + -1.946891;-2.595855; 2.635638;, + 1.946891;-2.595855; 2.635638;, + -1.946891;-2.595855; 2.635638;, + -1.946891; 2.595855; 2.635638;, + 1.946891; 2.595855; 2.635638;, + 1.946891;-2.595855; 2.635638;, + 1.946891;-2.595855; 6.529420;, + 1.946891; 2.595855; 6.529420;, + -1.946891; 2.595855; 6.529420;, + -1.946891;-2.595855; 6.529420;, + -2.595855;-1.946891; 6.529420;, + -2.595855; 1.946891; 6.529420;, + -2.595855; 1.946891; 3.933565;, + -2.595855;-1.946891; 3.933565;, + -2.595855; 1.946891; 6.529420;, + -1.946891; 1.946891; 6.529420;, + -1.946891; 1.946891; 3.933565;, + -2.595855; 1.946891; 3.933565;, + -1.946891; 1.946891; 6.529420;, + -1.946891;-1.946891; 6.529420;, + -1.946891;-1.946891; 3.933565;, + -1.946891; 1.946891; 3.933565;, + -1.946891;-1.946891; 6.529420;, + -2.595855;-1.946891; 6.529420;, + -2.595855;-1.946891; 3.933565;, + -1.946891;-1.946891; 3.933565;, + -2.595855;-1.946891; 3.933565;, + -2.595855; 1.946891; 3.933565;, + -1.946891; 1.946891; 3.933565;, + -1.946891;-1.946891; 3.933565;, + -1.946891;-1.946891; 6.529420;, + -1.946891; 1.946891; 6.529420;, + -2.595855; 1.946891; 6.529420;, + -2.595855;-1.946891; 6.529420;, + 1.946891;-1.946891; 6.529420;, + 2.595855;-1.946891; 6.529420;, + 2.595855; 1.946891; 6.529420;, + 1.946891; 1.946891; 6.529420;, + 1.946891;-1.946891; 6.529420;, + 1.946891;-1.946891; 3.933565;, + 2.595855;-1.946891; 3.933565;, + 2.595855;-1.946891; 6.529420;, + 1.946891; 1.946891; 6.529420;, + 1.946891; 1.946891; 3.933565;, + 1.946891;-1.946891; 3.933565;, + 1.946891;-1.946891; 6.529420;, + 2.595855; 1.946891; 6.529420;, + 2.595855; 1.946891; 3.933565;, + 1.946891; 1.946891; 3.933565;, + 1.946891; 1.946891; 6.529420;, + 2.595855;-1.946891; 6.529420;, + 2.595855;-1.946891; 3.933565;, + 2.595855; 1.946891; 3.933565;, + 2.595855; 1.946891; 6.529420;, + -1.297927; 1.946891; 9.125275;, + -1.297927; 3.893782; 9.125275;, + -1.297927; 3.893782; 5.231493;, + -1.297927; 1.946891; 5.231493;, + -1.297927; 3.893782; 9.125275;, + 1.297927; 3.893782; 9.125275;, + 1.297927; 3.893782; 5.231493;, + -1.297927; 3.893782; 5.231493;, + 1.297927; 3.893782; 9.125275;, + 1.297927; 1.946891; 9.125275;, + 1.297927; 1.946891; 5.231493;, + 1.297927; 3.893782; 5.231493;, + 1.297927; 1.946891; 9.125275;, + -1.297927; 1.946891; 9.125275;, + -1.297927; 1.946891; 5.231493;, + 1.297927; 1.946891; 5.231493;, + -1.297927; 1.946891; 5.231493;, + -1.297927; 3.893782; 5.231493;, + 1.297927; 3.893782; 5.231493;, + 1.297927; 1.946891; 5.231493;, + 1.297927; 1.946891; 9.125275;, + 1.297927; 3.893782; 9.125275;, + -1.297927; 3.893782; 9.125275;, + -1.297927; 1.946891; 9.125275;, + -1.297927; 3.893782; 7.827348;, + -1.297927; 5.191710; 7.827348;, + -1.297927; 5.191710; 6.529420;, + -1.297927; 3.893782; 6.529420;, + -1.297927; 5.191710; 7.827348;, + 1.297927; 5.191710; 7.827348;, + 1.297927; 5.191710; 6.529420;, + -1.297927; 5.191710; 6.529420;, + 1.297927; 5.191710; 7.827348;, + 1.297927; 3.893782; 7.827348;, + 1.297927; 3.893782; 6.529420;, + 1.297927; 5.191710; 6.529420;, + -1.297927; 3.893782; 6.529420;, + -1.297927; 5.191710; 6.529420;, + 1.297927; 5.191710; 6.529420;, + 1.297927; 3.893782; 6.529420;, + 1.297927; 3.893782; 7.827348;, + 1.297927; 5.191710; 7.827348;, + -1.297927; 5.191710; 7.827348;, + -1.297927; 3.893782; 7.827348;, + -0.648964; 3.893782; 6.529420;, + -0.648964; 4.542746; 6.529420;, + -0.648964; 4.542746; 5.231493;, + -0.648964; 3.893782; 5.231493;, + -0.648964; 4.542746; 6.529420;, + 0.648964; 4.542746; 6.529420;, + 0.648964; 4.542746; 5.231493;, + -0.648964; 4.542746; 5.231493;, + 0.648964; 4.542746; 6.529420;, + 0.648964; 3.893782; 6.529420;, + 0.648964; 3.893782; 5.231493;, + 0.648964; 4.542746; 5.231493;, + -0.648964; 3.893782; 5.231493;, + -0.648964; 4.542746; 5.231493;, + 0.648964; 4.542746; 5.231493;, + 0.648964; 3.893782; 5.231493;, + 0.000000;-0.000000; 2.635638;, + 1.946891;-0.000000; 2.635638;, + 1.946891; 0.000000; 0.039783;, + 0.000000; 0.000000; 0.039783;, + 0.000000; 0.000000; 0.039783;, + 1.946891; 0.000000; 0.039783;, + 1.946891; 1.297928; 0.039783;, + 0.000000; 1.297928; 0.039783;, + 0.000000;-0.024173; 2.613479;, + 0.000000;-0.024173; 0.017624;, + 1.946891;-0.024173; 0.017624;, + 1.946891;-0.024173; 2.613479;, + 0.000000;-0.024173; 0.017624;, + 0.000000; 1.273754; 0.017624;, + 1.946891; 1.273754; 0.017624;, + 1.946891;-0.024173; 0.017624;, + -1.946891;-0.000000; 2.635638;, + -0.000000;-0.000000; 2.635638;, + -0.000000; 0.000000; 0.039783;, + -1.946891; 0.000000; 0.039783;, + -1.946891; 0.000000; 0.039783;, + -0.000000; 0.000000; 0.039783;, + -0.000000; 1.297928; 0.039783;, + -1.946891; 1.297928; 0.039783;, + -1.946891;-0.024173; 2.613479;, + -1.946891;-0.024173; 0.017624;, + -0.000000;-0.024173; 0.017624;, + -0.000000;-0.024173; 2.613479;, + -1.946891;-0.024173; 0.017624;, + -1.946891; 1.273754; 0.017624;, + -0.000000; 1.273754; 0.017624;, + -0.000000;-0.024173; 0.017624;; + 40; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;, + 4;147,146,145,144;, + 4;151,150,149,148;, + 4;155,154,153,152;, + 4;159,158,157,156;; + MeshTextureCoords { // Chicken UV coordinates + 160; + 0.281250; 0.468750;, + 0.281250; 0.718750;, + 0.375000; 0.718750;, + 0.375000; 0.468750;, + 0.187500; 0.281250;, + 0.093750; 0.281250;, + 0.093750; 0.468750;, + 0.187500; 0.468750;, + 0.187500; 0.718750;, + 0.187500; 0.468750;, + 0.093750; 0.468750;, + 0.093750; 0.718750;, + 0.187500; 0.468750;, + 0.281250; 0.468750;, + 0.281250; 0.281250;, + 0.187500; 0.281250;, + 0.000000; 0.468750;, + 0.000000; 0.718750;, + 0.093750; 0.718750;, + 0.093750; 0.468750;, + 0.093750; 0.468750;, + 0.093750; 0.718750;, + 0.187500; 0.718750;, + 0.187500; 0.468750;, + 0.500000; 0.718750;, + 0.593750; 0.718750;, + 0.593750; 0.593750;, + 0.500000; 0.593750;, + 0.500000; 0.593750;, + 0.468750; 0.593750;, + 0.468750; 0.718750;, + 0.500000; 0.718750;, + 0.375000; 0.718750;, + 0.468750; 0.718750;, + 0.468750; 0.593750;, + 0.375000; 0.593750;, + 0.375000; 0.593750;, + 0.343750; 0.593750;, + 0.343750; 0.718750;, + 0.375000; 0.718750;, + 0.468750; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.406250;, + 0.468750; 0.406250;, + 0.468750; 0.500000;, + 0.468750; 0.593750;, + 0.500000; 0.593750;, + 0.500000; 0.500000;, + 0.468750; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.593750;, + 0.468750; 0.593750;, + 0.375000; 0.593750;, + 0.375000; 0.718750;, + 0.343750; 0.718750;, + 0.343750; 0.593750;, + 0.375000; 0.718750;, + 0.375000; 0.593750;, + 0.468750; 0.593750;, + 0.468750; 0.718750;, + 0.500000; 0.593750;, + 0.500000; 0.718750;, + 0.468750; 0.718750;, + 0.468750; 0.593750;, + 0.500000; 0.718750;, + 0.500000; 0.593750;, + 0.593750; 0.593750;, + 0.593750; 0.718750;, + 0.164062; 0.093750;, + 0.109375; 0.093750;, + 0.109375; 0.281250;, + 0.164062; 0.281250;, + 0.109375; 0.093750;, + 0.046875; 0.093750;, + 0.046875; 0.281250;, + 0.109375; 0.281250;, + 0.046875; 0.093750;, + 0.000000; 0.093750;, + 0.000000; 0.281250;, + 0.046875; 0.281250;, + 0.218750; 0.093750;, + 0.164062; 0.093750;, + 0.164062; 0.281250;, + 0.218750; 0.281250;, + 0.046875; 0.000000;, + 0.046875; 0.093750;, + 0.109375; 0.093750;, + 0.109375; 0.000000;, + 0.046875; 0.000000;, + 0.046875; 0.093750;, + 0.109375; 0.093750;, + 0.109375; 0.000000;, + 0.343750; 0.062500;, + 0.312500; 0.062500;, + 0.312500; 0.125000;, + 0.343750; 0.125000;, + 0.312500; 0.062500;, + 0.250000; 0.062500;, + 0.250000; 0.125000;, + 0.312500; 0.125000;, + 0.250000; 0.062500;, + 0.218750; 0.062500;, + 0.218750; 0.125000;, + 0.250000; 0.125000;, + 0.343750; 0.062500;, + 0.343750; 0.125000;, + 0.406250; 0.125000;, + 0.406250; 0.062500;, + 0.250000; 0.000000;, + 0.250000; 0.062500;, + 0.312500; 0.062500;, + 0.312500; 0.000000;, + 0.218750; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.187500;, + 0.218750; 0.187500;, + 0.250000; 0.250000;, + 0.312500; 0.250000;, + 0.312500; 0.187500;, + 0.250000; 0.187500;, + 0.312500; 0.250000;, + 0.343750; 0.250000;, + 0.343750; 0.187500;, + 0.312500; 0.187500;, + 0.250000; 0.125000;, + 0.250000; 0.187500;, + 0.312500; 0.187500;, + 0.312500; 0.125000;, + 0.539062; 0.250000;, + 0.601562; 0.250000;, + 0.601562; 0.093750;, + 0.539062; 0.093750;, + 0.500000; 0.093750;, + 0.546875; 0.093750;, + 0.546875; 0.000000;, + 0.500000; 0.000000;, + 0.539062; 0.250000;, + 0.539062; 0.093750;, + 0.601562; 0.093750;, + 0.601562; 0.250000;, + 0.500000; 0.093750;, + 0.500000; 0.000000;, + 0.546875; 0.000000;, + 0.546875; 0.093750;, + 0.539062; 0.250000;, + 0.601562; 0.250000;, + 0.601562; 0.093750;, + 0.539062; 0.093750;, + 0.500000; 0.093750;, + 0.546875; 0.093750;, + 0.546875; 0.000000;, + 0.500000; 0.000000;, + 0.539062; 0.250000;, + 0.539062; 0.093750;, + 0.601562; 0.093750;, + 0.601562; 0.250000;, + 0.500000; 0.093750;, + 0.500000; 0.000000;, + 0.546875; 0.000000;, + 0.546875; 0.093750;; + } // End of Chicken UV coordinates + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Chicken_Rig_Leg_R"; + 16; + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -0.929329, 2.922908,-0.010320, 1.000000;; + } // End of Chicken_Rig_Leg_R skin weights + SkinWeights { + "Chicken_Rig_Body"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 2.530679,-4.589765, 1.000000;; + } // End of Chicken_Rig_Body skin weights + SkinWeights { + "Chicken_Rig_Wing_L"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 2.118756, 6.364124, 0.011232, 1.000000;; + } // End of Chicken_Rig_Wing_L skin weights + SkinWeights { + "Chicken_Rig_Root"; + 0; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } // End of Chicken_Rig_Root skin weights + SkinWeights { + "Chicken_Rig_Wing_R"; + 20; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -2.086739, 6.364124, 0.011231, 1.000000;; + } // End of Chicken_Rig_Wing_R skin weights + SkinWeights { + "Chicken_Rig_Leg_L"; + 16; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 0.961346, 2.922908,-0.010319, 1.000000;; + } // End of Chicken_Rig_Leg_L skin weights + SkinWeights { + "Chicken_Rig_Head"; + 60; + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000,-0.000005, 0.000000, + -0.000000, 0.999933,-0.011550, 0.000000, + 0.000005, 0.011550, 0.999933, 0.000000, + -0.023102,-2.291026,-7.229526, 1.000000;; + } // End of Chicken_Rig_Head skin weights + } // End of Chicken mesh + } // End of Chicken + } // End of Chicken_Rig +} // End of Root +AnimationSet Global { + Animation { + {Chicken} + AnimationKey { // Rotation + 0; + 187; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Chicken_Rig} + AnimationKey { // Rotation + 0; + 187; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Chicken_Rig_Root} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 158;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 159;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 160;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 163;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 164;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 165;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 166;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 167;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Chicken_Rig_Body} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 24;4;-0.707100,-0.707100, 0.000762,-0.000762;;, + 25;4;-0.707081,-0.707081, 0.002981,-0.002981;;, + 26;4;-0.707053,-0.707053, 0.006170,-0.006170;;, + 27;4;-0.707025,-0.707025, 0.009360,-0.009360;;, + 28;4;-0.707006,-0.707006, 0.011578,-0.011578;;, + 29;4;-0.706999,-0.706999, 0.012341,-0.012341;;, + 30;4;-0.707006,-0.707006, 0.011859,-0.011859;;, + 31;4;-0.707025,-0.707025, 0.010366,-0.010366;;, + 32;4;-0.707053,-0.707053, 0.007977,-0.007977;;, + 33;4;-0.707081,-0.707081, 0.005120,-0.005120;;, + 34;4;-0.707100,-0.707100, 0.002338,-0.002338;;, + 35;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 36;4;-0.707100,-0.707100,-0.002338, 0.002338;;, + 37;4;-0.707081,-0.707081,-0.005120, 0.005120;;, + 38;4;-0.707053,-0.707053,-0.007977, 0.007977;;, + 39;4;-0.707025,-0.707025,-0.010366, 0.010366;;, + 40;4;-0.707006,-0.707006,-0.011859, 0.011859;;, + 41;4;-0.706999,-0.706999,-0.012341, 0.012341;;, + 42;4;-0.707003,-0.707003,-0.011912, 0.011912;;, + 43;4;-0.707014,-0.707014,-0.010634, 0.010634;;, + 44;4;-0.707032,-0.707032,-0.008622, 0.008622;;, + 45;4;-0.707053,-0.707053,-0.006170, 0.006170;;, + 46;4;-0.707074,-0.707074,-0.003719, 0.003719;;, + 47;4;-0.707092,-0.707092,-0.001707, 0.001707;;, + 48;4;-0.707103,-0.707103,-0.000428, 0.000428;;, + 49;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 158;4;-0.697709,-0.697709,-0.022721, 0.022721;;, + 159;4;-0.669912,-0.669912,-0.089865, 0.089865;;, + 160;4;-0.627567,-0.627567,-0.192064, 0.192064;;, + 161;4;-0.579540,-0.579540,-0.307936, 0.307936;;, + 162;4;-0.537195,-0.537195,-0.410135, 0.410135;;, + 163;4;-0.509398,-0.509398,-0.477279, 0.477279;;, + 164;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 165;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 166;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 167;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 168;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 169;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 170;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 171;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 172;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 173;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 174;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 175;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 176;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 177;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 178;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 179;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 180;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 181;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 182;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 183;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 184;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 185;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 186;4;-0.707107,-0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 4.589765, 2.530680;;, + 1;3; 0.000000, 4.589765, 2.530680;;, + 2;3; 0.000000, 4.589765, 2.530680;;, + 3;3; 0.000000, 4.589765, 2.530680;;, + 4;3; 0.000000, 4.589765, 2.530680;;, + 5;3; 0.000000, 4.589765, 2.530680;;, + 6;3; 0.000000, 4.589765, 2.530680;;, + 7;3; 0.000000, 4.589765, 2.530680;;, + 8;3; 0.000000, 4.589765, 2.530680;;, + 9;3; 0.000000, 4.589765, 2.530680;;, + 10;3; 0.000000, 4.589765, 2.530680;;, + 11;3; 0.000000, 4.589765, 2.530680;;, + 12;3; 0.000000, 4.589765, 2.530680;;, + 13;3; 0.000000, 4.589765, 2.530680;;, + 14;3; 0.000000, 4.589765, 2.530680;;, + 15;3; 0.000000, 4.589765, 2.530680;;, + 16;3; 0.000000, 4.589765, 2.530680;;, + 17;3; 0.000000, 4.589765, 2.530680;;, + 18;3; 0.000000, 4.589765, 2.530680;;, + 19;3; 0.000000, 4.589765, 2.530680;;, + 20;3; 0.000000, 4.589765, 2.530680;;, + 21;3; 0.000000, 4.589765, 2.530680;;, + 22;3; 0.000000, 4.589765, 2.530680;;, + 23;3; 0.000000, 4.589765, 2.530680;;, + 24;3; 0.000000, 4.589765, 2.530680;;, + 25;3; 0.000000, 4.589765, 2.530680;;, + 26;3; 0.000000, 4.589765, 2.530680;;, + 27;3; 0.000000, 4.589765, 2.530680;;, + 28;3; 0.000000, 4.589765, 2.530680;;, + 29;3; 0.000000, 4.589765, 2.530680;;, + 30;3; 0.000000, 4.589765, 2.530680;;, + 31;3; 0.000000, 4.589765, 2.530680;;, + 32;3; 0.000000, 4.589765, 2.530680;;, + 33;3; 0.000000, 4.589765, 2.530680;;, + 34;3; 0.000000, 4.589765, 2.530680;;, + 35;3; 0.000000, 4.589765, 2.530680;;, + 36;3; 0.000000, 4.589765, 2.530680;;, + 37;3; 0.000000, 4.589765, 2.530680;;, + 38;3; 0.000000, 4.589765, 2.530680;;, + 39;3; 0.000000, 4.589765, 2.530680;;, + 40;3; 0.000000, 4.589765, 2.530680;;, + 41;3; 0.000000, 4.589765, 2.530680;;, + 42;3; 0.000000, 4.589765, 2.530680;;, + 43;3; 0.000000, 4.589765, 2.530680;;, + 44;3; 0.000000, 4.589765, 2.530680;;, + 45;3; 0.000000, 4.589765, 2.530680;;, + 46;3; 0.000000, 4.589765, 2.530680;;, + 47;3; 0.000000, 4.589765, 2.530680;;, + 48;3; 0.000000, 4.589765, 2.530680;;, + 49;3; 0.000000, 4.589765, 2.530680;;, + 50;3; 0.000000, 4.589765, 2.530680;;, + 51;3; 0.000000, 4.589765, 2.530680;;, + 52;3; 0.000000, 4.589765, 2.530680;;, + 53;3; 0.000000, 4.589765, 2.530680;;, + 54;3; 0.000000, 4.589765, 2.530680;;, + 55;3; 0.000000, 4.589765, 2.530680;;, + 56;3; 0.000000, 4.589765, 2.530680;;, + 57;3; 0.000000, 4.589765, 2.530680;;, + 58;3; 0.000000, 4.589765, 2.530680;;, + 59;3; 0.000000, 4.589765, 2.530680;;, + 60;3; 0.000000, 4.589765, 2.530680;;, + 61;3; 0.000000, 4.589765, 2.530680;;, + 62;3; 0.000000, 4.589765, 2.530680;;, + 63;3; 0.000000, 4.589765, 2.530680;;, + 64;3; 0.000000, 4.589765, 2.530680;;, + 65;3; 0.000000, 4.589765, 2.530680;;, + 66;3; 0.000000, 4.589765, 2.530680;;, + 67;3; 0.000000, 4.589765, 2.530680;;, + 68;3; 0.000000, 4.589765, 2.530680;;, + 69;3; 0.000000, 4.589765, 2.530680;;, + 70;3; 0.000000, 4.589765, 2.530680;;, + 71;3; 0.000000, 4.589765, 2.530680;;, + 72;3; 0.000000, 4.589765, 2.530680;;, + 73;3; 0.000000, 4.589765, 2.530680;;, + 74;3; 0.000000, 4.589765, 2.530680;;, + 75;3; 0.000000, 4.589765, 2.530680;;, + 76;3; 0.000000, 4.589765, 2.530680;;, + 77;3; 0.000000, 4.589765, 2.530680;;, + 78;3; 0.000000, 4.589765, 2.530680;;, + 79;3; 0.000000, 4.589765, 2.530680;;, + 80;3; 0.000000, 4.589765, 2.530680;;, + 81;3; 0.000000, 4.589765, 2.530680;;, + 82;3; 0.000000, 4.589765, 2.530680;;, + 83;3; 0.000000, 4.589765, 2.530680;;, + 84;3; 0.000000, 4.589765, 2.530680;;, + 85;3; 0.000000, 4.589765, 2.530680;;, + 86;3; 0.000000, 4.589765, 2.530680;;, + 87;3; 0.000000, 4.589765, 2.530680;;, + 88;3; 0.000000, 4.589765, 2.530680;;, + 89;3; 0.000000, 4.589765, 2.530680;;, + 90;3; 0.000000, 4.589765, 2.530680;;, + 91;3; 0.000000, 4.589765, 2.530680;;, + 92;3; 0.000000, 4.589765, 2.530680;;, + 93;3; 0.000000, 4.589765, 2.530680;;, + 94;3; 0.000000, 4.589765, 2.530680;;, + 95;3; 0.000000, 4.589765, 2.530680;;, + 96;3; 0.000000, 4.589765, 2.530680;;, + 97;3; 0.000000, 4.589765, 2.530680;;, + 98;3; 0.000000, 4.589765, 2.530680;;, + 99;3; 0.000000, 4.589765, 2.530680;;, + 100;3; 0.000000, 4.589765, 2.530680;;, + 101;3; 0.000000, 4.589765, 2.530680;;, + 102;3; 0.000000, 4.589765, 2.530680;;, + 103;3; 0.000000, 4.589765, 2.530680;;, + 104;3; 0.000000, 4.589765, 2.530680;;, + 105;3; 0.000000, 4.589765, 2.530680;;, + 106;3; 0.000000, 4.589765, 2.530680;;, + 107;3; 0.000000, 4.589765, 2.530680;;, + 108;3; 0.000000, 4.589765, 2.530680;;, + 109;3; 0.000000, 4.589765, 2.530680;;, + 110;3; 0.000000, 4.589765, 2.530680;;, + 111;3; 0.000000, 4.589765, 2.530680;;, + 112;3; 0.000000, 4.589765, 2.530680;;, + 113;3; 0.000000, 4.589765, 2.530680;;, + 114;3; 0.000000, 4.589765, 2.530680;;, + 115;3; 0.000000, 4.589765, 2.530680;;, + 116;3; 0.000000, 4.589765, 2.530680;;, + 117;3; 0.000000, 4.589765, 2.530680;;, + 118;3; 0.000000, 4.589765, 2.530680;;, + 119;3; 0.000000, 5.109843, 2.530680;;, + 120;3; 0.000000, 5.652986, 2.530680;;, + 121;3; 0.000000, 6.140355, 2.530680;;, + 122;3; 0.000000, 6.532629, 2.530680;;, + 123;3; 0.000000, 6.796481, 2.530680;;, + 124;3; 0.000000, 6.894445, 2.530680;;, + 125;3; 0.000000, 6.814487, 2.530680;;, + 126;3; 0.000000, 6.576533, 2.530680;;, + 127;3; 0.000000, 6.202688, 2.530680;;, + 128;3; 0.000000, 5.747106, 2.530680;;, + 129;3; 0.000000, 5.289946, 2.530680;;, + 130;3; 0.000000, 4.912464, 2.530680;;, + 131;3; 0.000000, 4.671092, 2.530680;;, + 132;3; 0.000000, 4.589765, 2.530680;;, + 133;3; 0.000000, 4.589695, 2.530680;;, + 134;3; 0.000000, 4.589505, 2.530680;;, + 135;3; 0.000000, 4.589216, 2.530680;;, + 136;3; 0.000000, 4.588846, 2.530680;;, + 137;3; 0.000000, 4.588412, 2.530680;;, + 138;3; 0.000000, 4.587926, 2.530680;;, + 139;3; 0.000000, 4.587400, 2.530680;;, + 140;3; 0.000000, 4.586846, 2.530680;;, + 141;3; 0.000000, 4.586274, 2.530680;;, + 142;3; 0.000000, 4.585695, 2.530680;;, + 143;3; 0.000000, 4.585120, 2.530680;;, + 144;3; 0.000000, 4.584562, 2.530680;;, + 145;3; 0.000000, 4.584034, 2.530680;;, + 146;3; 0.000000, 4.583553, 2.530680;;, + 147;3; 0.000000, 4.583138, 2.530680;;, + 148;3; 0.000000, 4.582817, 2.530680;;, + 149;3; 0.000000, 4.582625, 2.530680;;, + 150;3; 0.000000, 4.582618, 2.530680;;, + 151;3; 0.000000, 4.582884, 2.530680;;, + 152;3; 0.000000, 4.583592, 2.530680;;, + 153;3; 0.000000, 4.585151, 2.530680;;, + 154;3; 0.000000, 4.589765, 2.530680;;, + 155;3; 0.000000, 5.211860, 2.530680;;, + 156;3; 0.000000, 6.172811, 2.530680;;, + 157;3; 0.000000, 6.589765, 2.530680;;, + 158;3;-0.011618, 6.432237, 2.530680;;, + 159;3;-0.045986, 6.043316, 2.530680;;, + 160;3;-0.098343, 5.494419, 2.530680;;, + 161;3;-0.157725, 4.820900, 2.530680;;, + 162;3;-0.210081, 4.039096, 2.530680;;, + 163;3;-0.244449, 3.146622, 2.530680;;, + 164;3;-0.256067, 1.997082, 2.530680;;, + 165;3;-0.256067, 1.997082, 2.530680;;, + 166;3;-0.256067, 1.997082, 2.530680;;, + 167;3;-0.256067, 1.997082, 2.530680;;, + 168;3;-0.256067, 1.997082, 2.530680;;, + 169;3;-0.256067, 1.997082, 2.530680;;, + 170;3;-0.256067, 1.997082, 2.530680;;, + 171;3;-0.256067, 1.997082, 2.530680;;, + 172;3;-0.256067, 1.997082, 2.530680;;, + 173;3;-0.256067, 1.997082, 2.530680;;, + 174;3;-0.256067, 1.997082, 2.530680;;, + 175;3;-0.256067, 1.997082, 2.530680;;, + 176;3;-0.256067, 1.997082, 2.530680;;, + 177;3;-0.256067, 1.997082, 2.530680;;, + 178;3;-0.256067, 1.997082, 2.530680;;, + 179;3;-0.256067, 1.997082, 2.530680;;, + 180;3; 0.000000, 4.589765, 2.530680;;, + 181;3; 0.000000, 4.589765, 2.530680;;, + 182;3; 0.000000, 4.589765, 2.530680;;, + 183;3; 0.000000, 4.589765, 2.530680;;, + 184;3; 0.000000, 4.589765, 2.530680;;, + 185;3; 0.000000, 4.589765, 2.530680;;, + 186;3; 0.000000, 4.589765, 2.530680;;; + } + } + Animation { + {Chicken_Rig_Wing_L} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 25;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 26;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 27;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 28;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 29;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 30;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 31;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 32;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 33;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 34;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 37;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 38;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 39;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 40;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 41;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 42;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 43;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 44;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 45;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 46;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 47;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 48;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.705621,-0.705621, 0.016985, 0.016985;;, + 120;4;-0.701736,-0.701735, 0.061401, 0.061401;;, + 121;4;-0.697850,-0.697850, 0.105810, 0.105810;;, + 122;4;-0.696364,-0.696364, 0.122788, 0.122788;;, + 123;4;-0.697850,-0.697850, 0.105808, 0.105808;;, + 124;4;-0.701736,-0.701735, 0.061395, 0.061395;;, + 125;4;-0.705621,-0.705621, 0.016980, 0.016980;;, + 126;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 127;4;-0.704512,-0.704512, 0.029661, 0.029660;;, + 128;4;-0.698959,-0.698959, 0.093128, 0.093128;;, + 129;4;-0.696364,-0.696364, 0.122788, 0.122788;;, + 130;4;-0.698959,-0.698959, 0.093134, 0.093134;;, + 131;4;-0.704512,-0.704512, 0.029672, 0.029672;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.704512,-0.704512, 0.029672, 0.029672;;, + 156;4;-0.698959,-0.698959, 0.093134, 0.093134;;, + 157;4;-0.696364,-0.696364, 0.122788, 0.122788;;, + 158;4;-0.698959,-0.698959, 0.093134, 0.093134;;, + 159;4;-0.704512,-0.704512, 0.029672, 0.029672;;, + 160;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 161;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 162;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 163;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 164;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 165;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 166;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 167;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 168;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 169;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 170;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 171;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 172;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 173;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 174;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 175;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 176;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 177;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 178;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 179;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.645022,-0.642479, 0.131930, 0.135562;;, + 182;4;-0.512487,-0.504502, 0.411339, 0.422743;;, + 183;4;-0.450577,-0.440049, 0.541674, 0.556711;;, + 184;4;-0.512322,-0.504337, 0.412768, 0.424173;;, + 185;4;-0.644670,-0.642127, 0.135056, 0.138688;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3;-2.118756, 2.519446, 1.774359;;, + 1;3;-2.118756, 2.519446, 1.774359;;, + 2;3;-2.118756, 2.519446, 1.774359;;, + 3;3;-2.118756, 2.519446, 1.774359;;, + 4;3;-2.118756, 2.519446, 1.774359;;, + 5;3;-2.118756, 2.519446, 1.774359;;, + 6;3;-2.118756, 2.519446, 1.774359;;, + 7;3;-2.118756, 2.519446, 1.774359;;, + 8;3;-2.118756, 2.519446, 1.774359;;, + 9;3;-2.118756, 2.519446, 1.774359;;, + 10;3;-2.118756, 2.519446, 1.774359;;, + 11;3;-2.118756, 2.519446, 1.774359;;, + 12;3;-2.118756, 2.519446, 1.774359;;, + 13;3;-2.118756, 2.519446, 1.774359;;, + 14;3;-2.118756, 2.519446, 1.774359;;, + 15;3;-2.118756, 2.519446, 1.774359;;, + 16;3;-2.118756, 2.519446, 1.774359;;, + 17;3;-2.118756, 2.519446, 1.774359;;, + 18;3;-2.118756, 2.519446, 1.774359;;, + 19;3;-2.118756, 2.519446, 1.774359;;, + 20;3;-2.118756, 2.519446, 1.774359;;, + 21;3;-2.118756, 2.519446, 1.774359;;, + 22;3;-2.118756, 2.519446, 1.774359;;, + 23;3;-2.118756, 2.519446, 1.774359;;, + 24;3;-2.118756, 2.519446, 1.774359;;, + 25;3;-2.118756, 2.519447, 1.774359;;, + 26;3;-2.118756, 2.519447, 1.774360;;, + 27;3;-2.118756, 2.519447, 1.774359;;, + 28;3;-2.118756, 2.519446, 1.774360;;, + 29;3;-2.118756, 2.519446, 1.774359;;, + 30;3;-2.118756, 2.519447, 1.774359;;, + 31;3;-2.118756, 2.519446, 1.774359;;, + 32;3;-2.118756, 2.519447, 1.774359;;, + 33;3;-2.118756, 2.519446, 1.774359;;, + 34;3;-2.118756, 2.519447, 1.774359;;, + 35;3;-2.118756, 2.519446, 1.774359;;, + 36;3;-2.118756, 2.519447, 1.774359;;, + 37;3;-2.118756, 2.519446, 1.774359;;, + 38;3;-2.118756, 2.519447, 1.774359;;, + 39;3;-2.118756, 2.519446, 1.774359;;, + 40;3;-2.118756, 2.519447, 1.774360;;, + 41;3;-2.118756, 2.519446, 1.774359;;, + 42;3;-2.118756, 2.519447, 1.774359;;, + 43;3;-2.118756, 2.519447, 1.774359;;, + 44;3;-2.118756, 2.519447, 1.774359;;, + 45;3;-2.118756, 2.519447, 1.774359;;, + 46;3;-2.118756, 2.519446, 1.774359;;, + 47;3;-2.118756, 2.519447, 1.774359;;, + 48;3;-2.118756, 2.519446, 1.774359;;, + 49;3;-2.118756, 2.519446, 1.774359;;, + 50;3;-2.118756, 2.519446, 1.774359;;, + 51;3;-2.118756, 2.519446, 1.774359;;, + 52;3;-2.118756, 2.519446, 1.774359;;, + 53;3;-2.118756, 2.519446, 1.774359;;, + 54;3;-2.118756, 2.519446, 1.774359;;, + 55;3;-2.118756, 2.519446, 1.774359;;, + 56;3;-2.118756, 2.519446, 1.774359;;, + 57;3;-2.118756, 2.519446, 1.774359;;, + 58;3;-2.118756, 2.519446, 1.774359;;, + 59;3;-2.118756, 2.519446, 1.774359;;, + 60;3;-2.118756, 2.519446, 1.774359;;, + 61;3;-2.118756, 2.519446, 1.774359;;, + 62;3;-2.118756, 2.519446, 1.774359;;, + 63;3;-2.118756, 2.519446, 1.774359;;, + 64;3;-2.118756, 2.519446, 1.774359;;, + 65;3;-2.118756, 2.519446, 1.774359;;, + 66;3;-2.118756, 2.519446, 1.774359;;, + 67;3;-2.118756, 2.519446, 1.774359;;, + 68;3;-2.118756, 2.519446, 1.774359;;, + 69;3;-2.118756, 2.519446, 1.774359;;, + 70;3;-2.118756, 2.519446, 1.774359;;, + 71;3;-2.118756, 2.519446, 1.774359;;, + 72;3;-2.118756, 2.519446, 1.774359;;, + 73;3;-2.118756, 2.519446, 1.774359;;, + 74;3;-2.118756, 2.519446, 1.774359;;, + 75;3;-2.118756, 2.519446, 1.774359;;, + 76;3;-2.118756, 2.519446, 1.774359;;, + 77;3;-2.118756, 2.519446, 1.774359;;, + 78;3;-2.118756, 2.519446, 1.774359;;, + 79;3;-2.118756, 2.519446, 1.774359;;, + 80;3;-2.118756, 2.519446, 1.774359;;, + 81;3;-2.118756, 2.519446, 1.774359;;, + 82;3;-2.118756, 2.519446, 1.774359;;, + 83;3;-2.118756, 2.519446, 1.774359;;, + 84;3;-2.118756, 2.519446, 1.774359;;, + 85;3;-2.118756, 2.519446, 1.774359;;, + 86;3;-2.118756, 2.519446, 1.774359;;, + 87;3;-2.118756, 2.519446, 1.774359;;, + 88;3;-2.118756, 2.519446, 1.774359;;, + 89;3;-2.118756, 2.519446, 1.774359;;, + 90;3;-2.118756, 2.519446, 1.774359;;, + 91;3;-2.118756, 2.519446, 1.774359;;, + 92;3;-2.118756, 2.519446, 1.774359;;, + 93;3;-2.118756, 2.519446, 1.774359;;, + 94;3;-2.118756, 2.519446, 1.774359;;, + 95;3;-2.118756, 2.519446, 1.774359;;, + 96;3;-2.118756, 2.519446, 1.774359;;, + 97;3;-2.118756, 2.519446, 1.774359;;, + 98;3;-2.118756, 2.519446, 1.774359;;, + 99;3;-2.118756, 2.519446, 1.774359;;, + 100;3;-2.118756, 2.519446, 1.774359;;, + 101;3;-2.118756, 2.519446, 1.774359;;, + 102;3;-2.118756, 2.519446, 1.774359;;, + 103;3;-2.118756, 2.519446, 1.774359;;, + 104;3;-2.118756, 2.519446, 1.774359;;, + 105;3;-2.118756, 2.519446, 1.774359;;, + 106;3;-2.118756, 2.519446, 1.774359;;, + 107;3;-2.118756, 2.519446, 1.774359;;, + 108;3;-2.118756, 2.519446, 1.774359;;, + 109;3;-2.118756, 2.519446, 1.774359;;, + 110;3;-2.118756, 2.519446, 1.774359;;, + 111;3;-2.118756, 2.519446, 1.774359;;, + 112;3;-2.118756, 2.519446, 1.774359;;, + 113;3;-2.118756, 2.519446, 1.774359;;, + 114;3;-2.118756, 2.519446, 1.774359;;, + 115;3;-2.118756, 2.519446, 1.774359;;, + 116;3;-2.118756, 2.519446, 1.774359;;, + 117;3;-2.118756, 2.519446, 1.774359;;, + 118;3;-2.118756, 2.519446, 1.774359;;, + 119;3;-2.118756, 2.519446, 1.774359;;, + 120;3;-2.118756, 2.519446, 1.774359;;, + 121;3;-2.118756, 2.519446, 1.774359;;, + 122;3;-2.118756, 2.519446, 1.774359;;, + 123;3;-2.118756, 2.519446, 1.774360;;, + 124;3;-2.118756, 2.519446, 1.774359;;, + 125;3;-2.118756, 2.519446, 1.774360;;, + 126;3;-2.118756, 2.519446, 1.774360;;, + 127;3;-2.118756, 2.519446, 1.774359;;, + 128;3;-2.118756, 2.519446, 1.774359;;, + 129;3;-2.118756, 2.519446, 1.774359;;, + 130;3;-2.118756, 2.519446, 1.774359;;, + 131;3;-2.118756, 2.519446, 1.774359;;, + 132;3;-2.118756, 2.519446, 1.774359;;, + 133;3;-2.118756, 2.519446, 1.774359;;, + 134;3;-2.118756, 2.519446, 1.774359;;, + 135;3;-2.118756, 2.519446, 1.774359;;, + 136;3;-2.118756, 2.519446, 1.774359;;, + 137;3;-2.118756, 2.519446, 1.774359;;, + 138;3;-2.118756, 2.519446, 1.774359;;, + 139;3;-2.118756, 2.519446, 1.774359;;, + 140;3;-2.118756, 2.519446, 1.774359;;, + 141;3;-2.118756, 2.519446, 1.774359;;, + 142;3;-2.118756, 2.519446, 1.774359;;, + 143;3;-2.118756, 2.519446, 1.774359;;, + 144;3;-2.118756, 2.519446, 1.774359;;, + 145;3;-2.118756, 2.519446, 1.774359;;, + 146;3;-2.118756, 2.519446, 1.774359;;, + 147;3;-2.118756, 2.519446, 1.774359;;, + 148;3;-2.118756, 2.519446, 1.774359;;, + 149;3;-2.118756, 2.519446, 1.774359;;, + 150;3;-2.118756, 2.519446, 1.774359;;, + 151;3;-2.118756, 2.519446, 1.774359;;, + 152;3;-2.118756, 2.519446, 1.774359;;, + 153;3;-2.118756, 2.519446, 1.774359;;, + 154;3;-2.118756, 2.519446, 1.774359;;, + 155;3;-2.118756, 2.519446, 1.774359;;, + 156;3;-2.118756, 2.519446, 1.774359;;, + 157;3;-2.118756, 2.519446, 1.774360;;, + 158;3;-2.118756, 2.519446, 1.774360;;, + 159;3;-2.118756, 2.519446, 1.774359;;, + 160;3;-2.118756, 2.519447, 1.774359;;, + 161;3;-2.118756, 2.519446, 1.774359;;, + 162;3;-2.118756, 2.519446, 1.774359;;, + 163;3;-2.118756, 2.519446, 1.774359;;, + 164;3;-2.118756, 2.519446, 1.774359;;, + 165;3;-2.118756, 2.519446, 1.774359;;, + 166;3;-2.118756, 2.519446, 1.774359;;, + 167;3;-2.118756, 2.519446, 1.774359;;, + 168;3;-2.118756, 2.519446, 1.774359;;, + 169;3;-2.118756, 2.519446, 1.774359;;, + 170;3;-2.118756, 2.519446, 1.774359;;, + 171;3;-2.118756, 2.519446, 1.774359;;, + 172;3;-2.118756, 2.519446, 1.774359;;, + 173;3;-2.118756, 2.519446, 1.774359;;, + 174;3;-2.118756, 2.519446, 1.774359;;, + 175;3;-2.118756, 2.519446, 1.774359;;, + 176;3;-2.118756, 2.519446, 1.774359;;, + 177;3;-2.118756, 2.519446, 1.774359;;, + 178;3;-2.118756, 2.519446, 1.774359;;, + 179;3;-2.118756, 2.519446, 1.774359;;, + 180;3;-2.118756, 2.519446, 1.774359;;, + 181;3;-2.118756, 2.519446, 1.774359;;, + 182;3;-2.118756, 2.519446, 1.774359;;, + 183;3;-2.118756, 2.519446, 1.774359;;, + 184;3;-2.118756, 2.519446, 1.774359;;, + 185;3;-2.118756, 2.519446, 1.774359;;, + 186;3;-2.118756, 2.519446, 1.774359;;; + } + } + Animation { + {Chicken_Rig_Leg_L} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.673113,-0.736384, 0.001105,-0.001104;;, + 156;4;-0.605738,-0.793670, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.584339,-0.805459, 0.004091,-0.004091;;, + 159;4;-0.619108,-0.768325, 0.003516,-0.003516;;, + 160;4;-0.673035,-0.712704, 0.002640,-0.002640;;, + 161;4;-0.734659,-0.650059, 0.001646,-0.001646;;, + 162;4;-0.789210,-0.595028, 0.000770,-0.000770;;, + 163;4;-0.825105,-0.558981, 0.000195,-0.000194;;, + 164;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 165;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 166;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 167;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 168;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 169;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 170;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 171;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 172;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 173;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 174;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 175;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 176;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 177;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 178;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 179;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 182;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 183;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 184;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 185;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3;-0.961346, 2.540998,-1.666857;;, + 1;3;-0.961346, 2.540998,-1.666857;;, + 2;3;-0.961346, 2.540998,-1.666857;;, + 3;3;-0.961346, 2.540998,-1.666857;;, + 4;3;-0.961346, 2.540998,-1.666857;;, + 5;3;-0.961346, 2.540998,-1.666857;;, + 6;3;-0.961346, 2.540998,-1.666857;;, + 7;3;-0.961346, 2.540998,-1.666857;;, + 8;3;-0.961346, 2.540998,-1.666857;;, + 9;3;-0.961346, 2.540998,-1.666857;;, + 10;3;-0.961346, 2.540998,-1.666857;;, + 11;3;-0.961346, 2.540998,-1.666857;;, + 12;3;-0.961346, 2.540998,-1.666857;;, + 13;3;-0.961346, 2.540998,-1.666857;;, + 14;3;-0.961346, 2.540998,-1.666857;;, + 15;3;-0.961346, 2.540998,-1.666857;;, + 16;3;-0.961346, 2.540998,-1.666857;;, + 17;3;-0.961346, 2.540998,-1.666857;;, + 18;3;-0.961346, 2.540998,-1.666857;;, + 19;3;-0.961346, 2.540998,-1.666857;;, + 20;3;-0.961346, 2.540998,-1.666857;;, + 21;3;-0.961346, 2.540998,-1.666857;;, + 22;3;-0.961346, 2.540998,-1.666857;;, + 23;3;-0.961346, 2.540998,-1.666857;;, + 24;3;-0.961347, 2.540998,-1.666857;;, + 25;3;-0.961347, 2.540998,-1.666857;;, + 26;3;-0.961347, 2.540998,-1.666857;;, + 27;3;-0.961346, 2.540998,-1.666857;;, + 28;3;-0.961346, 2.540998,-1.666857;;, + 29;3;-0.961346, 2.540998,-1.666857;;, + 30;3;-0.961346, 2.540998,-1.666857;;, + 31;3;-0.961346, 2.540998,-1.666857;;, + 32;3;-0.961346, 2.540998,-1.666857;;, + 33;3;-0.961346, 2.540998,-1.666857;;, + 34;3;-0.961347, 2.540998,-1.666857;;, + 35;3;-0.961346, 2.540998,-1.666857;;, + 36;3;-0.961346, 2.540998,-1.666857;;, + 37;3;-0.961347, 2.540998,-1.666857;;, + 38;3;-0.961347, 2.540998,-1.666857;;, + 39;3;-0.961346, 2.540998,-1.666857;;, + 40;3;-0.961347, 2.540998,-1.666857;;, + 41;3;-0.961347, 2.540998,-1.666857;;, + 42;3;-0.961346, 2.540998,-1.666857;;, + 43;3;-0.961347, 2.540998,-1.666857;;, + 44;3;-0.961347, 2.540999,-1.666857;;, + 45;3;-0.961346, 2.540998,-1.666857;;, + 46;3;-0.961347, 2.540998,-1.666857;;, + 47;3;-0.961347, 2.540998,-1.666857;;, + 48;3;-0.961346, 2.540998,-1.666857;;, + 49;3;-0.961346, 2.540998,-1.666857;;, + 50;3;-0.961346, 2.540998,-1.666857;;, + 51;3;-0.961346, 2.540998,-1.666857;;, + 52;3;-0.961346, 2.540998,-1.666857;;, + 53;3;-0.961346, 2.540998,-1.666857;;, + 54;3;-0.961346, 2.540998,-1.666857;;, + 55;3;-0.961346, 2.540998,-1.666857;;, + 56;3;-0.961346, 2.540998,-1.666857;;, + 57;3;-0.961346, 2.540998,-1.666857;;, + 58;3;-0.961346, 2.540998,-1.666857;;, + 59;3;-0.961346, 2.540998,-1.666857;;, + 60;3;-0.961346, 2.540998,-1.666857;;, + 61;3;-0.961346, 2.540998,-1.666857;;, + 62;3;-0.961346, 2.540998,-1.666857;;, + 63;3;-0.961346, 2.540998,-1.666857;;, + 64;3;-0.961346, 2.540998,-1.666857;;, + 65;3;-0.961346, 2.540998,-1.666857;;, + 66;3;-0.961346, 2.540998,-1.666857;;, + 67;3;-0.961346, 2.540998,-1.666857;;, + 68;3;-0.961346, 2.540998,-1.666857;;, + 69;3;-0.961346, 2.540998,-1.666857;;, + 70;3;-0.961346, 2.540998,-1.666857;;, + 71;3;-0.961346, 2.540998,-1.666857;;, + 72;3;-0.961346, 2.540998,-1.666857;;, + 73;3;-0.961346, 2.540998,-1.666857;;, + 74;3;-0.961346, 2.540998,-1.666857;;, + 75;3;-0.961346, 2.540998,-1.666857;;, + 76;3;-0.961346, 2.540998,-1.666857;;, + 77;3;-0.961346, 2.540998,-1.666857;;, + 78;3;-0.961346, 2.540998,-1.666857;;, + 79;3;-0.961346, 2.540998,-1.666857;;, + 80;3;-0.961346, 2.540998,-1.666857;;, + 81;3;-0.961346, 2.540998,-1.666857;;, + 82;3;-0.961346, 2.540998,-1.666857;;, + 83;3;-0.961346, 2.540998,-1.666857;;, + 84;3;-0.961346, 2.540998,-1.666857;;, + 85;3;-0.961346, 2.540998,-1.666857;;, + 86;3;-0.961346, 2.540998,-1.666857;;, + 87;3;-0.961346, 2.540998,-1.666857;;, + 88;3;-0.961346, 2.540998,-1.666857;;, + 89;3;-0.961346, 2.540998,-1.666857;;, + 90;3;-0.961346, 2.540998,-1.666857;;, + 91;3;-0.961346, 2.540998,-1.666857;;, + 92;3;-0.961346, 2.540998,-1.666857;;, + 93;3;-0.961346, 2.540998,-1.666857;;, + 94;3;-0.961346, 2.540998,-1.666857;;, + 95;3;-0.961346, 2.540998,-1.666857;;, + 96;3;-0.961346, 2.540998,-1.666857;;, + 97;3;-0.961346, 2.540998,-1.666857;;, + 98;3;-0.961346, 2.540998,-1.666857;;, + 99;3;-0.961346, 2.540998,-1.666857;;, + 100;3;-0.961346, 2.540998,-1.666857;;, + 101;3;-0.961346, 2.540998,-1.666857;;, + 102;3;-0.961346, 2.540998,-1.666857;;, + 103;3;-0.961346, 2.540998,-1.666857;;, + 104;3;-0.961346, 2.540998,-1.666857;;, + 105;3;-0.961346, 2.540998,-1.666857;;, + 106;3;-0.961346, 2.540998,-1.666857;;, + 107;3;-0.961346, 2.540998,-1.666857;;, + 108;3;-0.961346, 2.540998,-1.666857;;, + 109;3;-0.961346, 2.540998,-1.666857;;, + 110;3;-0.961346, 2.540998,-1.666857;;, + 111;3;-0.961346, 2.540998,-1.666857;;, + 112;3;-0.961346, 2.540998,-1.666857;;, + 113;3;-0.961346, 2.540998,-1.666857;;, + 114;3;-0.961346, 2.540998,-1.666857;;, + 115;3;-0.961346, 2.540998,-1.666857;;, + 116;3;-0.961346, 2.540998,-1.666857;;, + 117;3;-0.961346, 2.540998,-1.666857;;, + 118;3;-0.961346, 2.540998,-1.666857;;, + 119;3;-0.961346, 2.540998,-1.666857;;, + 120;3;-0.961346, 2.540998,-1.666857;;, + 121;3;-0.961346, 2.540998,-1.666857;;, + 122;3;-0.961346, 2.540998,-1.666857;;, + 123;3;-0.961346, 2.540998,-1.666857;;, + 124;3;-0.961346, 2.540998,-1.666857;;, + 125;3;-0.961346, 2.540998,-1.666857;;, + 126;3;-0.961346, 2.540998,-1.666857;;, + 127;3;-0.961346, 2.540998,-1.666857;;, + 128;3;-0.961346, 2.540998,-1.666857;;, + 129;3;-0.961346, 2.540998,-1.666857;;, + 130;3;-0.961346, 2.540998,-1.666857;;, + 131;3;-0.961346, 2.540998,-1.666857;;, + 132;3;-0.961346, 2.540998,-1.666857;;, + 133;3;-0.961346, 2.540998,-1.666857;;, + 134;3;-0.961346, 2.540998,-1.666857;;, + 135;3;-0.961346, 2.540998,-1.666857;;, + 136;3;-0.961346, 2.540998,-1.666857;;, + 137;3;-0.961346, 2.540998,-1.666857;;, + 138;3;-0.961346, 2.540998,-1.666857;;, + 139;3;-0.961346, 2.540998,-1.666857;;, + 140;3;-0.961346, 2.540998,-1.666857;;, + 141;3;-0.961346, 2.540998,-1.666857;;, + 142;3;-0.961346, 2.540998,-1.666857;;, + 143;3;-0.961346, 2.540998,-1.666857;;, + 144;3;-0.961346, 2.540998,-1.666857;;, + 145;3;-0.961346, 2.540998,-1.666857;;, + 146;3;-0.961346, 2.540998,-1.666857;;, + 147;3;-0.961346, 2.540998,-1.666857;;, + 148;3;-0.961346, 2.540998,-1.666857;;, + 149;3;-0.961346, 2.540998,-1.666857;;, + 150;3;-0.961346, 2.540998,-1.666857;;, + 151;3;-0.961346, 2.540998,-1.666857;;, + 152;3;-0.961346, 2.540998,-1.666857;;, + 153;3;-0.961346, 2.540998,-1.666857;;, + 154;3;-0.961346, 2.540998,-1.666857;;, + 155;3;-0.961346, 2.540998,-1.666857;;, + 156;3;-0.961346, 2.540998,-1.666857;;, + 157;3;-0.961346, 2.540998,-1.666857;;, + 158;3;-0.961347, 2.540998,-1.666857;;, + 159;3;-0.961347, 2.540998,-1.666856;;, + 160;3;-0.961347, 2.540998,-1.666857;;, + 161;3;-0.961347, 2.540998,-1.666857;;, + 162;3;-0.961346, 2.540998,-1.666857;;, + 163;3;-0.961347, 2.540998,-1.666857;;, + 164;3;-0.961346, 2.540998,-1.666857;;, + 165;3;-0.961346, 2.540998,-1.666857;;, + 166;3;-0.961346, 2.540998,-1.666857;;, + 167;3;-0.961346, 2.540998,-1.666857;;, + 168;3;-0.961346, 2.540998,-1.666857;;, + 169;3;-0.961346, 2.540998,-1.666857;;, + 170;3;-0.961346, 2.540998,-1.666857;;, + 171;3;-0.961346, 2.540998,-1.666857;;, + 172;3;-0.961346, 2.540998,-1.666857;;, + 173;3;-0.961346, 2.540998,-1.666857;;, + 174;3;-0.961346, 2.540998,-1.666857;;, + 175;3;-0.961346, 2.540998,-1.666857;;, + 176;3;-0.961346, 2.540998,-1.666857;;, + 177;3;-0.961346, 2.540998,-1.666857;;, + 178;3;-0.961346, 2.540998,-1.666857;;, + 179;3;-0.961346, 2.540998,-1.666857;;, + 180;3;-0.961346, 2.540998,-1.666857;;, + 181;3;-0.961346, 2.540998,-1.666857;;, + 182;3;-0.961346, 2.540998,-1.666857;;, + 183;3;-0.961346, 2.540998,-1.666857;;, + 184;3;-0.961346, 2.540998,-1.666857;;, + 185;3;-0.961346, 2.540998,-1.666857;;, + 186;3;-0.961346, 2.540998,-1.666857;;; + } + } + Animation { + {Chicken_Rig_Wing_R} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 25;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 26;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 27;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 28;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 29;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 30;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 31;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 32;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 33;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 34;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 37;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 38;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 39;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 40;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 41;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 42;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 43;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 44;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 45;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 46;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 47;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 48;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.705621,-0.705621,-0.016985,-0.016985;;, + 120;4;-0.701736,-0.701735,-0.061401,-0.061401;;, + 121;4;-0.697850,-0.697850,-0.105810,-0.105810;;, + 122;4;-0.696364,-0.696364,-0.122788,-0.122788;;, + 123;4;-0.697850,-0.697850,-0.105808,-0.105808;;, + 124;4;-0.701736,-0.701735,-0.061395,-0.061395;;, + 125;4;-0.705621,-0.705621,-0.016980,-0.016980;;, + 126;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 127;4;-0.704512,-0.704512,-0.029660,-0.029661;;, + 128;4;-0.698959,-0.698959,-0.093128,-0.093128;;, + 129;4;-0.696364,-0.696364,-0.122788,-0.122788;;, + 130;4;-0.698959,-0.698959,-0.093134,-0.093134;;, + 131;4;-0.704512,-0.704512,-0.029672,-0.029672;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.704512,-0.704512,-0.029672,-0.029672;;, + 156;4;-0.698959,-0.698959,-0.093134,-0.093134;;, + 157;4;-0.696364,-0.696364,-0.122788,-0.122788;;, + 158;4;-0.698959,-0.698959,-0.093134,-0.093134;;, + 159;4;-0.704512,-0.704512,-0.029672,-0.029672;;, + 160;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 161;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 162;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 163;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 164;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 165;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 166;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 167;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 168;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 169;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 170;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 171;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 172;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 173;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 174;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 175;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 176;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 177;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 178;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 179;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.634897,-0.638737,-0.137836,-0.140525;;, + 182;4;-0.480809,-0.492866,-0.429525,-0.437968;;, + 183;4;-0.408837,-0.424734,-0.565569,-0.576702;;, + 184;4;-0.480585,-0.492642,-0.431122,-0.439566;;, + 185;4;-0.634417,-0.638257,-0.141337,-0.144026;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 2.086739, 2.519446, 1.774359;;, + 1;3; 2.086739, 2.519446, 1.774359;;, + 2;3; 2.086739, 2.519446, 1.774359;;, + 3;3; 2.086739, 2.519446, 1.774359;;, + 4;3; 2.086739, 2.519446, 1.774359;;, + 5;3; 2.086739, 2.519446, 1.774359;;, + 6;3; 2.086739, 2.519446, 1.774359;;, + 7;3; 2.086739, 2.519446, 1.774359;;, + 8;3; 2.086739, 2.519446, 1.774359;;, + 9;3; 2.086739, 2.519446, 1.774359;;, + 10;3; 2.086739, 2.519446, 1.774359;;, + 11;3; 2.086739, 2.519446, 1.774359;;, + 12;3; 2.086739, 2.519446, 1.774359;;, + 13;3; 2.086739, 2.519446, 1.774359;;, + 14;3; 2.086739, 2.519446, 1.774359;;, + 15;3; 2.086739, 2.519446, 1.774359;;, + 16;3; 2.086739, 2.519446, 1.774359;;, + 17;3; 2.086739, 2.519446, 1.774359;;, + 18;3; 2.086739, 2.519446, 1.774359;;, + 19;3; 2.086739, 2.519446, 1.774359;;, + 20;3; 2.086739, 2.519446, 1.774359;;, + 21;3; 2.086739, 2.519446, 1.774359;;, + 22;3; 2.086739, 2.519446, 1.774359;;, + 23;3; 2.086739, 2.519446, 1.774359;;, + 24;3; 2.086739, 2.519446, 1.774359;;, + 25;3; 2.086739, 2.519447, 1.774359;;, + 26;3; 2.086739, 2.519447, 1.774359;;, + 27;3; 2.086739, 2.519447, 1.774359;;, + 28;3; 2.086738, 2.519446, 1.774359;;, + 29;3; 2.086738, 2.519446, 1.774359;;, + 30;3; 2.086739, 2.519447, 1.774360;;, + 31;3; 2.086738, 2.519446, 1.774359;;, + 32;3; 2.086738, 2.519447, 1.774359;;, + 33;3; 2.086738, 2.519446, 1.774359;;, + 34;3; 2.086739, 2.519447, 1.774359;;, + 35;3; 2.086739, 2.519446, 1.774359;;, + 36;3; 2.086739, 2.519447, 1.774359;;, + 37;3; 2.086739, 2.519446, 1.774359;;, + 38;3; 2.086739, 2.519447, 1.774359;;, + 39;3; 2.086739, 2.519446, 1.774359;;, + 40;3; 2.086739, 2.519447, 1.774360;;, + 41;3; 2.086739, 2.519446, 1.774359;;, + 42;3; 2.086739, 2.519447, 1.774360;;, + 43;3; 2.086739, 2.519447, 1.774359;;, + 44;3; 2.086739, 2.519447, 1.774359;;, + 45;3; 2.086739, 2.519447, 1.774359;;, + 46;3; 2.086739, 2.519446, 1.774359;;, + 47;3; 2.086739, 2.519447, 1.774359;;, + 48;3; 2.086739, 2.519446, 1.774359;;, + 49;3; 2.086739, 2.519446, 1.774359;;, + 50;3; 2.086739, 2.519446, 1.774359;;, + 51;3; 2.086739, 2.519446, 1.774359;;, + 52;3; 2.086739, 2.519446, 1.774359;;, + 53;3; 2.086739, 2.519446, 1.774359;;, + 54;3; 2.086739, 2.519446, 1.774359;;, + 55;3; 2.086739, 2.519446, 1.774359;;, + 56;3; 2.086739, 2.519446, 1.774359;;, + 57;3; 2.086739, 2.519446, 1.774359;;, + 58;3; 2.086739, 2.519446, 1.774359;;, + 59;3; 2.086739, 2.519446, 1.774359;;, + 60;3; 2.086739, 2.519446, 1.774359;;, + 61;3; 2.086739, 2.519446, 1.774359;;, + 62;3; 2.086739, 2.519446, 1.774359;;, + 63;3; 2.086739, 2.519446, 1.774359;;, + 64;3; 2.086739, 2.519446, 1.774359;;, + 65;3; 2.086739, 2.519446, 1.774359;;, + 66;3; 2.086739, 2.519446, 1.774359;;, + 67;3; 2.086739, 2.519446, 1.774359;;, + 68;3; 2.086739, 2.519446, 1.774359;;, + 69;3; 2.086739, 2.519446, 1.774359;;, + 70;3; 2.086739, 2.519446, 1.774359;;, + 71;3; 2.086739, 2.519446, 1.774359;;, + 72;3; 2.086739, 2.519446, 1.774359;;, + 73;3; 2.086739, 2.519446, 1.774359;;, + 74;3; 2.086739, 2.519446, 1.774359;;, + 75;3; 2.086739, 2.519446, 1.774359;;, + 76;3; 2.086739, 2.519446, 1.774359;;, + 77;3; 2.086739, 2.519446, 1.774359;;, + 78;3; 2.086739, 2.519446, 1.774359;;, + 79;3; 2.086739, 2.519446, 1.774359;;, + 80;3; 2.086739, 2.519446, 1.774359;;, + 81;3; 2.086739, 2.519446, 1.774359;;, + 82;3; 2.086739, 2.519446, 1.774359;;, + 83;3; 2.086739, 2.519446, 1.774359;;, + 84;3; 2.086739, 2.519446, 1.774359;;, + 85;3; 2.086739, 2.519446, 1.774359;;, + 86;3; 2.086739, 2.519446, 1.774359;;, + 87;3; 2.086739, 2.519446, 1.774359;;, + 88;3; 2.086739, 2.519446, 1.774359;;, + 89;3; 2.086739, 2.519446, 1.774359;;, + 90;3; 2.086739, 2.519446, 1.774359;;, + 91;3; 2.086739, 2.519446, 1.774359;;, + 92;3; 2.086739, 2.519446, 1.774359;;, + 93;3; 2.086739, 2.519446, 1.774359;;, + 94;3; 2.086739, 2.519446, 1.774359;;, + 95;3; 2.086739, 2.519446, 1.774359;;, + 96;3; 2.086739, 2.519446, 1.774359;;, + 97;3; 2.086739, 2.519446, 1.774359;;, + 98;3; 2.086739, 2.519446, 1.774359;;, + 99;3; 2.086739, 2.519446, 1.774359;;, + 100;3; 2.086739, 2.519446, 1.774359;;, + 101;3; 2.086739, 2.519446, 1.774359;;, + 102;3; 2.086739, 2.519446, 1.774359;;, + 103;3; 2.086739, 2.519446, 1.774359;;, + 104;3; 2.086739, 2.519446, 1.774359;;, + 105;3; 2.086739, 2.519446, 1.774359;;, + 106;3; 2.086739, 2.519446, 1.774359;;, + 107;3; 2.086739, 2.519446, 1.774359;;, + 108;3; 2.086739, 2.519446, 1.774359;;, + 109;3; 2.086739, 2.519446, 1.774359;;, + 110;3; 2.086739, 2.519446, 1.774359;;, + 111;3; 2.086739, 2.519446, 1.774359;;, + 112;3; 2.086739, 2.519446, 1.774359;;, + 113;3; 2.086739, 2.519446, 1.774359;;, + 114;3; 2.086739, 2.519446, 1.774359;;, + 115;3; 2.086739, 2.519446, 1.774359;;, + 116;3; 2.086739, 2.519446, 1.774359;;, + 117;3; 2.086739, 2.519446, 1.774359;;, + 118;3; 2.086739, 2.519446, 1.774359;;, + 119;3; 2.086739, 2.519446, 1.774359;;, + 120;3; 2.086739, 2.519446, 1.774359;;, + 121;3; 2.086739, 2.519446, 1.774359;;, + 122;3; 2.086739, 2.519446, 1.774359;;, + 123;3; 2.086739, 2.519446, 1.774360;;, + 124;3; 2.086739, 2.519446, 1.774359;;, + 125;3; 2.086739, 2.519446, 1.774360;;, + 126;3; 2.086739, 2.519446, 1.774360;;, + 127;3; 2.086739, 2.519446, 1.774359;;, + 128;3; 2.086739, 2.519446, 1.774359;;, + 129;3; 2.086739, 2.519446, 1.774359;;, + 130;3; 2.086739, 2.519446, 1.774359;;, + 131;3; 2.086739, 2.519446, 1.774359;;, + 132;3; 2.086739, 2.519446, 1.774359;;, + 133;3; 2.086739, 2.519446, 1.774359;;, + 134;3; 2.086739, 2.519446, 1.774359;;, + 135;3; 2.086739, 2.519446, 1.774359;;, + 136;3; 2.086739, 2.519446, 1.774359;;, + 137;3; 2.086739, 2.519446, 1.774359;;, + 138;3; 2.086739, 2.519446, 1.774359;;, + 139;3; 2.086739, 2.519446, 1.774359;;, + 140;3; 2.086739, 2.519446, 1.774359;;, + 141;3; 2.086739, 2.519446, 1.774359;;, + 142;3; 2.086739, 2.519446, 1.774359;;, + 143;3; 2.086739, 2.519446, 1.774359;;, + 144;3; 2.086739, 2.519446, 1.774359;;, + 145;3; 2.086739, 2.519446, 1.774359;;, + 146;3; 2.086739, 2.519446, 1.774359;;, + 147;3; 2.086739, 2.519446, 1.774359;;, + 148;3; 2.086739, 2.519446, 1.774359;;, + 149;3; 2.086739, 2.519446, 1.774359;;, + 150;3; 2.086739, 2.519446, 1.774359;;, + 151;3; 2.086739, 2.519446, 1.774359;;, + 152;3; 2.086739, 2.519446, 1.774359;;, + 153;3; 2.086739, 2.519446, 1.774359;;, + 154;3; 2.086739, 2.519446, 1.774359;;, + 155;3; 2.086739, 2.519446, 1.774359;;, + 156;3; 2.086739, 2.519446, 1.774359;;, + 157;3; 2.086739, 2.519446, 1.774360;;, + 158;3; 2.086738, 2.519446, 1.774359;;, + 159;3; 2.086739, 2.519446, 1.774359;;, + 160;3; 2.086738, 2.519446, 1.774359;;, + 161;3; 2.086739, 2.519446, 1.774359;;, + 162;3; 2.086739, 2.519446, 1.774359;;, + 163;3; 2.086739, 2.519447, 1.774359;;, + 164;3; 2.086739, 2.519446, 1.774359;;, + 165;3; 2.086739, 2.519446, 1.774359;;, + 166;3; 2.086739, 2.519446, 1.774359;;, + 167;3; 2.086739, 2.519446, 1.774359;;, + 168;3; 2.086739, 2.519446, 1.774359;;, + 169;3; 2.086739, 2.519446, 1.774359;;, + 170;3; 2.086739, 2.519446, 1.774359;;, + 171;3; 2.086739, 2.519446, 1.774359;;, + 172;3; 2.086739, 2.519446, 1.774359;;, + 173;3; 2.086739, 2.519446, 1.774359;;, + 174;3; 2.086739, 2.519446, 1.774359;;, + 175;3; 2.086739, 2.519446, 1.774359;;, + 176;3; 2.086739, 2.519446, 1.774359;;, + 177;3; 2.086739, 2.519446, 1.774359;;, + 178;3; 2.086739, 2.519446, 1.774359;;, + 179;3; 2.086739, 2.519446, 1.774359;;, + 180;3; 2.086739, 2.519446, 1.774359;;, + 181;3; 2.086739, 2.519446, 1.774359;;, + 182;3; 2.086739, 2.519446, 1.774359;;, + 183;3; 2.086739, 2.519446, 1.774359;;, + 184;3; 2.086739, 2.519446, 1.774359;;, + 185;3; 2.086739, 2.519446, 1.774359;;, + 186;3; 2.086739, 2.519446, 1.774359;;; + } + } + Animation { + {Chicken_Rig_Leg_R} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000592, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736581,-0.673310,-0.001104, 0.001104;;, + 156;4;-0.794066,-0.606133,-0.003281, 0.003281;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.806071,-0.582196, 0.001740, 0.008347;;, + 159;4;-0.772261,-0.612138, 0.019566, 0.020361;;, + 160;4;-0.722162,-0.659169, 0.046724, 0.038666;;, + 161;4;-0.666001,-0.713186, 0.077528, 0.059428;;, + 162;4;-0.616789,-0.761127, 0.104686, 0.077733;;, + 163;4;-0.584604,-0.792720, 0.122512, 0.089747;;, + 164;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 165;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 166;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 167;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 168;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 169;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 170;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 171;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 172;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 173;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 174;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 175;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 176;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 177;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 178;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 179;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 182;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 183;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 184;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 185;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.929329, 2.540998,-1.666857;;, + 1;3; 0.929329, 2.540998,-1.666857;;, + 2;3; 0.929329, 2.540998,-1.666857;;, + 3;3; 0.929329, 2.540998,-1.666857;;, + 4;3; 0.929329, 2.540998,-1.666857;;, + 5;3; 0.929329, 2.540998,-1.666857;;, + 6;3; 0.929329, 2.540998,-1.666857;;, + 7;3; 0.929329, 2.540998,-1.666857;;, + 8;3; 0.929329, 2.540998,-1.666857;;, + 9;3; 0.929329, 2.540998,-1.666857;;, + 10;3; 0.929329, 2.540998,-1.666857;;, + 11;3; 0.929329, 2.540998,-1.666857;;, + 12;3; 0.929329, 2.540998,-1.666857;;, + 13;3; 0.929329, 2.540998,-1.666857;;, + 14;3; 0.929329, 2.540998,-1.666857;;, + 15;3; 0.929329, 2.540998,-1.666857;;, + 16;3; 0.929329, 2.540998,-1.666857;;, + 17;3; 0.929329, 2.540998,-1.666857;;, + 18;3; 0.929329, 2.540998,-1.666857;;, + 19;3; 0.929329, 2.540998,-1.666857;;, + 20;3; 0.929329, 2.540998,-1.666857;;, + 21;3; 0.929329, 2.540998,-1.666857;;, + 22;3; 0.929329, 2.540998,-1.666857;;, + 23;3; 0.929329, 2.540998,-1.666857;;, + 24;3; 0.929329, 2.540998,-1.666857;;, + 25;3; 0.929329, 2.540998,-1.666857;;, + 26;3; 0.929329, 2.540998,-1.666857;;, + 27;3; 0.929329, 2.540998,-1.666857;;, + 28;3; 0.929329, 2.540998,-1.666857;;, + 29;3; 0.929329, 2.540998,-1.666857;;, + 30;3; 0.929329, 2.540998,-1.666857;;, + 31;3; 0.929329, 2.540998,-1.666857;;, + 32;3; 0.929329, 2.540998,-1.666857;;, + 33;3; 0.929329, 2.540998,-1.666857;;, + 34;3; 0.929329, 2.540998,-1.666857;;, + 35;3; 0.929329, 2.540998,-1.666857;;, + 36;3; 0.929329, 2.540998,-1.666857;;, + 37;3; 0.929329, 2.540998,-1.666857;;, + 38;3; 0.929329, 2.540998,-1.666857;;, + 39;3; 0.929329, 2.540998,-1.666857;;, + 40;3; 0.929329, 2.540998,-1.666857;;, + 41;3; 0.929329, 2.540998,-1.666857;;, + 42;3; 0.929329, 2.540998,-1.666857;;, + 43;3; 0.929329, 2.540998,-1.666857;;, + 44;3; 0.929329, 2.540999,-1.666857;;, + 45;3; 0.929329, 2.540998,-1.666857;;, + 46;3; 0.929329, 2.540998,-1.666857;;, + 47;3; 0.929329, 2.540998,-1.666857;;, + 48;3; 0.929329, 2.540998,-1.666857;;, + 49;3; 0.929329, 2.540998,-1.666857;;, + 50;3; 0.929329, 2.540998,-1.666857;;, + 51;3; 0.929329, 2.540998,-1.666857;;, + 52;3; 0.929329, 2.540998,-1.666857;;, + 53;3; 0.929329, 2.540998,-1.666857;;, + 54;3; 0.929329, 2.540998,-1.666857;;, + 55;3; 0.929329, 2.540998,-1.666857;;, + 56;3; 0.929329, 2.540998,-1.666857;;, + 57;3; 0.929329, 2.540998,-1.666857;;, + 58;3; 0.929329, 2.540998,-1.666857;;, + 59;3; 0.929329, 2.540998,-1.666857;;, + 60;3; 0.929329, 2.540998,-1.666857;;, + 61;3; 0.929329, 2.540998,-1.666857;;, + 62;3; 0.929329, 2.540998,-1.666857;;, + 63;3; 0.929329, 2.540998,-1.666857;;, + 64;3; 0.929329, 2.540998,-1.666857;;, + 65;3; 0.929329, 2.540998,-1.666857;;, + 66;3; 0.929329, 2.540998,-1.666857;;, + 67;3; 0.929329, 2.540998,-1.666857;;, + 68;3; 0.929329, 2.540998,-1.666857;;, + 69;3; 0.929329, 2.540998,-1.666857;;, + 70;3; 0.929329, 2.540998,-1.666857;;, + 71;3; 0.929329, 2.540998,-1.666857;;, + 72;3; 0.929329, 2.540998,-1.666857;;, + 73;3; 0.929329, 2.540998,-1.666857;;, + 74;3; 0.929329, 2.540998,-1.666857;;, + 75;3; 0.929329, 2.540998,-1.666857;;, + 76;3; 0.929329, 2.540998,-1.666857;;, + 77;3; 0.929329, 2.540998,-1.666857;;, + 78;3; 0.929329, 2.540998,-1.666857;;, + 79;3; 0.929329, 2.540998,-1.666857;;, + 80;3; 0.929329, 2.540998,-1.666857;;, + 81;3; 0.929329, 2.540998,-1.666857;;, + 82;3; 0.929329, 2.540998,-1.666857;;, + 83;3; 0.929329, 2.540998,-1.666857;;, + 84;3; 0.929329, 2.540998,-1.666857;;, + 85;3; 0.929329, 2.540998,-1.666857;;, + 86;3; 0.929329, 2.540998,-1.666857;;, + 87;3; 0.929329, 2.540998,-1.666857;;, + 88;3; 0.929329, 2.540998,-1.666857;;, + 89;3; 0.929329, 2.540998,-1.666857;;, + 90;3; 0.929329, 2.540998,-1.666857;;, + 91;3; 0.929329, 2.540998,-1.666857;;, + 92;3; 0.929329, 2.540998,-1.666857;;, + 93;3; 0.929329, 2.540998,-1.666857;;, + 94;3; 0.929329, 2.540998,-1.666857;;, + 95;3; 0.929329, 2.540998,-1.666857;;, + 96;3; 0.929329, 2.540998,-1.666857;;, + 97;3; 0.929329, 2.540998,-1.666857;;, + 98;3; 0.929329, 2.540998,-1.666857;;, + 99;3; 0.929329, 2.540998,-1.666857;;, + 100;3; 0.929329, 2.540998,-1.666857;;, + 101;3; 0.929329, 2.540998,-1.666857;;, + 102;3; 0.929329, 2.540998,-1.666857;;, + 103;3; 0.929329, 2.540998,-1.666857;;, + 104;3; 0.929329, 2.540998,-1.666857;;, + 105;3; 0.929329, 2.540998,-1.666857;;, + 106;3; 0.929329, 2.540998,-1.666857;;, + 107;3; 0.929329, 2.540998,-1.666857;;, + 108;3; 0.929329, 2.540998,-1.666857;;, + 109;3; 0.929329, 2.540998,-1.666857;;, + 110;3; 0.929329, 2.540998,-1.666857;;, + 111;3; 0.929329, 2.540998,-1.666857;;, + 112;3; 0.929329, 2.540998,-1.666857;;, + 113;3; 0.929329, 2.540998,-1.666857;;, + 114;3; 0.929329, 2.540998,-1.666857;;, + 115;3; 0.929329, 2.540998,-1.666857;;, + 116;3; 0.929329, 2.540998,-1.666857;;, + 117;3; 0.929329, 2.540998,-1.666857;;, + 118;3; 0.929329, 2.540998,-1.666857;;, + 119;3; 0.929329, 2.540998,-1.666857;;, + 120;3; 0.929329, 2.540998,-1.666857;;, + 121;3; 0.929329, 2.540998,-1.666857;;, + 122;3; 0.929329, 2.540998,-1.666857;;, + 123;3; 0.929329, 2.540998,-1.666857;;, + 124;3; 0.929329, 2.540998,-1.666857;;, + 125;3; 0.929329, 2.540998,-1.666857;;, + 126;3; 0.929329, 2.540998,-1.666857;;, + 127;3; 0.929329, 2.540998,-1.666857;;, + 128;3; 0.929329, 2.540998,-1.666857;;, + 129;3; 0.929329, 2.540998,-1.666857;;, + 130;3; 0.929329, 2.540998,-1.666857;;, + 131;3; 0.929329, 2.540998,-1.666857;;, + 132;3; 0.929329, 2.540998,-1.666857;;, + 133;3; 0.929329, 2.540998,-1.666857;;, + 134;3; 0.929329, 2.540998,-1.666857;;, + 135;3; 0.929329, 2.540998,-1.666857;;, + 136;3; 0.929329, 2.540998,-1.666857;;, + 137;3; 0.929329, 2.540998,-1.666857;;, + 138;3; 0.929329, 2.540998,-1.666857;;, + 139;3; 0.929329, 2.540998,-1.666857;;, + 140;3; 0.929329, 2.540998,-1.666857;;, + 141;3; 0.929329, 2.540998,-1.666857;;, + 142;3; 0.929329, 2.540998,-1.666857;;, + 143;3; 0.929329, 2.540998,-1.666857;;, + 144;3; 0.929329, 2.540998,-1.666857;;, + 145;3; 0.929329, 2.540998,-1.666857;;, + 146;3; 0.929329, 2.540998,-1.666857;;, + 147;3; 0.929329, 2.540998,-1.666857;;, + 148;3; 0.929329, 2.540998,-1.666857;;, + 149;3; 0.929329, 2.540998,-1.666857;;, + 150;3; 0.929329, 2.540998,-1.666857;;, + 151;3; 0.929329, 2.540998,-1.666857;;, + 152;3; 0.929329, 2.540998,-1.666857;;, + 153;3; 0.929329, 2.540998,-1.666857;;, + 154;3; 0.929329, 2.540998,-1.666857;;, + 155;3; 0.929329, 2.540998,-1.666857;;, + 156;3; 0.929329, 2.540998,-1.666857;;, + 157;3; 0.929329, 2.540998,-1.666857;;, + 158;3; 0.929329, 2.540998,-1.666856;;, + 159;3; 0.929329, 2.540998,-1.666857;;, + 160;3; 0.929329, 2.540998,-1.666857;;, + 161;3; 0.929329, 2.540998,-1.666857;;, + 162;3; 0.929330, 2.540998,-1.666857;;, + 163;3; 0.929330, 2.540998,-1.666857;;, + 164;3; 0.929330, 2.540998,-1.666857;;, + 165;3; 0.929330, 2.540998,-1.666857;;, + 166;3; 0.929330, 2.540998,-1.666857;;, + 167;3; 0.929330, 2.540998,-1.666857;;, + 168;3; 0.929330, 2.540998,-1.666857;;, + 169;3; 0.929330, 2.540998,-1.666857;;, + 170;3; 0.929330, 2.540998,-1.666857;;, + 171;3; 0.929330, 2.540998,-1.666857;;, + 172;3; 0.929330, 2.540998,-1.666857;;, + 173;3; 0.929330, 2.540998,-1.666857;;, + 174;3; 0.929330, 2.540998,-1.666857;;, + 175;3; 0.929330, 2.540998,-1.666857;;, + 176;3; 0.929330, 2.540998,-1.666857;;, + 177;3; 0.929330, 2.540998,-1.666857;;, + 178;3; 0.929330, 2.540998,-1.666857;;, + 179;3; 0.929330, 2.540998,-1.666857;;, + 180;3; 0.929329, 2.540998,-1.666857;;, + 181;3; 0.929329, 2.540998,-1.666857;;, + 182;3; 0.929329, 2.540998,-1.666857;;, + 183;3; 0.929329, 2.540998,-1.666857;;, + 184;3; 0.929329, 2.540998,-1.666857;;, + 185;3; 0.929329, 2.540998,-1.666857;;, + 186;3; 0.929329, 2.540998,-1.666857;;; + } + } + Animation { + {Chicken_Rig_Head} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 1;4;-0.999945, 0.007153,-0.000003,-0.000000;;, + 2;4;-0.999837, 0.011033,-0.000003,-0.000000;;, + 3;4;-0.999698, 0.016016,-0.000003,-0.000000;;, + 4;4;-0.999590, 0.019896,-0.000003,-0.000000;;, + 5;4;-0.999551, 0.021274,-0.000003,-0.000000;;, + 6;4;-0.999576, 0.020669,-0.000003,-0.000000;;, + 7;4;-0.999648, 0.018794,-0.000003,-0.000000;;, + 8;4;-0.999754, 0.015794,-0.000003,-0.000000;;, + 9;4;-0.999863, 0.012205,-0.000003,-0.000000;;, + 10;4;-0.999945, 0.008711,-0.000003,-0.000000;;, + 11;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 12;4;-0.999979, 0.002839,-0.000003, 0.000000;;, + 13;4;-0.999938,-0.000656,-0.000003, 0.000000;;, + 14;4;-0.999870,-0.004246,-0.000003, 0.000000;;, + 15;4;-0.999799,-0.007247,-0.000003, 0.000000;;, + 16;4;-0.999748,-0.009123,-0.000003, 0.000000;;, + 17;4;-0.999730,-0.009728,-0.000003, 0.000000;;, + 18;4;-0.999746,-0.008770,-0.000003, 0.000000;;, + 19;4;-0.999791,-0.005983,-0.000003, 0.000000;;, + 20;4;-0.999857,-0.001976,-0.000003, 0.000000;;, + 21;4;-0.999922, 0.002030,-0.000003, 0.000000;;, + 22;4;-0.999968, 0.004817,-0.000003,-0.000000;;, + 23;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 24;4;-0.999962, 0.005775,-0.001619, 0.000009;;, + 25;4;-0.999901, 0.005775,-0.006326, 0.000037;;, + 26;4;-0.999812, 0.005774,-0.013091, 0.000076;;, + 27;4;-0.999723, 0.005774,-0.019856, 0.000115;;, + 28;4;-0.999662, 0.005773,-0.024562, 0.000142;;, + 29;4;-0.999641, 0.005773,-0.026179, 0.000151;;, + 30;4;-0.999662, 0.005773,-0.025158, 0.000145;;, + 31;4;-0.999723, 0.005774,-0.021990, 0.000127;;, + 32;4;-0.999812, 0.005774,-0.016923, 0.000098;;, + 33;4;-0.999901, 0.005775,-0.010862, 0.000063;;, + 34;4;-0.999962, 0.005775,-0.004961, 0.000029;;, + 35;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 36;4;-0.999962, 0.005775, 0.004956,-0.000029;;, + 37;4;-0.999901, 0.005775, 0.010857,-0.000063;;, + 38;4;-0.999812, 0.005774, 0.016918,-0.000098;;, + 39;4;-0.999723, 0.005774, 0.021985,-0.000127;;, + 40;4;-0.999662, 0.005773, 0.025153,-0.000145;;, + 41;4;-0.999641, 0.005773, 0.026174,-0.000151;;, + 42;4;-0.999653, 0.005773, 0.025266,-0.000146;;, + 43;4;-0.999688, 0.005773, 0.022554,-0.000132;;, + 44;4;-0.999744, 0.005774, 0.018286,-0.000108;;, + 45;4;-0.999812, 0.005774, 0.013086,-0.000079;;, + 46;4;-0.999880, 0.005774, 0.007886,-0.000050;;, + 47;4;-0.999936, 0.005775, 0.003617,-0.000025;;, + 48;4;-0.999971, 0.005775, 0.000906,-0.000008;;, + 49;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 50;4;-0.937223,-0.239772,-0.000002, 0.000002;;, + 51;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 52;4;-0.874138,-0.485309, 0.000455,-0.000822;;, + 53;4;-0.873968,-0.485281, 0.001781,-0.003210;;, + 54;4;-0.873827,-0.485235, 0.003861,-0.006958;;, + 55;4;-0.873716,-0.485178, 0.006513,-0.011736;;, + 56;4;-0.873633,-0.485112, 0.009498,-0.017113;;, + 57;4;-0.873576,-0.485046, 0.012546,-0.022606;;, + 58;4;-0.873540,-0.484983, 0.015395,-0.027739;;, + 59;4;-0.873519,-0.484930, 0.017820,-0.032106;;, + 60;4;-0.873509,-0.484890, 0.019652,-0.035406;;, + 61;4;-0.873506,-0.484865, 0.020785,-0.037448;;, + 62;4;-0.873505,-0.484857, 0.021167,-0.038137;;, + 63;4;-0.873505,-0.484857, 0.017404,-0.031357;;, + 64;4;-0.873505,-0.484857, 0.006803,-0.012261;;, + 65;4;-0.873505,-0.484857,-0.006808, 0.012258;;, + 66;4;-0.873505,-0.484857,-0.017408, 0.031355;;, + 67;4;-0.873505,-0.484857,-0.021171, 0.038134;;, + 68;4;-0.873506,-0.484866,-0.020738, 0.037354;;, + 69;4;-0.873509,-0.484892,-0.019544, 0.035204;;, + 70;4;-0.873519,-0.484932,-0.017730, 0.031936;;, + 71;4;-0.873539,-0.484983,-0.015418, 0.027773;;, + 72;4;-0.873573,-0.485041,-0.012727, 0.022926;;, + 73;4;-0.873627,-0.485106,-0.009780, 0.017618;;, + 74;4;-0.873709,-0.485172,-0.006723, 0.012113;;, + 75;4;-0.873832,-0.485237,-0.003763, 0.006781;;, + 76;4;-0.874021,-0.485292,-0.001250, 0.002253;;, + 77;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 78;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 79;4;-0.974643, 0.005628,-0.000910,-0.157110;;, + 80;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 81;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 82;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 83;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 84;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 85;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 86;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 87;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 88;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 89;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 90;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 91;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 92;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 93;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 94;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 95;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 96;4;-0.961569, 0.005553,-0.001509,-0.260670;;, + 97;4;-0.987749, 0.005704,-0.000716,-0.123620;;, + 98;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 99;4;-0.992979, 0.005734, 0.000589, 0.102403;;, + 100;4;-0.974659, 0.005628, 0.001215, 0.210752;;, + 101;4;-0.956338, 0.005521, 0.001665, 0.288673;;, + 102;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 103;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 104;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 105;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 106;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 107;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 108;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 109;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 110;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 111;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 112;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 113;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 114;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 115;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 116;4;-0.961569, 0.005552, 0.001374, 0.238262;;, + 117;4;-0.987749, 0.005704, 0.000436, 0.075954;;, + 118;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 119;4;-0.999542,-0.017864,-0.000003,-0.000000;;, + 120;4;-0.998007,-0.043214,-0.000002, 0.000000;;, + 121;4;-0.995747,-0.070680,-0.000002, 0.000000;;, + 122;4;-0.993498,-0.099890,-0.000002, 0.000000;;, + 123;4;-0.991956,-0.123956,-0.000002, 0.000000;;, + 124;4;-0.991417,-0.130738,-0.000002, 0.000000;;, + 125;4;-0.991714,-0.126001,-0.000002, 0.000000;;, + 126;4;-0.992602,-0.111861,-0.000002, 0.000000;;, + 127;4;-0.993998,-0.089600,-0.000002, 0.000000;;, + 128;4;-0.995700,-0.062482,-0.000002, 0.000000;;, + 129;4;-0.997402,-0.035365,-0.000002, 0.000000;;, + 130;4;-0.998799,-0.013103,-0.000003, 0.000000;;, + 131;4;-0.999686, 0.001038,-0.000003,-0.000000;;, + 132;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 133;4;-0.999987, 0.005158,-0.000003,-0.000000;;, + 134;4;-0.999997, 0.003345,-0.000003,-0.000000;;, + 135;4;-1.000014, 0.000408,-0.000003,-0.000000;;, + 136;4;-1.000037,-0.003554,-0.000003,-0.000000;;, + 137;4;-1.000065,-0.008408,-0.000003,-0.000000;;, + 138;4;-1.000098,-0.013993,-0.000003,-0.000000;;, + 139;4;-1.000133,-0.020110,-0.000003,-0.000000;;, + 140;4;-1.000170,-0.026527,-0.000003,-0.000000;;, + 141;4;-1.000207,-0.032979,-0.000003,-0.000000;;, + 142;4;-1.000243,-0.039177,-0.000003,-0.000000;;, + 143;4;-1.000275,-0.044811,-0.000003,-0.000000;;, + 144;4;-1.000303,-0.049563,-0.000003,-0.000000;;, + 145;4;-1.000323,-0.053122,-0.000003,-0.000000;;, + 146;4;-1.000335,-0.055188,-0.000003,-0.000000;;, + 147;4;-1.000337,-0.055492,-0.000003,-0.000000;;, + 148;4;-1.000327,-0.053801,-0.000003,-0.000000;;, + 149;4;-1.000305,-0.049923,-0.000003,-0.000000;;, + 150;4;-1.000269,-0.043714,-0.000003,-0.000000;;, + 151;4;-1.000219,-0.035077,-0.000003,-0.000000;;, + 152;4;-1.000155,-0.023955,-0.000003,-0.000000;;, + 153;4;-1.000076,-0.010332,-0.000003,-0.000000;;, + 154;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 155;4;-0.999323,-0.001480,-0.000519, 0.002265;;, + 156;4;-0.997321,-0.021071,-0.002074, 0.009083;;, + 157;4;-0.994046,-0.049448,-0.004602, 0.020168;;, + 158;4;-0.989742,-0.082905,-0.007909, 0.034667;;, + 159;4;-0.984849,-0.117862,-0.011654, 0.051092;;, + 160;4;-0.979946,-0.151101,-0.015400, 0.067517;;, + 161;4;-0.975615,-0.179913,-0.018707, 0.082016;;, + 162;4;-0.972305,-0.202159,-0.021235, 0.093101;;, + 163;4;-0.970272,-0.216258,-0.022790, 0.099919;;, + 164;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 165;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 166;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 167;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 168;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 169;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 170;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 171;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 172;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 173;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 174;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 175;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 176;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 177;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 178;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 179;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 180;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 181;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 182;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 183;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 184;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 185;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 186;4;-0.999983, 0.005775,-0.000003,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.023066, 4.738051, 2.665740;;, + 1;3; 0.023066, 4.738051, 2.665740;;, + 2;3; 0.023066, 4.738051, 2.665740;;, + 3;3; 0.023066, 4.738051, 2.665740;;, + 4;3; 0.023066, 4.738051, 2.665740;;, + 5;3; 0.023066, 4.738051, 2.665740;;, + 6;3; 0.023066, 4.738051, 2.665740;;, + 7;3; 0.023066, 4.738051, 2.665740;;, + 8;3; 0.023066, 4.738051, 2.665740;;, + 9;3; 0.023066, 4.738051, 2.665740;;, + 10;3; 0.023066, 4.738051, 2.665740;;, + 11;3; 0.023066, 4.738051, 2.665740;;, + 12;3; 0.023066, 4.738051, 2.665740;;, + 13;3; 0.023066, 4.738051, 2.665740;;, + 14;3; 0.023066, 4.738051, 2.665740;;, + 15;3; 0.023066, 4.738051, 2.665740;;, + 16;3; 0.023066, 4.738051, 2.665740;;, + 17;3; 0.023066, 4.738051, 2.665740;;, + 18;3; 0.023066, 4.738051, 2.665740;;, + 19;3; 0.023066, 4.738051, 2.665740;;, + 20;3; 0.023066, 4.738051, 2.665740;;, + 21;3; 0.023066, 4.738051, 2.665740;;, + 22;3; 0.023066, 4.738051, 2.665740;;, + 23;3; 0.023066, 4.738051, 2.665740;;, + 24;3; 0.023066, 4.738051, 2.665740;;, + 25;3; 0.023066, 4.738051, 2.665740;;, + 26;3; 0.023066, 4.738051, 2.665740;;, + 27;3; 0.023066, 4.738052, 2.665740;;, + 28;3; 0.023066, 4.738051, 2.665740;;, + 29;3; 0.023066, 4.738051, 2.665740;;, + 30;3; 0.023066, 4.738052, 2.665740;;, + 31;3; 0.023066, 4.738051, 2.665740;;, + 32;3; 0.023066, 4.738051, 2.665740;;, + 33;3; 0.023066, 4.738051, 2.665740;;, + 34;3; 0.023066, 4.738051, 2.665740;;, + 35;3; 0.023066, 4.738051, 2.665740;;, + 36;3; 0.023066, 4.738052, 2.665740;;, + 37;3; 0.023066, 4.738051, 2.665740;;, + 38;3; 0.023066, 4.738052, 2.665739;;, + 39;3; 0.023066, 4.738051, 2.665740;;, + 40;3; 0.023066, 4.738052, 2.665740;;, + 41;3; 0.023066, 4.738051, 2.665740;;, + 42;3; 0.023066, 4.738052, 2.665740;;, + 43;3; 0.023066, 4.738052, 2.665740;;, + 44;3; 0.023066, 4.738052, 2.665740;;, + 45;3; 0.023066, 4.738052, 2.665740;;, + 46;3; 0.023066, 4.738051, 2.665740;;, + 47;3; 0.023066, 4.738052, 2.665740;;, + 48;3; 0.023066, 4.738051, 2.665740;;, + 49;3; 0.023066, 4.738051, 2.665740;;, + 50;3; 0.023066, 5.202209, 1.327686;;, + 51;3; 0.023066, 5.666367,-0.010368;;, + 52;3; 0.023066, 5.666367,-0.010368;;, + 53;3; 0.023066, 5.666367,-0.010368;;, + 54;3; 0.023066, 5.666367,-0.010368;;, + 55;3; 0.023066, 5.666367,-0.010368;;, + 56;3; 0.023066, 5.666367,-0.010368;;, + 57;3; 0.023066, 5.666367,-0.010368;;, + 58;3; 0.023066, 5.666367,-0.010368;;, + 59;3; 0.023066, 5.666367,-0.010368;;, + 60;3; 0.023066, 5.666367,-0.010368;;, + 61;3; 0.023066, 5.666367,-0.010368;;, + 62;3; 0.023066, 5.666367,-0.010368;;, + 63;3; 0.023068, 5.666367,-0.010368;;, + 64;3; 0.023075, 5.666367,-0.010368;;, + 65;3; 0.023084, 5.666367,-0.010368;;, + 66;3; 0.023090, 5.666367,-0.010368;;, + 67;3; 0.023093, 5.666367,-0.010368;;, + 68;3; 0.023092, 5.666367,-0.010368;;, + 69;3; 0.023091, 5.666367,-0.010368;;, + 70;3; 0.023088, 5.666367,-0.010368;;, + 71;3; 0.023085, 5.666367,-0.010368;;, + 72;3; 0.023082, 5.666367,-0.010368;;, + 73;3; 0.023078, 5.666367,-0.010368;;, + 74;3; 0.023074, 5.666367,-0.010368;;, + 75;3; 0.023071, 5.666367,-0.010368;;, + 76;3; 0.023067, 5.666367,-0.010368;;, + 77;3; 0.023066, 5.666367,-0.010368;;, + 78;3; 0.023066, 4.738051, 2.665740;;, + 79;3; 0.023066, 4.738051, 2.665740;;, + 80;3; 0.023066, 4.738051, 2.665740;;, + 81;3; 0.023066, 4.738051, 2.665740;;, + 82;3; 0.023066, 4.738051, 2.665740;;, + 83;3; 0.023066, 4.738051, 2.665740;;, + 84;3; 0.023066, 4.738051, 2.665740;;, + 85;3; 0.023066, 4.738051, 2.665740;;, + 86;3; 0.023066, 4.738051, 2.665740;;, + 87;3; 0.023066, 4.738051, 2.665740;;, + 88;3; 0.023066, 4.738051, 2.665740;;, + 89;3; 0.023066, 4.738051, 2.665740;;, + 90;3; 0.023066, 4.738051, 2.665740;;, + 91;3; 0.023066, 4.738051, 2.665740;;, + 92;3; 0.023066, 4.738051, 2.665740;;, + 93;3; 0.023066, 4.738051, 2.665740;;, + 94;3; 0.023066, 4.738051, 2.665740;;, + 95;3; 0.023066, 4.738051, 2.665740;;, + 96;3; 0.023066, 4.738051, 2.665740;;, + 97;3; 0.023066, 4.738051, 2.665740;;, + 98;3; 0.023066, 4.738051, 2.665740;;, + 99;3; 0.023066, 4.738051, 2.665740;;, + 100;3; 0.023066, 4.738051, 2.665740;;, + 101;3; 0.023066, 4.738051, 2.665740;;, + 102;3; 0.023066, 4.738051, 2.665740;;, + 103;3; 0.023066, 4.738051, 2.665740;;, + 104;3; 0.023066, 4.738051, 2.665740;;, + 105;3; 0.023066, 4.738051, 2.665740;;, + 106;3; 0.023066, 4.738051, 2.665740;;, + 107;3; 0.023066, 4.738051, 2.665740;;, + 108;3; 0.023066, 4.738051, 2.665740;;, + 109;3; 0.023066, 4.738051, 2.665740;;, + 110;3; 0.023066, 4.738051, 2.665740;;, + 111;3; 0.023066, 4.738051, 2.665740;;, + 112;3; 0.023066, 4.738051, 2.665740;;, + 113;3; 0.023066, 4.738051, 2.665740;;, + 114;3; 0.023066, 4.738051, 2.665740;;, + 115;3; 0.023066, 4.738051, 2.665740;;, + 116;3; 0.023066, 4.738051, 2.665740;;, + 117;3; 0.023066, 4.738051, 2.665740;;, + 118;3; 0.023066, 4.738051, 2.665740;;, + 119;3; 0.023066, 4.738051, 2.665740;;, + 120;3; 0.023066, 4.738051, 2.665740;;, + 121;3; 0.023066, 4.738051, 2.665740;;, + 122;3; 0.023066, 4.738051, 2.665740;;, + 123;3; 0.023066, 4.738051, 2.665740;;, + 124;3; 0.023066, 4.738051, 2.665740;;, + 125;3; 0.023066, 4.738051, 2.665740;;, + 126;3; 0.023066, 4.738051, 2.665740;;, + 127;3; 0.023066, 4.738051, 2.665740;;, + 128;3; 0.023066, 4.738051, 2.665740;;, + 129;3; 0.023066, 4.738051, 2.665740;;, + 130;3; 0.023066, 4.738051, 2.665740;;, + 131;3; 0.023066, 4.738051, 2.665740;;, + 132;3; 0.023066, 4.738051, 2.665740;;, + 133;3; 0.023066, 4.738051, 2.665740;;, + 134;3; 0.023066, 4.738051, 2.665740;;, + 135;3; 0.023066, 4.738051, 2.665740;;, + 136;3; 0.023066, 4.738051, 2.665740;;, + 137;3; 0.023066, 4.738051, 2.665740;;, + 138;3; 0.023066, 4.738051, 2.665740;;, + 139;3; 0.023066, 4.738051, 2.665740;;, + 140;3; 0.023066, 4.738051, 2.665740;;, + 141;3; 0.023066, 4.738051, 2.665740;;, + 142;3; 0.023066, 4.738051, 2.665740;;, + 143;3; 0.023066, 4.738051, 2.665740;;, + 144;3; 0.023066, 4.738051, 2.665740;;, + 145;3; 0.023066, 4.738051, 2.665740;;, + 146;3; 0.023066, 4.738051, 2.665740;;, + 147;3; 0.023066, 4.738051, 2.665740;;, + 148;3; 0.023066, 4.738051, 2.665740;;, + 149;3; 0.023066, 4.738051, 2.665740;;, + 150;3; 0.023066, 4.738051, 2.665740;;, + 151;3; 0.023066, 4.738051, 2.665740;;, + 152;3; 0.023066, 4.738051, 2.665740;;, + 153;3; 0.023066, 4.738051, 2.665740;;, + 154;3; 0.023066, 4.738051, 2.665740;;, + 155;3; 0.023066, 4.738051, 2.665740;;, + 156;3; 0.023066, 4.738051, 2.665740;;, + 157;3; 0.023066, 4.738051, 2.665740;;, + 158;3; 0.023066, 4.738051, 2.665740;;, + 159;3; 0.023066, 4.738051, 2.665740;;, + 160;3; 0.023066, 4.738051, 2.665740;;, + 161;3; 0.023066, 4.738051, 2.665740;;, + 162;3; 0.023066, 4.738051, 2.665740;;, + 163;3; 0.023066, 4.738052, 2.665740;;, + 164;3; 0.023066, 4.738051, 2.665740;;, + 165;3; 0.023066, 4.738051, 2.665740;;, + 166;3; 0.023066, 4.738051, 2.665740;;, + 167;3; 0.023066, 4.738051, 2.665740;;, + 168;3; 0.023066, 4.738051, 2.665740;;, + 169;3; 0.023066, 4.738051, 2.665740;;, + 170;3; 0.023066, 4.738051, 2.665740;;, + 171;3; 0.023066, 4.738051, 2.665740;;, + 172;3; 0.023066, 4.738051, 2.665740;;, + 173;3; 0.023066, 4.738051, 2.665740;;, + 174;3; 0.023066, 4.738051, 2.665740;;, + 175;3; 0.023066, 4.738051, 2.665740;;, + 176;3; 0.023066, 4.738051, 2.665740;;, + 177;3; 0.023066, 4.738051, 2.665740;;, + 178;3; 0.023066, 4.738051, 2.665740;;, + 179;3; 0.023066, 4.738051, 2.665740;;, + 180;3; 0.023066, 4.738051, 2.665740;;, + 181;3; 0.023066, 4.738051, 2.665740;;, + 182;3; 0.023066, 4.738051, 2.665740;;, + 183;3; 0.023066, 4.738051, 2.665740;;, + 184;3; 0.023066, 4.738051, 2.665740;;, + 185;3; 0.023066, 4.738051, 2.665740;;, + 186;3; 0.023066, 4.738051, 2.665740;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/models/mobs_cow.x b/mods/mobs_mc/models/mobs_cow.x new file mode 100644 index 000000000..8f809fe0a --- /dev/null +++ b/mods/mobs_mc/models/mobs_cow.x @@ -0,0 +1,6138 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cow_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cow_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cow_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,11.409506, 5.419243, 1.000000;; + } + Frame Cow_Rig_Head { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000005, 0.000000, + -0.000000, 0.999933, 0.011550, 0.000000, + -0.000005,-0.011550, 0.999933, 0.000000, + 0.023066,10.494865, 2.240401, 1.000000;; + } + } // End of Cow_Rig_Head + Frame Cow_Rig_Leg_B_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948, 0.613843,-3.417443, 1.000000;; + } + } // End of Cow_Rig_Leg_B_L + Frame Cow_Rig_Leg_B_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931, 0.613843,-3.417443, 1.000000;; + } + } // End of Cow_Rig_Leg_B_R + Frame Cow_Rig_Leg_F_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948, 8.787700,-3.333342, 1.000000;; + } + } // End of Cow_Rig_Leg_F_L + Frame Cow_Rig_Leg_F_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931, 8.787700,-3.333342, 1.000000;; + } + } // End of Cow_Rig_Leg_F_R + } // End of Cow_Rig_Body + } // End of Cow_Rig_Root + Frame Cow { + FrameTransformMatrix { + -1.000000, 0.000001, 0.000000, 0.000000, + -0.000001,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.811645, 0.000000, + -1.449203, 3.843606, 1.832092, 1.000000;; + } + Mesh { // Cow mesh + 192; + -0.319025;-0.920603; 3.463393;, + -0.319025;-0.920603;-1.034894;, + -0.319025; 1.948128;-1.034894;, + -0.319025; 1.948128; 3.463393;, + -0.319025; 1.948128; 3.463393;, + -0.319025; 1.948128;-1.034894;, + 2.756796; 1.948128;-1.034894;, + 2.756796; 1.948128; 3.463393;, + 2.756796; 1.948128; 3.463393;, + 2.756796; 1.948128;-1.034894;, + 2.756796;-0.920603;-1.034894;, + 2.756796;-0.920603; 3.463393;, + 2.756796;-0.920603; 3.463393;, + 2.756796;-0.920603;-1.034894;, + -0.319025;-0.920603;-1.034894;, + -0.319025;-0.920603; 3.463393;, + -0.319025;-0.920603;-1.034894;, + 2.756796;-0.920603;-1.034894;, + 2.756796; 1.948128;-1.034894;, + -0.319025; 1.948128;-1.034894;, + 2.756796;-0.920603; 3.463393;, + -0.319025;-0.920603; 3.463393;, + -0.319025; 1.948128; 3.463393;, + 2.756796; 1.948128; 3.463393;, + -5.959183;-0.995505; 7.494431;, + -5.959183;-0.995505; 3.397127;, + -5.959183;10.632981; 3.397127;, + -5.959183;10.632981; 7.494431;, + -5.959183;10.632981; 7.494431;, + -5.959183;10.632981; 3.397127;, + 2.875628;10.632979; 3.397127;, + 2.875628;10.632979; 7.494431;, + 2.875628;10.632979; 7.494431;, + 2.875628;10.632979; 3.397127;, + 2.875628;-0.995506; 3.397127;, + 2.875628;-0.995506; 7.494431;, + 2.875628;-0.995506; 7.494431;, + 2.875628;-0.995506; 3.397127;, + -5.959183;-0.995505; 3.397127;, + -5.959183;-0.995505; 7.494431;, + -5.959183;-0.995505; 3.397127;, + 2.875628;-0.995506; 3.397127;, + 2.875628;10.632979; 3.397127;, + -5.959183;10.632981; 3.397127;, + 2.875628;-0.995506; 7.494431;, + -5.959183;-0.995505; 7.494431;, + -5.959183;10.632981; 7.494431;, + 2.875628;10.632979; 7.494431;, + -4.677953;-5.640978; 8.305634;, + -4.677953;-5.640978; 4.812226;, + -4.677955;-0.893501; 4.812226;, + -4.677955;-0.893501; 8.305634;, + -4.677955;-0.893501; 8.305634;, + -4.677955;-0.893501; 4.812226;, + 1.650862;-0.893501; 4.812226;, + 1.650862;-0.893501; 8.305634;, + 1.650862;-0.893501; 8.305634;, + 1.650862;-0.893501; 4.812226;, + 1.650864;-5.640978; 4.812226;, + 1.650864;-5.640978; 8.305634;, + 1.650864;-5.640978; 8.305634;, + 1.650864;-5.640978; 4.812226;, + -4.677953;-5.640978; 4.812226;, + -4.677953;-5.640978; 8.305634;, + -4.677953;-5.640978; 4.812226;, + 1.650864;-5.640978; 4.812226;, + 1.650862;-0.893501; 4.812226;, + -4.677955;-0.893501; 4.812226;, + 1.650864;-5.640978; 8.305634;, + -4.677953;-5.640978; 8.305634;, + -4.677955;-0.893501; 8.305634;, + 1.650862;-0.893501; 8.305634;, + 2.465974;-2.723090; 7.515670;, + 1.633924;-2.723089; 7.515670;, + 1.633923;-3.555140; 7.515670;, + 2.465973;-3.555141; 7.515670;, + 2.465974;-2.723090; 8.864790;, + 2.465974;-2.723090; 7.515670;, + 2.465973;-3.555141; 7.515670;, + 2.465973;-3.555141; 8.864790;, + 1.633923;-3.555140; 8.864790;, + 1.633923;-3.555140; 7.515670;, + 1.633924;-2.723089; 7.515670;, + 1.633924;-2.723089; 8.864790;, + 1.633924;-2.723089; 8.864790;, + 2.465974;-2.723090; 8.864790;, + 2.465973;-3.555141; 8.864790;, + 1.633923;-3.555140; 8.864790;, + 1.633924;-2.723089; 8.864790;, + 1.633924;-2.723089; 7.515670;, + 2.465974;-2.723090; 7.515670;, + 2.465974;-2.723090; 8.864790;, + 2.465973;-3.555141; 8.864790;, + 2.465973;-3.555141; 7.515670;, + 1.633923;-3.555140; 7.515670;, + 1.633923;-3.555140; 8.864790;, + -5.710455;-0.988127; 3.463393;, + -5.710455;-0.988127;-1.034894;, + -5.710455; 1.880604;-1.034894;, + -5.710455; 1.880604; 3.463393;, + -5.710455; 1.880604; 3.463393;, + -5.710455; 1.880604;-1.034894;, + -2.695819; 1.880604;-1.034894;, + -2.695819; 1.880604; 3.463393;, + -2.695819; 1.880604; 3.463393;, + -2.695819; 1.880604;-1.034894;, + -2.695819;-0.988127;-1.034894;, + -2.695819;-0.988127; 3.463393;, + -2.695819;-0.988127; 3.463393;, + -2.695819;-0.988127;-1.034894;, + -5.710455;-0.988127;-1.034894;, + -5.710455;-0.988127; 3.463393;, + -5.710455;-0.988127;-1.034894;, + -2.695819;-0.988127;-1.034894;, + -2.695819; 1.880604;-1.034894;, + -5.710455; 1.880604;-1.034894;, + -2.695819;-0.988127; 3.463393;, + -5.710455;-0.988127; 3.463393;, + -5.710455; 1.880604; 3.463393;, + -2.695819; 1.880604; 3.463393;, + -5.946746; 7.263296; 3.463393;, + -5.946746; 7.263296;-1.034894;, + -5.946746;10.132029;-1.034894;, + -5.946746;10.132029; 3.463393;, + -5.946746;10.132029; 3.463393;, + -5.946746;10.132029;-1.034894;, + -2.932109;10.132029;-1.034894;, + -2.932109;10.132029; 3.463393;, + -2.932109;10.132029; 3.463393;, + -2.932109;10.132029;-1.034894;, + -2.932109; 7.263296;-1.034894;, + -2.932109; 7.263296; 3.463393;, + -2.932109; 7.263296; 3.463393;, + -2.932109; 7.263296;-1.034894;, + -5.946746; 7.263296;-1.034894;, + -5.946746; 7.263296; 3.463393;, + -5.946746; 7.263296;-1.034894;, + -2.932109; 7.263296;-1.034894;, + -2.932109;10.132029;-1.034894;, + -5.946746;10.132029;-1.034894;, + -2.932109; 7.263296; 3.463393;, + -5.946746; 7.263296; 3.463393;, + -5.946746;10.132029; 3.463393;, + -2.932109;10.132029; 3.463393;, + -0.195168; 7.173268; 3.463393;, + -0.195168; 7.173268;-1.034894;, + -0.195168;10.042000;-1.034894;, + -0.195168;10.042000; 3.463393;, + -0.195168;10.042000; 3.463393;, + -0.195168;10.042000;-1.034894;, + 2.880652;10.042000;-1.034894;, + 2.880652;10.042000; 3.463393;, + 2.880652;10.042000; 3.463393;, + 2.880652;10.042000;-1.034894;, + 2.880652; 7.173268;-1.034894;, + 2.880652; 7.173268; 3.463393;, + 2.880652; 7.173268; 3.463393;, + 2.880652; 7.173268;-1.034894;, + -0.195168; 7.173268;-1.034894;, + -0.195168; 7.173268; 3.463393;, + -0.195168; 7.173268;-1.034894;, + 2.880652; 7.173268;-1.034894;, + 2.880652;10.042000;-1.034894;, + -0.195168;10.042000;-1.034894;, + 2.880652; 7.173268; 3.463393;, + -0.195168; 7.173268; 3.463393;, + -0.195168;10.042000; 3.463393;, + 2.880652;10.042000; 3.463393;, + -4.625976;-2.723081; 7.515670;, + -5.458026;-2.723080; 7.515670;, + -5.458027;-3.555131; 7.515670;, + -4.625977;-3.555132; 7.515670;, + -4.625976;-2.723081; 8.864790;, + -4.625976;-2.723081; 7.515670;, + -4.625977;-3.555132; 7.515670;, + -4.625977;-3.555132; 8.864790;, + -5.458027;-3.555131; 8.864790;, + -5.458027;-3.555131; 7.515670;, + -5.458026;-2.723080; 7.515670;, + -5.458026;-2.723080; 8.864790;, + -5.458026;-2.723080; 8.864790;, + -4.625976;-2.723081; 8.864790;, + -4.625977;-3.555132; 8.864790;, + -5.458027;-3.555131; 8.864790;, + -5.458026;-2.723080; 8.864790;, + -5.458026;-2.723080; 7.515670;, + -4.625976;-2.723081; 7.515670;, + -4.625976;-2.723081; 8.864790;, + -4.625977;-3.555132; 8.864790;, + -4.625977;-3.555132; 7.515670;, + -5.458027;-3.555131; 7.515670;, + -5.458027;-3.555131; 8.864790;; + 48; + 4;0,1,2,3;, + 4;4,5,6,7;, + 4;8,9,10,11;, + 4;12,13,14,15;, + 4;16,17,18,19;, + 4;20,21,22,23;, + 4;24,25,26,27;, + 4;28,29,30,31;, + 4;32,33,34,35;, + 4;36,37,38,39;, + 4;40,41,42,43;, + 4;44,45,46,47;, + 4;48,49,50,51;, + 4;52,53,54,55;, + 4;56,57,58,59;, + 4;60,61,62,63;, + 4;64,65,66,67;, + 4;68,69,70,71;, + 4;72,73,74,75;, + 4;76,77,78,79;, + 4;80,81,82,83;, + 4;84,85,86,87;, + 4;88,89,90,91;, + 4;92,93,94,95;, + 4;96,97,98,99;, + 4;100,101,102,103;, + 4;104,105,106,107;, + 4;108,109,110,111;, + 4;112,113,114,115;, + 4;116,117,118,119;, + 4;120,121,122,123;, + 4;124,125,126,127;, + 4;128,129,130,131;, + 4;132,133,134,135;, + 4;136,137,138,139;, + 4;140,141,142,143;, + 4;144,145,146,147;, + 4;148,149,150,151;, + 4;152,153,154,155;, + 4;156,157,158,159;, + 4;160,161,162,163;, + 4;164,165,166,167;, + 4;168,169,170,171;, + 4;172,173,174,175;, + 4;176,177,178,179;, + 4;180,181,182,183;, + 4;184,185,186,187;, + 4;188,189,190,191;; + MeshNormals { // Cow normals + 48; + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000001;-1.000000; 0.000000;, + 0.000001; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000001;-1.000000; 0.000000;, + 0.000001; 1.000000; 0.000000;; + 48; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;, + 4;41,41,41,41;, + 4;42,42,42,42;, + 4;43,43,43,43;, + 4;44,44,44,44;, + 4;45,45,45,45;, + 4;46,46,46,46;, + 4;47,47,47,47;; + } // End of Cow normals + MeshTextureCoords { // Cow UV coordinates + 192; + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.281250; 0.437500;, + 0.437500; 0.437500;, + 0.437500; 1.000000;, + 0.281250; 1.000000;, + 0.812500; 0.125000;, + 0.812500; 0.437500;, + 0.625000; 0.437500;, + 0.625000; 0.125000;, + 0.593750; 0.437500;, + 0.765625; 0.437500;, + 0.765625; 1.000000;, + 0.593750; 1.000000;, + 0.625000; 0.125000;, + 0.625000; 0.437500;, + 0.437500; 0.437500;, + 0.437500; 0.125000;, + 0.437500; 0.437500;, + 0.593750; 0.437500;, + 0.593750; 1.000000;, + 0.437500; 1.000000;, + 0.765625; 0.437500;, + 0.968750; 0.437500;, + 0.968750; 1.000000;, + 0.765625; 1.000000;, + 0.093750; 0.187500;, + 0.093750; 0.437500;, + 0.000000; 0.437500;, + 0.000000; 0.187500;, + 0.437500; 0.187500;, + 0.437500; 0.437500;, + 0.320312; 0.437500;, + 0.320312; 0.187500;, + 0.320312; 0.187500;, + 0.320312; 0.437500;, + 0.218750; 0.437500;, + 0.218750; 0.187500;, + 0.218750; 0.187500;, + 0.218750; 0.437500;, + 0.093750; 0.437500;, + 0.093750; 0.187500;, + 0.218750; 0.000000;, + 0.320312; 0.000000;, + 0.320312; 0.187500;, + 0.218750; 0.187500;, + 0.218750; 0.187500;, + 0.093750; 0.187500;, + 0.093750; 0.000000;, + 0.218750; 0.000000;, + 0.375000; 0.000000;, + 0.375000; 0.031250;, + 0.359375; 0.031250;, + 0.359375; 0.000000;, + 0.359375; 0.031250;, + 0.359375; 0.125000;, + 0.343750; 0.125000;, + 0.343750; 0.031250;, + 0.406250; 0.031250;, + 0.406250; 0.125000;, + 0.390625; 0.125000;, + 0.390625; 0.031250;, + 0.375000; 0.000000;, + 0.390625; 0.000000;, + 0.390625; 0.031250;, + 0.375000; 0.031250;, + 0.390625; 0.031250;, + 0.390625; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.031250;, + 0.375000; 0.031250;, + 0.375000; 0.125000;, + 0.359375; 0.125000;, + 0.359375; 0.031250;, + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.375000; 0.000000;, + 0.375000; 0.031250;, + 0.359375; 0.031250;, + 0.359375; 0.000000;, + 0.359375; 0.031250;, + 0.359375; 0.125000;, + 0.343750; 0.125000;, + 0.343750; 0.031250;, + 0.406250; 0.031250;, + 0.406250; 0.125000;, + 0.390625; 0.125000;, + 0.390625; 0.031250;, + 0.375000; 0.000000;, + 0.390625; 0.000000;, + 0.390625; 0.031250;, + 0.375000; 0.031250;, + 0.390625; 0.031250;, + 0.390625; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.031250;, + 0.375000; 0.031250;, + 0.375000; 0.125000;, + 0.359375; 0.125000;, + 0.359375; 0.031250;; + } // End of Cow UV coordinates + MeshMaterialList { // Cow material list + 1; + 48; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Cow_Mat { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.140000; 0.140000; 0.140000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"cow.png";} + } + } // End of Cow material list + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Cow_Rig_Leg_F_R"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + -3.178134, 6.244072, 0.475147, 1.000000;; + } // End of Cow_Rig_Leg_F_R skin weights + SkinWeights { + "Cow_Rig_Root"; + 0; + -1.000000, 0.000000,-0.000001, 0.000000, + -0.000001,-0.000000, 1.000000, 0.000000, + 0.000000, 1.811645, 0.000000, 0.000000, + -1.449203, 1.832093,-3.843606, 1.000000;; + } // End of Cow_Rig_Root skin weights + SkinWeights { + "Cow_Rig_Leg_B_R"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + -3.178136, 6.159972, 8.649004, 1.000000;; + } // End of Cow_Rig_Leg_B_R skin weights + SkinWeights { + "Cow_Rig_Leg_B_L"; + 24; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + 0.311742, 6.159972, 8.649005, 1.000000;; + } // End of Cow_Rig_Leg_B_L skin weights + SkinWeights { + "Cow_Rig_Body"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000001, 0.000000, 0.000000, + -0.000001,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.811645, 0.000000, + -1.449203, 9.262848,-9.577414, 1.000000;; + } // End of Cow_Rig_Body skin weights + SkinWeights { + "Cow_Rig_Head"; + 72; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000001, 0.000005, 0.000000, + -0.000001,-0.999933, 0.011550, 0.000000, + 0.000009, 0.020925, 1.811524, 0.000000, + -1.472329,-1.368432,-11.802789, 1.000000;; + } // End of Cow_Rig_Head skin weights + SkinWeights { + "Cow_Rig_Leg_F_L"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + 0.311744, 6.244072, 0.475148, 1.000000;; + } // End of Cow_Rig_Leg_F_L skin weights + } // End of Cow mesh + } // End of Cow + } // End of Cow_Rig +} // End of Root +AnimationSet Global { + Animation { + {Cow} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 1;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 2;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 3;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 4;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 5;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 6;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 7;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 8;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 9;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 10;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 11;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 12;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 13;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 14;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 15;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 16;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 17;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 18;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 19;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 20;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 21;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 22;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 23;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 24;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 25;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 26;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 27;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 28;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 29;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 30;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 31;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 32;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 33;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 34;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 35;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 36;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 37;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 38;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 39;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 40;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 41;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 42;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 43;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 44;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 45;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 46;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 47;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 48;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 49;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 50;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 51;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 52;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 53;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 54;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 55;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 56;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 57;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 58;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 59;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 60;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 61;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 62;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 63;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 64;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 65;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 66;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 67;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 68;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 69;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 70;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 71;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 72;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 73;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 74;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 75;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 76;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 77;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 78;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 79;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 80;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 81;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 82;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 83;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 84;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 85;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 86;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 87;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 88;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 89;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 90;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 91;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 92;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 93;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 94;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 95;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 96;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 97;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 98;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 99;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 100;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 101;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 102;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 103;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 104;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 105;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 106;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 107;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 108;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 109;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 110;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 111;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 112;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 113;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 114;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 115;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 116;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 117;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 118;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 119;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 120;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 121;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 122;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 123;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 124;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 125;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 126;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 127;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 128;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 129;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 130;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 131;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 132;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 133;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 134;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 135;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 136;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 137;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 138;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 139;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 140;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 141;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 142;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 143;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 144;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 145;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 146;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 147;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 148;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 149;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 150;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 151;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 152;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 153;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 154;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 155;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 156;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 157;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 158;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 159;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 160;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 161;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 162;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 163;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 164;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 165;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 166;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 167;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 168;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 169;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 170;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 171;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 172;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 173;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 174;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 175;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 176;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 177;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 178;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 179;4;-0.000001, 0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.811645;;, + 1;3; 1.000000, 1.000000, 1.811645;;, + 2;3; 1.000000, 1.000000, 1.811645;;, + 3;3; 1.000000, 1.000000, 1.811645;;, + 4;3; 1.000000, 1.000000, 1.811645;;, + 5;3; 1.000000, 1.000000, 1.811645;;, + 6;3; 1.000000, 1.000000, 1.811645;;, + 7;3; 1.000000, 1.000000, 1.811645;;, + 8;3; 1.000000, 1.000000, 1.811645;;, + 9;3; 1.000000, 1.000000, 1.811645;;, + 10;3; 1.000000, 1.000000, 1.811645;;, + 11;3; 1.000000, 1.000000, 1.811645;;, + 12;3; 1.000000, 1.000000, 1.811645;;, + 13;3; 1.000000, 1.000000, 1.811645;;, + 14;3; 1.000000, 1.000000, 1.811645;;, + 15;3; 1.000000, 1.000000, 1.811645;;, + 16;3; 1.000000, 1.000000, 1.811645;;, + 17;3; 1.000000, 1.000000, 1.811645;;, + 18;3; 1.000000, 1.000000, 1.811645;;, + 19;3; 1.000000, 1.000000, 1.811645;;, + 20;3; 1.000000, 1.000000, 1.811645;;, + 21;3; 1.000000, 1.000000, 1.811645;;, + 22;3; 1.000000, 1.000000, 1.811645;;, + 23;3; 1.000000, 1.000000, 1.811645;;, + 24;3; 1.000000, 1.000000, 1.811645;;, + 25;3; 1.000000, 1.000000, 1.811645;;, + 26;3; 1.000000, 1.000000, 1.811645;;, + 27;3; 1.000000, 1.000000, 1.811645;;, + 28;3; 1.000000, 1.000000, 1.811645;;, + 29;3; 1.000000, 1.000000, 1.811645;;, + 30;3; 1.000000, 1.000000, 1.811645;;, + 31;3; 1.000000, 1.000000, 1.811645;;, + 32;3; 1.000000, 1.000000, 1.811645;;, + 33;3; 1.000000, 1.000000, 1.811645;;, + 34;3; 1.000000, 1.000000, 1.811645;;, + 35;3; 1.000000, 1.000000, 1.811645;;, + 36;3; 1.000000, 1.000000, 1.811645;;, + 37;3; 1.000000, 1.000000, 1.811645;;, + 38;3; 1.000000, 1.000000, 1.811645;;, + 39;3; 1.000000, 1.000000, 1.811645;;, + 40;3; 1.000000, 1.000000, 1.811645;;, + 41;3; 1.000000, 1.000000, 1.811645;;, + 42;3; 1.000000, 1.000000, 1.811645;;, + 43;3; 1.000000, 1.000000, 1.811645;;, + 44;3; 1.000000, 1.000000, 1.811645;;, + 45;3; 1.000000, 1.000000, 1.811645;;, + 46;3; 1.000000, 1.000000, 1.811645;;, + 47;3; 1.000000, 1.000000, 1.811645;;, + 48;3; 1.000000, 1.000000, 1.811645;;, + 49;3; 1.000000, 1.000000, 1.811645;;, + 50;3; 1.000000, 1.000000, 1.811645;;, + 51;3; 1.000000, 1.000000, 1.811645;;, + 52;3; 1.000000, 1.000000, 1.811645;;, + 53;3; 1.000000, 1.000000, 1.811645;;, + 54;3; 1.000000, 1.000000, 1.811645;;, + 55;3; 1.000000, 1.000000, 1.811645;;, + 56;3; 1.000000, 1.000000, 1.811645;;, + 57;3; 1.000000, 1.000000, 1.811645;;, + 58;3; 1.000000, 1.000000, 1.811645;;, + 59;3; 1.000000, 1.000000, 1.811645;;, + 60;3; 1.000000, 1.000000, 1.811645;;, + 61;3; 1.000000, 1.000000, 1.811645;;, + 62;3; 1.000000, 1.000000, 1.811645;;, + 63;3; 1.000000, 1.000000, 1.811645;;, + 64;3; 1.000000, 1.000000, 1.811645;;, + 65;3; 1.000000, 1.000000, 1.811645;;, + 66;3; 1.000000, 1.000000, 1.811645;;, + 67;3; 1.000000, 1.000000, 1.811645;;, + 68;3; 1.000000, 1.000000, 1.811645;;, + 69;3; 1.000000, 1.000000, 1.811645;;, + 70;3; 1.000000, 1.000000, 1.811645;;, + 71;3; 1.000000, 1.000000, 1.811645;;, + 72;3; 1.000000, 1.000000, 1.811645;;, + 73;3; 1.000000, 1.000000, 1.811645;;, + 74;3; 1.000000, 1.000000, 1.811645;;, + 75;3; 1.000000, 1.000000, 1.811645;;, + 76;3; 1.000000, 1.000000, 1.811645;;, + 77;3; 1.000000, 1.000000, 1.811645;;, + 78;3; 1.000000, 1.000000, 1.811645;;, + 79;3; 1.000000, 1.000000, 1.811645;;, + 80;3; 1.000000, 1.000000, 1.811645;;, + 81;3; 1.000000, 1.000000, 1.811645;;, + 82;3; 1.000000, 1.000000, 1.811645;;, + 83;3; 1.000000, 1.000000, 1.811645;;, + 84;3; 1.000000, 1.000000, 1.811645;;, + 85;3; 1.000000, 1.000000, 1.811645;;, + 86;3; 1.000000, 1.000000, 1.811645;;, + 87;3; 1.000000, 1.000000, 1.811645;;, + 88;3; 1.000000, 1.000000, 1.811645;;, + 89;3; 1.000000, 1.000000, 1.811645;;, + 90;3; 1.000000, 1.000000, 1.811645;;, + 91;3; 1.000000, 1.000000, 1.811645;;, + 92;3; 1.000000, 1.000000, 1.811645;;, + 93;3; 1.000000, 1.000000, 1.811645;;, + 94;3; 1.000000, 1.000000, 1.811645;;, + 95;3; 1.000000, 1.000000, 1.811645;;, + 96;3; 1.000000, 1.000000, 1.811645;;, + 97;3; 1.000000, 1.000000, 1.811645;;, + 98;3; 1.000000, 1.000000, 1.811645;;, + 99;3; 1.000000, 1.000000, 1.811645;;, + 100;3; 1.000000, 1.000000, 1.811645;;, + 101;3; 1.000000, 1.000000, 1.811645;;, + 102;3; 1.000000, 1.000000, 1.811645;;, + 103;3; 1.000000, 1.000000, 1.811645;;, + 104;3; 1.000000, 1.000000, 1.811645;;, + 105;3; 1.000000, 1.000000, 1.811645;;, + 106;3; 1.000000, 1.000000, 1.811645;;, + 107;3; 1.000000, 1.000000, 1.811645;;, + 108;3; 1.000000, 1.000000, 1.811645;;, + 109;3; 1.000000, 1.000000, 1.811645;;, + 110;3; 1.000000, 1.000000, 1.811645;;, + 111;3; 1.000000, 1.000000, 1.811645;;, + 112;3; 1.000000, 1.000000, 1.811645;;, + 113;3; 1.000000, 1.000000, 1.811645;;, + 114;3; 1.000000, 1.000000, 1.811645;;, + 115;3; 1.000000, 1.000000, 1.811645;;, + 116;3; 1.000000, 1.000000, 1.811645;;, + 117;3; 1.000000, 1.000000, 1.811645;;, + 118;3; 1.000000, 1.000000, 1.811645;;, + 119;3; 1.000000, 1.000000, 1.811645;;, + 120;3; 1.000000, 1.000000, 1.811645;;, + 121;3; 1.000000, 1.000000, 1.811645;;, + 122;3; 1.000000, 1.000000, 1.811645;;, + 123;3; 1.000000, 1.000000, 1.811645;;, + 124;3; 1.000000, 1.000000, 1.811645;;, + 125;3; 1.000000, 1.000000, 1.811645;;, + 126;3; 1.000000, 1.000000, 1.811645;;, + 127;3; 1.000000, 1.000000, 1.811645;;, + 128;3; 1.000000, 1.000000, 1.811645;;, + 129;3; 1.000000, 1.000000, 1.811645;;, + 130;3; 1.000000, 1.000000, 1.811645;;, + 131;3; 1.000000, 1.000000, 1.811645;;, + 132;3; 1.000000, 1.000000, 1.811645;;, + 133;3; 1.000000, 1.000000, 1.811645;;, + 134;3; 1.000000, 1.000000, 1.811645;;, + 135;3; 1.000000, 1.000000, 1.811645;;, + 136;3; 1.000000, 1.000000, 1.811645;;, + 137;3; 1.000000, 1.000000, 1.811645;;, + 138;3; 1.000000, 1.000000, 1.811645;;, + 139;3; 1.000000, 1.000000, 1.811645;;, + 140;3; 1.000000, 1.000000, 1.811645;;, + 141;3; 1.000000, 1.000000, 1.811645;;, + 142;3; 1.000000, 1.000000, 1.811645;;, + 143;3; 1.000000, 1.000000, 1.811645;;, + 144;3; 1.000000, 1.000000, 1.811645;;, + 145;3; 1.000000, 1.000000, 1.811645;;, + 146;3; 1.000000, 1.000000, 1.811645;;, + 147;3; 1.000000, 1.000000, 1.811645;;, + 148;3; 1.000000, 1.000000, 1.811645;;, + 149;3; 1.000000, 1.000000, 1.811645;;, + 150;3; 1.000000, 1.000000, 1.811645;;, + 151;3; 1.000000, 1.000000, 1.811645;;, + 152;3; 1.000000, 1.000000, 1.811645;;, + 153;3; 1.000000, 1.000000, 1.811645;;, + 154;3; 1.000000, 1.000000, 1.811645;;, + 155;3; 1.000000, 1.000000, 1.811645;;, + 156;3; 1.000000, 1.000000, 1.811645;;, + 157;3; 1.000000, 1.000000, 1.811645;;, + 158;3; 1.000000, 1.000000, 1.811645;;, + 159;3; 1.000000, 1.000000, 1.811645;;, + 160;3; 1.000000, 1.000000, 1.811645;;, + 161;3; 1.000000, 1.000000, 1.811645;;, + 162;3; 1.000000, 1.000000, 1.811645;;, + 163;3; 1.000000, 1.000000, 1.811645;;, + 164;3; 1.000000, 1.000000, 1.811645;;, + 165;3; 1.000000, 1.000000, 1.811645;;, + 166;3; 1.000000, 1.000000, 1.811645;;, + 167;3; 1.000000, 1.000000, 1.811645;;, + 168;3; 1.000000, 1.000000, 1.811645;;, + 169;3; 1.000000, 1.000000, 1.811645;;, + 170;3; 1.000000, 1.000000, 1.811645;;, + 171;3; 1.000000, 1.000000, 1.811645;;, + 172;3; 1.000000, 1.000000, 1.811645;;, + 173;3; 1.000000, 1.000000, 1.811645;;, + 174;3; 1.000000, 1.000000, 1.811645;;, + 175;3; 1.000000, 1.000000, 1.811645;;, + 176;3; 1.000000, 1.000000, 1.811645;;, + 177;3; 1.000000, 1.000000, 1.811645;;, + 178;3; 1.000000, 1.000000, 1.811645;;, + 179;3; 1.000000, 1.000000, 1.811645;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.449203, 3.843606, 1.832092;;, + 1;3;-1.449203, 3.843606, 1.832092;;, + 2;3;-1.449203, 3.843606, 1.832092;;, + 3;3;-1.449203, 3.843606, 1.832092;;, + 4;3;-1.449203, 3.843606, 1.832092;;, + 5;3;-1.449203, 3.843606, 1.832092;;, + 6;3;-1.449203, 3.843606, 1.832092;;, + 7;3;-1.449203, 3.843606, 1.832092;;, + 8;3;-1.449203, 3.843606, 1.832092;;, + 9;3;-1.449203, 3.843606, 1.832092;;, + 10;3;-1.449203, 3.843606, 1.832092;;, + 11;3;-1.449203, 3.843606, 1.832092;;, + 12;3;-1.449203, 3.843606, 1.832092;;, + 13;3;-1.449203, 3.843606, 1.832092;;, + 14;3;-1.449203, 3.843606, 1.832092;;, + 15;3;-1.449203, 3.843606, 1.832092;;, + 16;3;-1.449203, 3.843606, 1.832092;;, + 17;3;-1.449203, 3.843606, 1.832092;;, + 18;3;-1.449203, 3.843606, 1.832092;;, + 19;3;-1.449203, 3.843606, 1.832092;;, + 20;3;-1.449203, 3.843606, 1.832092;;, + 21;3;-1.449203, 3.843606, 1.832092;;, + 22;3;-1.449203, 3.843606, 1.832092;;, + 23;3;-1.449203, 3.843606, 1.832092;;, + 24;3;-1.449203, 3.843606, 1.832092;;, + 25;3;-1.449203, 3.843606, 1.832092;;, + 26;3;-1.449203, 3.843606, 1.832092;;, + 27;3;-1.449203, 3.843606, 1.832092;;, + 28;3;-1.449203, 3.843606, 1.832092;;, + 29;3;-1.449203, 3.843606, 1.832092;;, + 30;3;-1.449203, 3.843606, 1.832092;;, + 31;3;-1.449203, 3.843606, 1.832092;;, + 32;3;-1.449203, 3.843606, 1.832092;;, + 33;3;-1.449203, 3.843606, 1.832092;;, + 34;3;-1.449203, 3.843606, 1.832092;;, + 35;3;-1.449203, 3.843606, 1.832092;;, + 36;3;-1.449203, 3.843606, 1.832092;;, + 37;3;-1.449203, 3.843606, 1.832092;;, + 38;3;-1.449203, 3.843606, 1.832092;;, + 39;3;-1.449203, 3.843606, 1.832092;;, + 40;3;-1.449203, 3.843606, 1.832092;;, + 41;3;-1.449203, 3.843606, 1.832092;;, + 42;3;-1.449203, 3.843606, 1.832092;;, + 43;3;-1.449203, 3.843606, 1.832092;;, + 44;3;-1.449203, 3.843606, 1.832092;;, + 45;3;-1.449203, 3.843606, 1.832092;;, + 46;3;-1.449203, 3.843606, 1.832092;;, + 47;3;-1.449203, 3.843606, 1.832092;;, + 48;3;-1.449203, 3.843606, 1.832092;;, + 49;3;-1.449203, 3.843606, 1.832092;;, + 50;3;-1.449203, 3.843606, 1.832092;;, + 51;3;-1.449203, 3.843606, 1.832092;;, + 52;3;-1.449203, 3.843606, 1.832092;;, + 53;3;-1.449203, 3.843606, 1.832092;;, + 54;3;-1.449203, 3.843606, 1.832092;;, + 55;3;-1.449203, 3.843606, 1.832092;;, + 56;3;-1.449203, 3.843606, 1.832092;;, + 57;3;-1.449203, 3.843606, 1.832092;;, + 58;3;-1.449203, 3.843606, 1.832092;;, + 59;3;-1.449203, 3.843606, 1.832092;;, + 60;3;-1.449203, 3.843606, 1.832092;;, + 61;3;-1.449203, 3.843606, 1.832092;;, + 62;3;-1.449203, 3.843606, 1.832092;;, + 63;3;-1.449203, 3.843606, 1.832092;;, + 64;3;-1.449203, 3.843606, 1.832092;;, + 65;3;-1.449203, 3.843606, 1.832092;;, + 66;3;-1.449203, 3.843606, 1.832092;;, + 67;3;-1.449203, 3.843606, 1.832092;;, + 68;3;-1.449203, 3.843606, 1.832092;;, + 69;3;-1.449203, 3.843606, 1.832092;;, + 70;3;-1.449203, 3.843606, 1.832092;;, + 71;3;-1.449203, 3.843606, 1.832092;;, + 72;3;-1.449203, 3.843606, 1.832092;;, + 73;3;-1.449203, 3.843606, 1.832092;;, + 74;3;-1.449203, 3.843606, 1.832092;;, + 75;3;-1.449203, 3.843606, 1.832092;;, + 76;3;-1.449203, 3.843606, 1.832092;;, + 77;3;-1.449203, 3.843606, 1.832092;;, + 78;3;-1.449203, 3.843606, 1.832092;;, + 79;3;-1.449203, 3.843606, 1.832092;;, + 80;3;-1.449203, 3.843606, 1.832092;;, + 81;3;-1.449203, 3.843606, 1.832092;;, + 82;3;-1.449203, 3.843606, 1.832092;;, + 83;3;-1.449203, 3.843606, 1.832092;;, + 84;3;-1.449203, 3.843606, 1.832092;;, + 85;3;-1.449203, 3.843606, 1.832092;;, + 86;3;-1.449203, 3.843606, 1.832092;;, + 87;3;-1.449203, 3.843606, 1.832092;;, + 88;3;-1.449203, 3.843606, 1.832092;;, + 89;3;-1.449203, 3.843606, 1.832092;;, + 90;3;-1.449203, 3.843606, 1.832092;;, + 91;3;-1.449203, 3.843606, 1.832092;;, + 92;3;-1.449203, 3.843606, 1.832092;;, + 93;3;-1.449203, 3.843606, 1.832092;;, + 94;3;-1.449203, 3.843606, 1.832092;;, + 95;3;-1.449203, 3.843606, 1.832092;;, + 96;3;-1.449203, 3.843606, 1.832092;;, + 97;3;-1.449203, 3.843606, 1.832092;;, + 98;3;-1.449203, 3.843606, 1.832092;;, + 99;3;-1.449203, 3.843606, 1.832092;;, + 100;3;-1.449203, 3.843606, 1.832092;;, + 101;3;-1.449203, 3.843606, 1.832092;;, + 102;3;-1.449203, 3.843606, 1.832092;;, + 103;3;-1.449203, 3.843606, 1.832092;;, + 104;3;-1.449203, 3.843606, 1.832092;;, + 105;3;-1.449203, 3.843606, 1.832092;;, + 106;3;-1.449203, 3.843606, 1.832092;;, + 107;3;-1.449203, 3.843606, 1.832092;;, + 108;3;-1.449203, 3.843606, 1.832092;;, + 109;3;-1.449203, 3.843606, 1.832092;;, + 110;3;-1.449203, 3.843606, 1.832092;;, + 111;3;-1.449203, 3.843606, 1.832092;;, + 112;3;-1.449203, 3.843606, 1.832092;;, + 113;3;-1.449203, 3.843606, 1.832092;;, + 114;3;-1.449203, 3.843606, 1.832092;;, + 115;3;-1.449203, 3.843606, 1.832092;;, + 116;3;-1.449203, 3.843606, 1.832092;;, + 117;3;-1.449203, 3.843606, 1.832092;;, + 118;3;-1.449203, 3.843606, 1.832092;;, + 119;3;-1.449203, 3.843606, 1.832092;;, + 120;3;-1.449203, 3.843606, 1.832092;;, + 121;3;-1.449203, 3.843606, 1.832092;;, + 122;3;-1.449203, 3.843606, 1.832092;;, + 123;3;-1.449203, 3.843606, 1.832092;;, + 124;3;-1.449203, 3.843606, 1.832092;;, + 125;3;-1.449203, 3.843606, 1.832092;;, + 126;3;-1.449203, 3.843606, 1.832092;;, + 127;3;-1.449203, 3.843606, 1.832092;;, + 128;3;-1.449203, 3.843606, 1.832092;;, + 129;3;-1.449203, 3.843606, 1.832092;;, + 130;3;-1.449203, 3.843606, 1.832092;;, + 131;3;-1.449203, 3.843606, 1.832092;;, + 132;3;-1.449203, 3.843606, 1.832092;;, + 133;3;-1.449203, 3.843606, 1.832092;;, + 134;3;-1.449203, 3.843606, 1.832092;;, + 135;3;-1.449203, 3.843606, 1.832092;;, + 136;3;-1.449203, 3.843606, 1.832092;;, + 137;3;-1.449203, 3.843606, 1.832092;;, + 138;3;-1.449203, 3.843606, 1.832092;;, + 139;3;-1.449203, 3.843606, 1.832092;;, + 140;3;-1.449203, 3.843606, 1.832092;;, + 141;3;-1.449203, 3.843606, 1.832092;;, + 142;3;-1.449203, 3.843606, 1.832092;;, + 143;3;-1.449203, 3.843606, 1.832092;;, + 144;3;-1.449203, 3.843606, 1.832092;;, + 145;3;-1.449203, 3.843606, 1.832092;;, + 146;3;-1.449203, 3.843606, 1.832092;;, + 147;3;-1.449203, 3.843606, 1.832092;;, + 148;3;-1.449203, 3.843606, 1.832092;;, + 149;3;-1.449203, 3.843606, 1.832092;;, + 150;3;-1.449203, 3.843606, 1.832092;;, + 151;3;-1.449203, 3.843606, 1.832092;;, + 152;3;-1.449203, 3.843606, 1.832092;;, + 153;3;-1.449203, 3.843606, 1.832092;;, + 154;3;-1.449203, 3.843606, 1.832092;;, + 155;3;-1.449203, 3.843606, 1.832092;;, + 156;3;-1.449203, 3.843606, 1.832092;;, + 157;3;-1.449203, 3.843606, 1.832092;;, + 158;3;-1.449203, 3.843606, 1.832092;;, + 159;3;-1.449203, 3.843606, 1.832092;;, + 160;3;-1.449203, 3.843606, 1.832092;;, + 161;3;-1.449203, 3.843606, 1.832092;;, + 162;3;-1.449203, 3.843606, 1.832092;;, + 163;3;-1.449203, 3.843606, 1.832092;;, + 164;3;-1.449203, 3.843606, 1.832092;;, + 165;3;-1.449203, 3.843606, 1.832092;;, + 166;3;-1.449203, 3.843606, 1.832092;;, + 167;3;-1.449203, 3.843606, 1.832092;;, + 168;3;-1.449203, 3.843606, 1.832092;;, + 169;3;-1.449203, 3.843606, 1.832092;;, + 170;3;-1.449203, 3.843606, 1.832092;;, + 171;3;-1.449203, 3.843606, 1.832092;;, + 172;3;-1.449203, 3.843606, 1.832092;;, + 173;3;-1.449203, 3.843606, 1.832092;;, + 174;3;-1.449203, 3.843606, 1.832092;;, + 175;3;-1.449203, 3.843606, 1.832092;;, + 176;3;-1.449203, 3.843606, 1.832092;;, + 177;3;-1.449203, 3.843606, 1.832092;;, + 178;3;-1.449203, 3.843606, 1.832092;;, + 179;3;-1.449203, 3.843606, 1.832092;;; + } + } + Animation { + {Cow_Rig} + AnimationKey { // Rotation + 0; + 180; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Cow_Rig_Root} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 158;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 159;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 160;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 163;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 164;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 165;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 166;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 167;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Cow_Rig_Body} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 24;4;-0.707100,-0.707100, 0.000762,-0.000762;;, + 25;4;-0.707081,-0.707081, 0.002981,-0.002981;;, + 26;4;-0.707053,-0.707053, 0.006170,-0.006170;;, + 27;4;-0.707025,-0.707025, 0.009360,-0.009360;;, + 28;4;-0.707006,-0.707006, 0.011578,-0.011578;;, + 29;4;-0.706999,-0.706999, 0.012341,-0.012341;;, + 30;4;-0.707006,-0.707006, 0.011859,-0.011859;;, + 31;4;-0.707025,-0.707025, 0.010366,-0.010366;;, + 32;4;-0.707053,-0.707053, 0.007977,-0.007977;;, + 33;4;-0.707081,-0.707081, 0.005120,-0.005120;;, + 34;4;-0.707100,-0.707100, 0.002338,-0.002338;;, + 35;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 36;4;-0.707100,-0.707100,-0.002338, 0.002338;;, + 37;4;-0.707081,-0.707081,-0.005120, 0.005120;;, + 38;4;-0.707053,-0.707053,-0.007977, 0.007977;;, + 39;4;-0.707025,-0.707025,-0.010366, 0.010366;;, + 40;4;-0.707006,-0.707006,-0.011859, 0.011859;;, + 41;4;-0.706999,-0.706999,-0.012341, 0.012341;;, + 42;4;-0.707003,-0.707003,-0.011912, 0.011912;;, + 43;4;-0.707014,-0.707014,-0.010634, 0.010634;;, + 44;4;-0.707032,-0.707032,-0.008622, 0.008622;;, + 45;4;-0.707053,-0.707053,-0.006170, 0.006170;;, + 46;4;-0.707074,-0.707074,-0.003719, 0.003719;;, + 47;4;-0.707092,-0.707092,-0.001707, 0.001707;;, + 48;4;-0.707103,-0.707103,-0.000428, 0.000428;;, + 49;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 158;4;-0.697711,-0.697711,-0.022700, 0.022700;;, + 159;4;-0.669922,-0.669922,-0.089721, 0.089721;;, + 160;4;-0.627593,-0.627593,-0.191701, 0.191701;;, + 161;4;-0.579576,-0.579576,-0.307439, 0.307439;;, + 162;4;-0.537223,-0.537223,-0.409744, 0.409744;;, + 163;4;-0.509408,-0.509408,-0.477140, 0.477140;;, + 164;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 165;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 166;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 167;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 168;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 169;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 170;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 171;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 172;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 173;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 174;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 175;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 176;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 177;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 178;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 179;4;-0.500000,-0.500000,-0.500000, 0.500000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000,11.409506, 5.419243;;, + 1;3; 0.000000,11.409506, 5.419243;;, + 2;3; 0.000000,11.409506, 5.419243;;, + 3;3; 0.000000,11.409506, 5.419243;;, + 4;3; 0.000000,11.409506, 5.419243;;, + 5;3; 0.000000,11.409506, 5.419243;;, + 6;3; 0.000000,11.409506, 5.419243;;, + 7;3; 0.000000,11.409506, 5.419243;;, + 8;3; 0.000000,11.409506, 5.419243;;, + 9;3; 0.000000,11.409506, 5.419243;;, + 10;3; 0.000000,11.409506, 5.419243;;, + 11;3; 0.000000,11.409506, 5.419243;;, + 12;3; 0.000000,11.409506, 5.419243;;, + 13;3; 0.000000,11.409506, 5.419243;;, + 14;3; 0.000000,11.409506, 5.419243;;, + 15;3; 0.000000,11.409506, 5.419243;;, + 16;3; 0.000000,11.409506, 5.419243;;, + 17;3; 0.000000,11.409506, 5.419243;;, + 18;3; 0.000000,11.409506, 5.419243;;, + 19;3; 0.000000,11.409506, 5.419243;;, + 20;3; 0.000000,11.409506, 5.419243;;, + 21;3; 0.000000,11.409506, 5.419243;;, + 22;3; 0.000000,11.409506, 5.419243;;, + 23;3; 0.000000,11.409506, 5.419243;;, + 24;3; 0.000000,11.409506, 5.419243;;, + 25;3; 0.000000,11.409506, 5.419243;;, + 26;3; 0.000000,11.409506, 5.419243;;, + 27;3; 0.000000,11.409506, 5.419243;;, + 28;3; 0.000000,11.409506, 5.419243;;, + 29;3; 0.000000,11.409506, 5.419243;;, + 30;3; 0.000000,11.409506, 5.419243;;, + 31;3; 0.000000,11.409506, 5.419243;;, + 32;3; 0.000000,11.409506, 5.419243;;, + 33;3; 0.000000,11.409506, 5.419243;;, + 34;3; 0.000000,11.409506, 5.419243;;, + 35;3; 0.000000,11.409506, 5.419243;;, + 36;3; 0.000000,11.409506, 5.419243;;, + 37;3; 0.000000,11.409506, 5.419243;;, + 38;3; 0.000000,11.409506, 5.419243;;, + 39;3; 0.000000,11.409506, 5.419243;;, + 40;3; 0.000000,11.409506, 5.419243;;, + 41;3; 0.000000,11.409506, 5.419243;;, + 42;3; 0.000000,11.409506, 5.419243;;, + 43;3; 0.000000,11.409506, 5.419243;;, + 44;3; 0.000000,11.409506, 5.419243;;, + 45;3; 0.000000,11.409506, 5.419243;;, + 46;3; 0.000000,11.409506, 5.419243;;, + 47;3; 0.000000,11.409506, 5.419243;;, + 48;3; 0.000000,11.409506, 5.419243;;, + 49;3; 0.000000,11.409506, 5.419243;;, + 50;3; 0.000000,11.409506, 5.419243;;, + 51;3; 0.000000,11.409506, 5.419243;;, + 52;3; 0.000000,11.409506, 5.419243;;, + 53;3; 0.000000,11.409506, 5.419243;;, + 54;3; 0.000000,11.409506, 5.419243;;, + 55;3; 0.000000,11.409506, 5.419243;;, + 56;3; 0.000000,11.409506, 5.419243;;, + 57;3; 0.000000,11.409506, 5.419243;;, + 58;3; 0.000000,11.409506, 5.419243;;, + 59;3; 0.000000,11.409506, 5.419243;;, + 60;3; 0.000000,11.409506, 5.419243;;, + 61;3; 0.000000,11.409506, 5.419243;;, + 62;3; 0.000000,11.409506, 5.419243;;, + 63;3; 0.000000,11.409506, 5.419243;;, + 64;3; 0.000000,11.409506, 5.419243;;, + 65;3; 0.000000,11.409506, 5.419243;;, + 66;3; 0.000000,11.409506, 5.419243;;, + 67;3; 0.000000,11.409506, 5.419243;;, + 68;3; 0.000000,11.409506, 5.419243;;, + 69;3; 0.000000,11.409506, 5.419243;;, + 70;3; 0.000000,11.409506, 5.419243;;, + 71;3; 0.000000,11.409506, 5.419243;;, + 72;3; 0.000000,11.409506, 5.419243;;, + 73;3; 0.000000,11.409506, 5.419243;;, + 74;3; 0.000000,11.409506, 5.419243;;, + 75;3; 0.000000,11.409506, 5.419243;;, + 76;3; 0.000000,11.409506, 5.419243;;, + 77;3; 0.000000,11.409506, 5.419243;;, + 78;3; 0.000000,11.409506, 5.419243;;, + 79;3; 0.000000,11.409506, 5.419243;;, + 80;3; 0.000000,11.409506, 5.419243;;, + 81;3; 0.000000,11.409506, 5.419243;;, + 82;3; 0.000000,11.409506, 5.419243;;, + 83;3; 0.000000,11.409506, 5.419243;;, + 84;3; 0.000000,11.409506, 5.419243;;, + 85;3; 0.000000,11.409506, 5.419243;;, + 86;3; 0.000000,11.409506, 5.419243;;, + 87;3; 0.000000,11.409506, 5.419243;;, + 88;3; 0.000000,11.409506, 5.419243;;, + 89;3; 0.000000,11.409506, 5.419243;;, + 90;3; 0.000000,11.409506, 5.419243;;, + 91;3; 0.000000,11.409506, 5.419243;;, + 92;3; 0.000000,11.409506, 5.419243;;, + 93;3; 0.000000,11.409506, 5.419243;;, + 94;3; 0.000000,11.409506, 5.419243;;, + 95;3; 0.000000,11.409506, 5.419243;;, + 96;3; 0.000000,11.409506, 5.419243;;, + 97;3; 0.000000,11.409506, 5.419243;;, + 98;3; 0.000000,11.409506, 5.419243;;, + 99;3; 0.000000,11.409506, 5.419243;;, + 100;3; 0.000000,11.409506, 5.419243;;, + 101;3; 0.000000,11.409506, 5.419243;;, + 102;3; 0.000000,11.409506, 5.419243;;, + 103;3; 0.000000,11.409506, 5.419243;;, + 104;3; 0.000000,11.409506, 5.419243;;, + 105;3; 0.000000,11.409506, 5.419243;;, + 106;3; 0.000000,11.409506, 5.419243;;, + 107;3; 0.000000,11.409506, 5.419243;;, + 108;3; 0.000000,11.409506, 5.419243;;, + 109;3; 0.000000,11.409506, 5.419243;;, + 110;3; 0.000000,11.409506, 5.419243;;, + 111;3; 0.000000,11.409506, 5.419243;;, + 112;3; 0.000000,11.409506, 5.419243;;, + 113;3; 0.000000,11.409506, 5.419243;;, + 114;3; 0.000000,11.409506, 5.419243;;, + 115;3; 0.000000,11.409506, 5.419243;;, + 116;3; 0.000000,11.409506, 5.419243;;, + 117;3; 0.000000,11.409506, 5.419243;;, + 118;3; 0.000000,11.409506, 5.419243;;, + 119;3; 0.000000,11.929585, 5.419243;;, + 120;3; 0.000000,12.472727, 5.419243;;, + 121;3; 0.000000,12.960096, 5.419243;;, + 122;3; 0.000000,13.352370, 5.419243;;, + 123;3; 0.000000,13.616222, 5.419243;;, + 124;3; 0.000000,13.714186, 5.419243;;, + 125;3; 0.000000,13.634228, 5.419243;;, + 126;3; 0.000000,13.396275, 5.419243;;, + 127;3; 0.000000,13.022429, 5.419243;;, + 128;3; 0.000000,12.566847, 5.419243;;, + 129;3; 0.000000,12.109687, 5.419243;;, + 130;3; 0.000000,11.732204, 5.419243;;, + 131;3; 0.000000,11.490833, 5.419243;;, + 132;3; 0.000000,11.409506, 5.419243;;, + 133;3; 0.000000,11.409436, 5.419243;;, + 134;3; 0.000000,11.409246, 5.419243;;, + 135;3; 0.000000,11.408957, 5.419243;;, + 136;3; 0.000000,11.408587, 5.419243;;, + 137;3; 0.000000,11.408154, 5.419243;;, + 138;3; 0.000000,11.407667, 5.419243;;, + 139;3; 0.000000,11.407142, 5.419243;;, + 140;3; 0.000000,11.406587, 5.419243;;, + 141;3; 0.000000,11.406015, 5.419243;;, + 142;3; 0.000000,11.405437, 5.419243;;, + 143;3; 0.000000,11.404861, 5.419243;;, + 144;3; 0.000000,11.404304, 5.419243;;, + 145;3; 0.000000,11.403775, 5.419243;;, + 146;3; 0.000000,11.403294, 5.419243;;, + 147;3; 0.000000,11.402880, 5.419243;;, + 148;3; 0.000000,11.402558, 5.419243;;, + 149;3; 0.000000,11.402367, 5.419243;;, + 150;3; 0.000000,11.402359, 5.419243;;, + 151;3; 0.000000,11.402626, 5.419243;;, + 152;3; 0.000000,11.403333, 5.419243;;, + 153;3; 0.000000,11.404892, 5.419243;;, + 154;3; 0.000000,11.409506, 5.419243;;, + 155;3; 0.000000,12.021920, 5.419243;;, + 156;3; 0.000000,12.973394, 5.419243;;, + 157;3; 0.000000,13.409506, 5.419243;;, + 158;3;-0.011617,13.068136, 5.419243;;, + 159;3;-0.045976,12.249222, 5.419243;;, + 160;3;-0.098318,11.118513, 5.419243;;, + 161;3;-0.157691, 9.755448, 5.419243;;, + 162;3;-0.210054, 8.200048, 5.419243;;, + 163;3;-0.244439, 6.462389, 5.419243;;, + 164;3;-0.256067, 4.396759, 5.419243;;, + 165;3;-0.256067, 4.396759, 5.419243;;, + 166;3;-0.256067, 4.396759, 5.419243;;, + 167;3;-0.256067, 4.396759, 5.419243;;, + 168;3;-0.256067, 4.396759, 5.419243;;, + 169;3;-0.256067, 4.396759, 5.419243;;, + 170;3;-0.256067, 4.396759, 5.419243;;, + 171;3;-0.256067, 4.396759, 5.419243;;, + 172;3;-0.256067, 4.396759, 5.419243;;, + 173;3;-0.256067, 4.396759, 5.419243;;, + 174;3;-0.256067, 4.396759, 5.419243;;, + 175;3;-0.256067, 4.396759, 5.419243;;, + 176;3;-0.256067, 4.396759, 5.419243;;, + 177;3;-0.256067, 4.396759, 5.419243;;, + 178;3;-0.256067, 4.396759, 5.419243;;, + 179;3;-0.256067, 4.396759, 5.419243;;; + } + } + Animation { + {Cow_Rig_Leg_B_L} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.677652,-0.732304, 0.001104,-0.001104;;, + 156;4;-0.614838,-0.785491, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.555869,-0.832037, 0.004091,-0.004091;;, + 159;4;-0.541254,-0.842217, 0.003516,-0.003516;;, + 160;4;-0.530481,-0.849211, 0.002640,-0.002640;;, + 161;4;-0.523690,-0.853119, 0.001646,-0.001646;;, + 162;4;-0.520229,-0.854693, 0.000770,-0.000770;;, + 163;4;-0.518938,-0.855000, 0.000194,-0.000194;;, + 164;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 165;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 166;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 167;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 168;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 169;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 170;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 171;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 172;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 173;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 174;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 175;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 176;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 177;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 178;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 179;4;-0.518701,-0.854956, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.760948, 0.613843,-3.417443;;, + 1;3;-1.760948, 0.613843,-3.417443;;, + 2;3;-1.760948, 0.613843,-3.417443;;, + 3;3;-1.760948, 0.613843,-3.417443;;, + 4;3;-1.760948, 0.613843,-3.417443;;, + 5;3;-1.760948, 0.613843,-3.417443;;, + 6;3;-1.760948, 0.613843,-3.417443;;, + 7;3;-1.760948, 0.613843,-3.417443;;, + 8;3;-1.760948, 0.613843,-3.417443;;, + 9;3;-1.760948, 0.613843,-3.417443;;, + 10;3;-1.760948, 0.613843,-3.417443;;, + 11;3;-1.760948, 0.613843,-3.417443;;, + 12;3;-1.760948, 0.613843,-3.417443;;, + 13;3;-1.760948, 0.613843,-3.417443;;, + 14;3;-1.760948, 0.613843,-3.417443;;, + 15;3;-1.760948, 0.613843,-3.417443;;, + 16;3;-1.760948, 0.613843,-3.417443;;, + 17;3;-1.760948, 0.613843,-3.417443;;, + 18;3;-1.760948, 0.613843,-3.417443;;, + 19;3;-1.760948, 0.613843,-3.417443;;, + 20;3;-1.760948, 0.613843,-3.417443;;, + 21;3;-1.760948, 0.613843,-3.417443;;, + 22;3;-1.760948, 0.613843,-3.417443;;, + 23;3;-1.760948, 0.613843,-3.417443;;, + 24;3;-1.760948, 0.613843,-3.417443;;, + 25;3;-1.760948, 0.613843,-3.417442;;, + 26;3;-1.760948, 0.613843,-3.417443;;, + 27;3;-1.760948, 0.613843,-3.417443;;, + 28;3;-1.760948, 0.613843,-3.417442;;, + 29;3;-1.760948, 0.613843,-3.417443;;, + 30;3;-1.760948, 0.613843,-3.417443;;, + 31;3;-1.760948, 0.613842,-3.417443;;, + 32;3;-1.760948, 0.613843,-3.417443;;, + 33;3;-1.760948, 0.613843,-3.417443;;, + 34;3;-1.760948, 0.613843,-3.417443;;, + 35;3;-1.760948, 0.613843,-3.417443;;, + 36;3;-1.760948, 0.613843,-3.417443;;, + 37;3;-1.760948, 0.613843,-3.417443;;, + 38;3;-1.760948, 0.613843,-3.417443;;, + 39;3;-1.760948, 0.613842,-3.417443;;, + 40;3;-1.760948, 0.613843,-3.417443;;, + 41;3;-1.760948, 0.613843,-3.417443;;, + 42;3;-1.760948, 0.613843,-3.417443;;, + 43;3;-1.760948, 0.613843,-3.417443;;, + 44;3;-1.760948, 0.613843,-3.417443;;, + 45;3;-1.760948, 0.613843,-3.417443;;, + 46;3;-1.760948, 0.613843,-3.417442;;, + 47;3;-1.760948, 0.613843,-3.417443;;, + 48;3;-1.760948, 0.613843,-3.417443;;, + 49;3;-1.760948, 0.613843,-3.417443;;, + 50;3;-1.760948, 0.613843,-3.417443;;, + 51;3;-1.760948, 0.613843,-3.417443;;, + 52;3;-1.760948, 0.613843,-3.417443;;, + 53;3;-1.760948, 0.613843,-3.417443;;, + 54;3;-1.760948, 0.613843,-3.417443;;, + 55;3;-1.760948, 0.613843,-3.417443;;, + 56;3;-1.760948, 0.613843,-3.417443;;, + 57;3;-1.760948, 0.613843,-3.417443;;, + 58;3;-1.760948, 0.613843,-3.417443;;, + 59;3;-1.760948, 0.613843,-3.417443;;, + 60;3;-1.760948, 0.613843,-3.417443;;, + 61;3;-1.760948, 0.613843,-3.417443;;, + 62;3;-1.760948, 0.613843,-3.417443;;, + 63;3;-1.760948, 0.613843,-3.417443;;, + 64;3;-1.760948, 0.613843,-3.417443;;, + 65;3;-1.760948, 0.613843,-3.417443;;, + 66;3;-1.760948, 0.613843,-3.417443;;, + 67;3;-1.760948, 0.613843,-3.417443;;, + 68;3;-1.760948, 0.613843,-3.417443;;, + 69;3;-1.760948, 0.613843,-3.417443;;, + 70;3;-1.760948, 0.613843,-3.417443;;, + 71;3;-1.760948, 0.613843,-3.417443;;, + 72;3;-1.760948, 0.613843,-3.417443;;, + 73;3;-1.760948, 0.613843,-3.417443;;, + 74;3;-1.760948, 0.613843,-3.417443;;, + 75;3;-1.760948, 0.613843,-3.417443;;, + 76;3;-1.760948, 0.613843,-3.417443;;, + 77;3;-1.760948, 0.613843,-3.417443;;, + 78;3;-1.760948, 0.613843,-3.417443;;, + 79;3;-1.760948, 0.613843,-3.417443;;, + 80;3;-1.760948, 0.613843,-3.417443;;, + 81;3;-1.760948, 0.613843,-3.417443;;, + 82;3;-1.760948, 0.613843,-3.417443;;, + 83;3;-1.760948, 0.613843,-3.417443;;, + 84;3;-1.760948, 0.613843,-3.417443;;, + 85;3;-1.760948, 0.613843,-3.417443;;, + 86;3;-1.760948, 0.613843,-3.417443;;, + 87;3;-1.760948, 0.613843,-3.417443;;, + 88;3;-1.760948, 0.613843,-3.417443;;, + 89;3;-1.760948, 0.613843,-3.417443;;, + 90;3;-1.760948, 0.613843,-3.417443;;, + 91;3;-1.760948, 0.613843,-3.417443;;, + 92;3;-1.760948, 0.613843,-3.417443;;, + 93;3;-1.760948, 0.613843,-3.417443;;, + 94;3;-1.760948, 0.613843,-3.417443;;, + 95;3;-1.760948, 0.613843,-3.417443;;, + 96;3;-1.760948, 0.613843,-3.417443;;, + 97;3;-1.760948, 0.613843,-3.417443;;, + 98;3;-1.760948, 0.613843,-3.417443;;, + 99;3;-1.760948, 0.613843,-3.417443;;, + 100;3;-1.760948, 0.613843,-3.417443;;, + 101;3;-1.760948, 0.613843,-3.417443;;, + 102;3;-1.760948, 0.613843,-3.417443;;, + 103;3;-1.760948, 0.613843,-3.417443;;, + 104;3;-1.760948, 0.613843,-3.417443;;, + 105;3;-1.760948, 0.613843,-3.417443;;, + 106;3;-1.760948, 0.613843,-3.417443;;, + 107;3;-1.760948, 0.613843,-3.417443;;, + 108;3;-1.760948, 0.613843,-3.417443;;, + 109;3;-1.760948, 0.613843,-3.417443;;, + 110;3;-1.760948, 0.613843,-3.417443;;, + 111;3;-1.760948, 0.613843,-3.417443;;, + 112;3;-1.760948, 0.613843,-3.417443;;, + 113;3;-1.760948, 0.613843,-3.417443;;, + 114;3;-1.760948, 0.613843,-3.417443;;, + 115;3;-1.760948, 0.613843,-3.417443;;, + 116;3;-1.760948, 0.613843,-3.417443;;, + 117;3;-1.760948, 0.613843,-3.417443;;, + 118;3;-1.760948, 0.613843,-3.417443;;, + 119;3;-1.760948, 0.613843,-3.417442;;, + 120;3;-1.760948, 0.613843,-3.417442;;, + 121;3;-1.760948, 0.613843,-3.417442;;, + 122;3;-1.760948, 0.613843,-3.417443;;, + 123;3;-1.760948, 0.613843,-3.417442;;, + 124;3;-1.760948, 0.613843,-3.417442;;, + 125;3;-1.760948, 0.613843,-3.417442;;, + 126;3;-1.760948, 0.613843,-3.417442;;, + 127;3;-1.760948, 0.613843,-3.417443;;, + 128;3;-1.760948, 0.613843,-3.417442;;, + 129;3;-1.760948, 0.613843,-3.417443;;, + 130;3;-1.760948, 0.613843,-3.417442;;, + 131;3;-1.760948, 0.613843,-3.417442;;, + 132;3;-1.760948, 0.613843,-3.417443;;, + 133;3;-1.760948, 0.613843,-3.417443;;, + 134;3;-1.760948, 0.613843,-3.417443;;, + 135;3;-1.760948, 0.613843,-3.417443;;, + 136;3;-1.760948, 0.613843,-3.417443;;, + 137;3;-1.760948, 0.613843,-3.417443;;, + 138;3;-1.760948, 0.613843,-3.417443;;, + 139;3;-1.760948, 0.613843,-3.417443;;, + 140;3;-1.760948, 0.613843,-3.417443;;, + 141;3;-1.760948, 0.613843,-3.417443;;, + 142;3;-1.760948, 0.613843,-3.417443;;, + 143;3;-1.760948, 0.613843,-3.417443;;, + 144;3;-1.760948, 0.613843,-3.417443;;, + 145;3;-1.760948, 0.613843,-3.417443;;, + 146;3;-1.760948, 0.613843,-3.417443;;, + 147;3;-1.760948, 0.613843,-3.417443;;, + 148;3;-1.760948, 0.613843,-3.417443;;, + 149;3;-1.760948, 0.613843,-3.417443;;, + 150;3;-1.760948, 0.613843,-3.417443;;, + 151;3;-1.760948, 0.613843,-3.417443;;, + 152;3;-1.760948, 0.613843,-3.417443;;, + 153;3;-1.760948, 0.613843,-3.417443;;, + 154;3;-1.760948, 0.613843,-3.417443;;, + 155;3;-1.760948, 0.613843,-3.417443;;, + 156;3;-1.760948, 0.613843,-3.417442;;, + 157;3;-1.760948, 0.613843,-3.417442;;, + 158;3;-1.760948, 0.613843,-3.417443;;, + 159;3;-1.760948, 0.613843,-3.417443;;, + 160;3;-1.760948, 0.613843,-3.417442;;, + 161;3;-1.760948, 0.613843,-3.417443;;, + 162;3;-1.760947, 0.613843,-3.417443;;, + 163;3;-1.760948, 0.613843,-3.417443;;, + 164;3;-1.760948, 0.613842,-3.417443;;, + 165;3;-1.760948, 0.613842,-3.417443;;, + 166;3;-1.760948, 0.613842,-3.417443;;, + 167;3;-1.760948, 0.613842,-3.417443;;, + 168;3;-1.760948, 0.613842,-3.417443;;, + 169;3;-1.760948, 0.613842,-3.417443;;, + 170;3;-1.760948, 0.613842,-3.417443;;, + 171;3;-1.760948, 0.613842,-3.417443;;, + 172;3;-1.760948, 0.613842,-3.417443;;, + 173;3;-1.760948, 0.613842,-3.417443;;, + 174;3;-1.760948, 0.613842,-3.417443;;, + 175;3;-1.760948, 0.613842,-3.417443;;, + 176;3;-1.760948, 0.613842,-3.417443;;, + 177;3;-1.760948, 0.613842,-3.417443;;, + 178;3;-1.760948, 0.613842,-3.417443;;, + 179;3;-1.760948, 0.613842,-3.417443;;; + } + } + Animation { + {Cow_Rig_Leg_F_L} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729690,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640378, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.673113,-0.736384, 0.001104,-0.001104;;, + 156;4;-0.605738,-0.793671, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.584336,-0.805462, 0.004091,-0.004091;;, + 159;4;-0.619086,-0.768348, 0.003516,-0.003516;;, + 160;4;-0.672979,-0.712760, 0.002640,-0.002640;;, + 161;4;-0.734582,-0.650136, 0.001646,-0.001646;;, + 162;4;-0.789150,-0.595088, 0.000770,-0.000770;;, + 163;4;-0.825083,-0.559002, 0.000195,-0.000194;;, + 164;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 165;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 166;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 167;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 168;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 169;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 170;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 171;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 172;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 173;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 174;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 175;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 176;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 177;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 178;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 179;4;-0.837257,-0.546810, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.760948, 8.787700,-3.333342;;, + 1;3;-1.760948, 8.787700,-3.333342;;, + 2;3;-1.760948, 8.787700,-3.333342;;, + 3;3;-1.760948, 8.787700,-3.333342;;, + 4;3;-1.760948, 8.787700,-3.333342;;, + 5;3;-1.760948, 8.787700,-3.333342;;, + 6;3;-1.760948, 8.787700,-3.333342;;, + 7;3;-1.760948, 8.787700,-3.333342;;, + 8;3;-1.760948, 8.787700,-3.333342;;, + 9;3;-1.760948, 8.787700,-3.333342;;, + 10;3;-1.760948, 8.787700,-3.333342;;, + 11;3;-1.760948, 8.787700,-3.333342;;, + 12;3;-1.760948, 8.787700,-3.333342;;, + 13;3;-1.760948, 8.787700,-3.333342;;, + 14;3;-1.760948, 8.787700,-3.333342;;, + 15;3;-1.760948, 8.787700,-3.333342;;, + 16;3;-1.760948, 8.787700,-3.333342;;, + 17;3;-1.760948, 8.787700,-3.333342;;, + 18;3;-1.760948, 8.787700,-3.333342;;, + 19;3;-1.760948, 8.787700,-3.333342;;, + 20;3;-1.760948, 8.787700,-3.333342;;, + 21;3;-1.760948, 8.787700,-3.333342;;, + 22;3;-1.760948, 8.787700,-3.333342;;, + 23;3;-1.760948, 8.787700,-3.333342;;, + 24;3;-1.760948, 8.787701,-3.333341;;, + 25;3;-1.760948, 8.787700,-3.333341;;, + 26;3;-1.760948, 8.787700,-3.333342;;, + 27;3;-1.760948, 8.787701,-3.333342;;, + 28;3;-1.760948, 8.787700,-3.333341;;, + 29;3;-1.760948, 8.787700,-3.333341;;, + 30;3;-1.760948, 8.787701,-3.333342;;, + 31;3;-1.760948, 8.787700,-3.333342;;, + 32;3;-1.760948, 8.787701,-3.333342;;, + 33;3;-1.760948, 8.787700,-3.333342;;, + 34;3;-1.760948, 8.787700,-3.333341;;, + 35;3;-1.760948, 8.787700,-3.333342;;, + 36;3;-1.760948, 8.787700,-3.333341;;, + 37;3;-1.760948, 8.787700,-3.333342;;, + 38;3;-1.760948, 8.787700,-3.333342;;, + 39;3;-1.760948, 8.787699,-3.333342;;, + 40;3;-1.760948, 8.787700,-3.333341;;, + 41;3;-1.760948, 8.787700,-3.333341;;, + 42;3;-1.760948, 8.787700,-3.333342;;, + 43;3;-1.760948, 8.787700,-3.333341;;, + 44;3;-1.760948, 8.787700,-3.333342;;, + 45;3;-1.760948, 8.787700,-3.333342;;, + 46;3;-1.760948, 8.787700,-3.333341;;, + 47;3;-1.760948, 8.787700,-3.333341;;, + 48;3;-1.760948, 8.787700,-3.333341;;, + 49;3;-1.760948, 8.787700,-3.333342;;, + 50;3;-1.760948, 8.787700,-3.333342;;, + 51;3;-1.760948, 8.787700,-3.333342;;, + 52;3;-1.760948, 8.787700,-3.333342;;, + 53;3;-1.760948, 8.787700,-3.333342;;, + 54;3;-1.760948, 8.787700,-3.333342;;, + 55;3;-1.760948, 8.787700,-3.333342;;, + 56;3;-1.760948, 8.787700,-3.333342;;, + 57;3;-1.760948, 8.787700,-3.333342;;, + 58;3;-1.760948, 8.787700,-3.333342;;, + 59;3;-1.760948, 8.787700,-3.333342;;, + 60;3;-1.760948, 8.787700,-3.333342;;, + 61;3;-1.760948, 8.787700,-3.333342;;, + 62;3;-1.760948, 8.787700,-3.333342;;, + 63;3;-1.760948, 8.787700,-3.333342;;, + 64;3;-1.760948, 8.787700,-3.333342;;, + 65;3;-1.760948, 8.787700,-3.333342;;, + 66;3;-1.760948, 8.787700,-3.333342;;, + 67;3;-1.760948, 8.787700,-3.333342;;, + 68;3;-1.760948, 8.787700,-3.333342;;, + 69;3;-1.760948, 8.787700,-3.333342;;, + 70;3;-1.760948, 8.787700,-3.333342;;, + 71;3;-1.760948, 8.787700,-3.333342;;, + 72;3;-1.760948, 8.787700,-3.333342;;, + 73;3;-1.760948, 8.787700,-3.333342;;, + 74;3;-1.760948, 8.787700,-3.333342;;, + 75;3;-1.760948, 8.787700,-3.333342;;, + 76;3;-1.760948, 8.787700,-3.333342;;, + 77;3;-1.760948, 8.787700,-3.333342;;, + 78;3;-1.760948, 8.787700,-3.333342;;, + 79;3;-1.760948, 8.787700,-3.333342;;, + 80;3;-1.760948, 8.787700,-3.333342;;, + 81;3;-1.760948, 8.787700,-3.333342;;, + 82;3;-1.760948, 8.787700,-3.333342;;, + 83;3;-1.760948, 8.787700,-3.333342;;, + 84;3;-1.760948, 8.787700,-3.333342;;, + 85;3;-1.760948, 8.787700,-3.333342;;, + 86;3;-1.760948, 8.787700,-3.333342;;, + 87;3;-1.760948, 8.787700,-3.333342;;, + 88;3;-1.760948, 8.787700,-3.333342;;, + 89;3;-1.760948, 8.787700,-3.333342;;, + 90;3;-1.760948, 8.787700,-3.333342;;, + 91;3;-1.760948, 8.787700,-3.333342;;, + 92;3;-1.760948, 8.787700,-3.333342;;, + 93;3;-1.760948, 8.787700,-3.333342;;, + 94;3;-1.760948, 8.787700,-3.333342;;, + 95;3;-1.760948, 8.787700,-3.333342;;, + 96;3;-1.760948, 8.787700,-3.333342;;, + 97;3;-1.760948, 8.787700,-3.333342;;, + 98;3;-1.760948, 8.787700,-3.333342;;, + 99;3;-1.760948, 8.787700,-3.333342;;, + 100;3;-1.760948, 8.787700,-3.333342;;, + 101;3;-1.760948, 8.787700,-3.333342;;, + 102;3;-1.760948, 8.787700,-3.333342;;, + 103;3;-1.760948, 8.787700,-3.333342;;, + 104;3;-1.760948, 8.787700,-3.333342;;, + 105;3;-1.760948, 8.787700,-3.333342;;, + 106;3;-1.760948, 8.787700,-3.333342;;, + 107;3;-1.760948, 8.787700,-3.333342;;, + 108;3;-1.760948, 8.787700,-3.333342;;, + 109;3;-1.760948, 8.787700,-3.333342;;, + 110;3;-1.760948, 8.787700,-3.333342;;, + 111;3;-1.760948, 8.787700,-3.333342;;, + 112;3;-1.760948, 8.787700,-3.333342;;, + 113;3;-1.760948, 8.787700,-3.333342;;, + 114;3;-1.760948, 8.787700,-3.333342;;, + 115;3;-1.760948, 8.787700,-3.333342;;, + 116;3;-1.760948, 8.787700,-3.333342;;, + 117;3;-1.760948, 8.787700,-3.333342;;, + 118;3;-1.760948, 8.787700,-3.333342;;, + 119;3;-1.760948, 8.787700,-3.333342;;, + 120;3;-1.760948, 8.787700,-3.333342;;, + 121;3;-1.760948, 8.787700,-3.333342;;, + 122;3;-1.760948, 8.787700,-3.333342;;, + 123;3;-1.760948, 8.787700,-3.333342;;, + 124;3;-1.760948, 8.787700,-3.333342;;, + 125;3;-1.760948, 8.787700,-3.333342;;, + 126;3;-1.760948, 8.787700,-3.333342;;, + 127;3;-1.760948, 8.787700,-3.333342;;, + 128;3;-1.760948, 8.787700,-3.333342;;, + 129;3;-1.760948, 8.787700,-3.333342;;, + 130;3;-1.760948, 8.787700,-3.333342;;, + 131;3;-1.760948, 8.787700,-3.333342;;, + 132;3;-1.760948, 8.787700,-3.333342;;, + 133;3;-1.760948, 8.787700,-3.333342;;, + 134;3;-1.760948, 8.787700,-3.333342;;, + 135;3;-1.760948, 8.787700,-3.333342;;, + 136;3;-1.760948, 8.787700,-3.333342;;, + 137;3;-1.760948, 8.787700,-3.333342;;, + 138;3;-1.760948, 8.787700,-3.333342;;, + 139;3;-1.760948, 8.787700,-3.333342;;, + 140;3;-1.760948, 8.787700,-3.333342;;, + 141;3;-1.760948, 8.787700,-3.333342;;, + 142;3;-1.760948, 8.787700,-3.333342;;, + 143;3;-1.760948, 8.787700,-3.333342;;, + 144;3;-1.760948, 8.787700,-3.333342;;, + 145;3;-1.760948, 8.787700,-3.333342;;, + 146;3;-1.760948, 8.787700,-3.333342;;, + 147;3;-1.760948, 8.787700,-3.333342;;, + 148;3;-1.760948, 8.787700,-3.333342;;, + 149;3;-1.760948, 8.787700,-3.333342;;, + 150;3;-1.760948, 8.787700,-3.333342;;, + 151;3;-1.760948, 8.787700,-3.333342;;, + 152;3;-1.760948, 8.787700,-3.333342;;, + 153;3;-1.760948, 8.787700,-3.333342;;, + 154;3;-1.760948, 8.787700,-3.333342;;, + 155;3;-1.760948, 8.787700,-3.333342;;, + 156;3;-1.760948, 8.787700,-3.333342;;, + 157;3;-1.760948, 8.787700,-3.333342;;, + 158;3;-1.760948, 8.787700,-3.333342;;, + 159;3;-1.760948, 8.787701,-3.333341;;, + 160;3;-1.760948, 8.787700,-3.333341;;, + 161;3;-1.760949, 8.787700,-3.333342;;, + 162;3;-1.760947, 8.787700,-3.333342;;, + 163;3;-1.760948, 8.787700,-3.333342;;, + 164;3;-1.760948, 8.787700,-3.333342;;, + 165;3;-1.760948, 8.787700,-3.333342;;, + 166;3;-1.760948, 8.787700,-3.333342;;, + 167;3;-1.760948, 8.787700,-3.333342;;, + 168;3;-1.760948, 8.787700,-3.333342;;, + 169;3;-1.760948, 8.787700,-3.333342;;, + 170;3;-1.760948, 8.787700,-3.333342;;, + 171;3;-1.760948, 8.787700,-3.333342;;, + 172;3;-1.760948, 8.787700,-3.333342;;, + 173;3;-1.760948, 8.787700,-3.333342;;, + 174;3;-1.760948, 8.787700,-3.333342;;, + 175;3;-1.760948, 8.787700,-3.333342;;, + 176;3;-1.760948, 8.787700,-3.333342;;, + 177;3;-1.760948, 8.787700,-3.333342;;, + 178;3;-1.760948, 8.787700,-3.333342;;, + 179;3;-1.760948, 8.787700,-3.333342;;; + } + } + Animation { + {Cow_Rig_Leg_B_R} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000593, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736713,-0.673453,-0.000673, 0.000673;;, + 156;4;-0.794332,-0.606419,-0.002416, 0.002416;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.815242,-0.571498, 0.000931, 0.013380;;, + 159;4;-0.809622,-0.570851, 0.019673, 0.036966;;, + 160;4;-0.802791,-0.571596, 0.049229, 0.071895;;, + 161;4;-0.795862,-0.573259, 0.083228, 0.111042;;, + 162;4;-0.790135,-0.575105, 0.113432, 0.145342;;, + 163;4;-0.786524,-0.576465, 0.133350, 0.167777;;, + 164;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 165;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 166;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 167;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 168;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 169;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 170;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 171;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 172;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 173;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 174;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 175;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 176;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 177;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 178;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 179;4;-0.785333,-0.576955, 0.140102, 0.175346;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 1.728931, 0.613843,-3.417443;;, + 1;3; 1.728931, 0.613843,-3.417443;;, + 2;3; 1.728931, 0.613843,-3.417443;;, + 3;3; 1.728931, 0.613843,-3.417443;;, + 4;3; 1.728931, 0.613843,-3.417443;;, + 5;3; 1.728931, 0.613843,-3.417443;;, + 6;3; 1.728931, 0.613843,-3.417443;;, + 7;3; 1.728931, 0.613843,-3.417443;;, + 8;3; 1.728931, 0.613843,-3.417443;;, + 9;3; 1.728931, 0.613843,-3.417443;;, + 10;3; 1.728931, 0.613843,-3.417443;;, + 11;3; 1.728931, 0.613843,-3.417443;;, + 12;3; 1.728931, 0.613843,-3.417443;;, + 13;3; 1.728931, 0.613843,-3.417443;;, + 14;3; 1.728931, 0.613843,-3.417443;;, + 15;3; 1.728931, 0.613843,-3.417443;;, + 16;3; 1.728931, 0.613843,-3.417443;;, + 17;3; 1.728931, 0.613843,-3.417443;;, + 18;3; 1.728931, 0.613843,-3.417443;;, + 19;3; 1.728931, 0.613843,-3.417443;;, + 20;3; 1.728931, 0.613843,-3.417443;;, + 21;3; 1.728931, 0.613843,-3.417443;;, + 22;3; 1.728931, 0.613843,-3.417443;;, + 23;3; 1.728931, 0.613843,-3.417443;;, + 24;3; 1.728931, 0.613843,-3.417443;;, + 25;3; 1.728931, 0.613843,-3.417443;;, + 26;3; 1.728931, 0.613843,-3.417443;;, + 27;3; 1.728931, 0.613843,-3.417443;;, + 28;3; 1.728931, 0.613843,-3.417442;;, + 29;3; 1.728931, 0.613843,-3.417443;;, + 30;3; 1.728931, 0.613843,-3.417443;;, + 31;3; 1.728931, 0.613842,-3.417443;;, + 32;3; 1.728931, 0.613843,-3.417442;;, + 33;3; 1.728931, 0.613843,-3.417443;;, + 34;3; 1.728931, 0.613843,-3.417443;;, + 35;3; 1.728931, 0.613843,-3.417443;;, + 36;3; 1.728931, 0.613843,-3.417443;;, + 37;3; 1.728931, 0.613843,-3.417442;;, + 38;3; 1.728931, 0.613843,-3.417443;;, + 39;3; 1.728931, 0.613842,-3.417443;;, + 40;3; 1.728931, 0.613843,-3.417444;;, + 41;3; 1.728931, 0.613843,-3.417443;;, + 42;3; 1.728931, 0.613843,-3.417443;;, + 43;3; 1.728931, 0.613843,-3.417443;;, + 44;3; 1.728931, 0.613843,-3.417443;;, + 45;3; 1.728931, 0.613843,-3.417443;;, + 46;3; 1.728931, 0.613843,-3.417443;;, + 47;3; 1.728931, 0.613843,-3.417443;;, + 48;3; 1.728931, 0.613843,-3.417443;;, + 49;3; 1.728931, 0.613843,-3.417443;;, + 50;3; 1.728931, 0.613843,-3.417443;;, + 51;3; 1.728931, 0.613843,-3.417443;;, + 52;3; 1.728931, 0.613843,-3.417443;;, + 53;3; 1.728931, 0.613843,-3.417443;;, + 54;3; 1.728931, 0.613843,-3.417443;;, + 55;3; 1.728931, 0.613843,-3.417443;;, + 56;3; 1.728931, 0.613843,-3.417443;;, + 57;3; 1.728931, 0.613843,-3.417443;;, + 58;3; 1.728931, 0.613843,-3.417443;;, + 59;3; 1.728931, 0.613843,-3.417443;;, + 60;3; 1.728931, 0.613843,-3.417443;;, + 61;3; 1.728931, 0.613843,-3.417443;;, + 62;3; 1.728931, 0.613843,-3.417443;;, + 63;3; 1.728931, 0.613843,-3.417443;;, + 64;3; 1.728931, 0.613843,-3.417443;;, + 65;3; 1.728931, 0.613843,-3.417443;;, + 66;3; 1.728931, 0.613843,-3.417443;;, + 67;3; 1.728931, 0.613843,-3.417443;;, + 68;3; 1.728931, 0.613843,-3.417443;;, + 69;3; 1.728931, 0.613843,-3.417443;;, + 70;3; 1.728931, 0.613843,-3.417443;;, + 71;3; 1.728931, 0.613843,-3.417443;;, + 72;3; 1.728931, 0.613843,-3.417443;;, + 73;3; 1.728931, 0.613843,-3.417443;;, + 74;3; 1.728931, 0.613843,-3.417443;;, + 75;3; 1.728931, 0.613843,-3.417443;;, + 76;3; 1.728931, 0.613843,-3.417443;;, + 77;3; 1.728931, 0.613843,-3.417443;;, + 78;3; 1.728931, 0.613843,-3.417443;;, + 79;3; 1.728931, 0.613843,-3.417443;;, + 80;3; 1.728931, 0.613843,-3.417443;;, + 81;3; 1.728931, 0.613843,-3.417443;;, + 82;3; 1.728931, 0.613843,-3.417443;;, + 83;3; 1.728931, 0.613843,-3.417443;;, + 84;3; 1.728931, 0.613843,-3.417443;;, + 85;3; 1.728931, 0.613843,-3.417443;;, + 86;3; 1.728931, 0.613843,-3.417443;;, + 87;3; 1.728931, 0.613843,-3.417443;;, + 88;3; 1.728931, 0.613843,-3.417443;;, + 89;3; 1.728931, 0.613843,-3.417443;;, + 90;3; 1.728931, 0.613843,-3.417443;;, + 91;3; 1.728931, 0.613843,-3.417443;;, + 92;3; 1.728931, 0.613843,-3.417443;;, + 93;3; 1.728931, 0.613843,-3.417443;;, + 94;3; 1.728931, 0.613843,-3.417443;;, + 95;3; 1.728931, 0.613843,-3.417443;;, + 96;3; 1.728931, 0.613843,-3.417443;;, + 97;3; 1.728931, 0.613843,-3.417443;;, + 98;3; 1.728931, 0.613843,-3.417443;;, + 99;3; 1.728931, 0.613843,-3.417443;;, + 100;3; 1.728931, 0.613843,-3.417443;;, + 101;3; 1.728931, 0.613843,-3.417443;;, + 102;3; 1.728931, 0.613843,-3.417443;;, + 103;3; 1.728931, 0.613843,-3.417443;;, + 104;3; 1.728931, 0.613843,-3.417443;;, + 105;3; 1.728931, 0.613843,-3.417443;;, + 106;3; 1.728931, 0.613843,-3.417443;;, + 107;3; 1.728931, 0.613843,-3.417443;;, + 108;3; 1.728931, 0.613843,-3.417443;;, + 109;3; 1.728931, 0.613843,-3.417443;;, + 110;3; 1.728931, 0.613843,-3.417443;;, + 111;3; 1.728931, 0.613843,-3.417443;;, + 112;3; 1.728931, 0.613843,-3.417443;;, + 113;3; 1.728931, 0.613843,-3.417443;;, + 114;3; 1.728931, 0.613843,-3.417443;;, + 115;3; 1.728931, 0.613843,-3.417443;;, + 116;3; 1.728931, 0.613843,-3.417443;;, + 117;3; 1.728931, 0.613843,-3.417443;;, + 118;3; 1.728931, 0.613843,-3.417443;;, + 119;3; 1.728931, 0.613843,-3.417442;;, + 120;3; 1.728931, 0.613843,-3.417442;;, + 121;3; 1.728931, 0.613843,-3.417442;;, + 122;3; 1.728931, 0.613843,-3.417443;;, + 123;3; 1.728931, 0.613843,-3.417442;;, + 124;3; 1.728931, 0.613843,-3.417442;;, + 125;3; 1.728931, 0.613843,-3.417442;;, + 126;3; 1.728931, 0.613843,-3.417442;;, + 127;3; 1.728931, 0.613843,-3.417443;;, + 128;3; 1.728931, 0.613843,-3.417442;;, + 129;3; 1.728931, 0.613843,-3.417443;;, + 130;3; 1.728931, 0.613843,-3.417442;;, + 131;3; 1.728931, 0.613843,-3.417442;;, + 132;3; 1.728931, 0.613843,-3.417443;;, + 133;3; 1.728931, 0.613843,-3.417443;;, + 134;3; 1.728931, 0.613843,-3.417443;;, + 135;3; 1.728931, 0.613843,-3.417443;;, + 136;3; 1.728931, 0.613843,-3.417443;;, + 137;3; 1.728931, 0.613843,-3.417443;;, + 138;3; 1.728931, 0.613843,-3.417443;;, + 139;3; 1.728931, 0.613843,-3.417443;;, + 140;3; 1.728931, 0.613843,-3.417443;;, + 141;3; 1.728931, 0.613843,-3.417443;;, + 142;3; 1.728931, 0.613843,-3.417443;;, + 143;3; 1.728931, 0.613843,-3.417443;;, + 144;3; 1.728931, 0.613843,-3.417443;;, + 145;3; 1.728931, 0.613843,-3.417443;;, + 146;3; 1.728931, 0.613843,-3.417443;;, + 147;3; 1.728931, 0.613843,-3.417443;;, + 148;3; 1.728931, 0.613843,-3.417443;;, + 149;3; 1.728931, 0.613843,-3.417443;;, + 150;3; 1.728931, 0.613843,-3.417443;;, + 151;3; 1.728931, 0.613843,-3.417443;;, + 152;3; 1.728931, 0.613843,-3.417443;;, + 153;3; 1.728931, 0.613843,-3.417443;;, + 154;3; 1.728931, 0.613843,-3.417443;;, + 155;3; 1.728931, 0.613843,-3.417443;;, + 156;3; 1.728931, 0.613843,-3.417442;;, + 157;3; 1.728931, 0.613843,-3.417442;;, + 158;3; 1.728931, 0.613843,-3.417444;;, + 159;3; 1.728931, 0.613844,-3.417443;;, + 160;3; 1.728930, 0.613843,-3.417442;;, + 161;3; 1.728930, 0.613843,-3.417443;;, + 162;3; 1.728931, 0.613843,-3.417443;;, + 163;3; 1.728930, 0.613843,-3.417443;;, + 164;3; 1.728930, 0.613843,-3.417443;;, + 165;3; 1.728930, 0.613843,-3.417443;;, + 166;3; 1.728930, 0.613843,-3.417443;;, + 167;3; 1.728930, 0.613843,-3.417443;;, + 168;3; 1.728930, 0.613843,-3.417443;;, + 169;3; 1.728930, 0.613843,-3.417443;;, + 170;3; 1.728930, 0.613843,-3.417443;;, + 171;3; 1.728930, 0.613843,-3.417443;;, + 172;3; 1.728930, 0.613843,-3.417443;;, + 173;3; 1.728930, 0.613843,-3.417443;;, + 174;3; 1.728930, 0.613843,-3.417443;;, + 175;3; 1.728930, 0.613843,-3.417443;;, + 176;3; 1.728930, 0.613843,-3.417443;;, + 177;3; 1.728930, 0.613843,-3.417443;;, + 178;3; 1.728930, 0.613843,-3.417443;;, + 179;3; 1.728930, 0.613843,-3.417443;;; + } + } + Animation { + {Cow_Rig_Leg_F_R} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605887,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729690,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579102,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578282,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763094,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000592, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596207,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649317,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736581,-0.673311,-0.001104, 0.001104;;, + 156;4;-0.794065,-0.606133,-0.003281, 0.003281;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.806073,-0.582193, 0.001740, 0.008346;;, + 159;4;-0.772277,-0.612122, 0.019564, 0.020360;;, + 160;4;-0.722202,-0.659130, 0.046720, 0.038662;;, + 161;4;-0.666055,-0.713132, 0.077523, 0.059422;;, + 162;4;-0.616832,-0.761085, 0.104682, 0.077728;;, + 163;4;-0.584619,-0.792705, 0.122511, 0.089746;;, + 164;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 165;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 166;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 167;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 168;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 169;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 170;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 171;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 172;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 173;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 174;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 175;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 176;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 177;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 178;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 179;4;-0.573748,-0.803425, 0.128538, 0.093809;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 1.728931, 8.787700,-3.333342;;, + 1;3; 1.728931, 8.787700,-3.333342;;, + 2;3; 1.728931, 8.787700,-3.333342;;, + 3;3; 1.728931, 8.787700,-3.333342;;, + 4;3; 1.728931, 8.787700,-3.333342;;, + 5;3; 1.728931, 8.787700,-3.333342;;, + 6;3; 1.728931, 8.787700,-3.333342;;, + 7;3; 1.728931, 8.787700,-3.333342;;, + 8;3; 1.728931, 8.787700,-3.333342;;, + 9;3; 1.728931, 8.787700,-3.333342;;, + 10;3; 1.728931, 8.787700,-3.333342;;, + 11;3; 1.728931, 8.787700,-3.333342;;, + 12;3; 1.728931, 8.787700,-3.333342;;, + 13;3; 1.728931, 8.787700,-3.333342;;, + 14;3; 1.728931, 8.787700,-3.333342;;, + 15;3; 1.728931, 8.787700,-3.333342;;, + 16;3; 1.728931, 8.787700,-3.333342;;, + 17;3; 1.728931, 8.787700,-3.333342;;, + 18;3; 1.728931, 8.787700,-3.333342;;, + 19;3; 1.728931, 8.787700,-3.333342;;, + 20;3; 1.728931, 8.787700,-3.333342;;, + 21;3; 1.728931, 8.787700,-3.333342;;, + 22;3; 1.728931, 8.787700,-3.333342;;, + 23;3; 1.728931, 8.787700,-3.333342;;, + 24;3; 1.728931, 8.787700,-3.333342;;, + 25;3; 1.728931, 8.787700,-3.333342;;, + 26;3; 1.728931, 8.787700,-3.333342;;, + 27;3; 1.728931, 8.787700,-3.333341;;, + 28;3; 1.728931, 8.787700,-3.333341;;, + 29;3; 1.728931, 8.787700,-3.333341;;, + 30;3; 1.728931, 8.787700,-3.333342;;, + 31;3; 1.728931, 8.787699,-3.333342;;, + 32;3; 1.728931, 8.787700,-3.333341;;, + 33;3; 1.728931, 8.787700,-3.333342;;, + 34;3; 1.728931, 8.787700,-3.333341;;, + 35;3; 1.728931, 8.787700,-3.333342;;, + 36;3; 1.728931, 8.787700,-3.333341;;, + 37;3; 1.728931, 8.787700,-3.333342;;, + 38;3; 1.728931, 8.787701,-3.333341;;, + 39;3; 1.728931, 8.787700,-3.333341;;, + 40;3; 1.728931, 8.787701,-3.333342;;, + 41;3; 1.728931, 8.787700,-3.333341;;, + 42;3; 1.728931, 8.787701,-3.333342;;, + 43;3; 1.728931, 8.787700,-3.333341;;, + 44;3; 1.728931, 8.787700,-3.333341;;, + 45;3; 1.728931, 8.787700,-3.333342;;, + 46;3; 1.728931, 8.787700,-3.333341;;, + 47;3; 1.728931, 8.787701,-3.333342;;, + 48;3; 1.728931, 8.787701,-3.333342;;, + 49;3; 1.728931, 8.787700,-3.333342;;, + 50;3; 1.728931, 8.787700,-3.333342;;, + 51;3; 1.728931, 8.787700,-3.333342;;, + 52;3; 1.728931, 8.787700,-3.333342;;, + 53;3; 1.728931, 8.787700,-3.333342;;, + 54;3; 1.728931, 8.787700,-3.333342;;, + 55;3; 1.728931, 8.787700,-3.333342;;, + 56;3; 1.728931, 8.787700,-3.333342;;, + 57;3; 1.728931, 8.787700,-3.333342;;, + 58;3; 1.728931, 8.787700,-3.333342;;, + 59;3; 1.728931, 8.787700,-3.333342;;, + 60;3; 1.728931, 8.787700,-3.333342;;, + 61;3; 1.728931, 8.787700,-3.333342;;, + 62;3; 1.728931, 8.787700,-3.333342;;, + 63;3; 1.728931, 8.787700,-3.333342;;, + 64;3; 1.728931, 8.787700,-3.333342;;, + 65;3; 1.728931, 8.787700,-3.333342;;, + 66;3; 1.728931, 8.787700,-3.333342;;, + 67;3; 1.728931, 8.787700,-3.333342;;, + 68;3; 1.728931, 8.787700,-3.333342;;, + 69;3; 1.728931, 8.787700,-3.333342;;, + 70;3; 1.728931, 8.787700,-3.333342;;, + 71;3; 1.728931, 8.787700,-3.333342;;, + 72;3; 1.728931, 8.787700,-3.333342;;, + 73;3; 1.728931, 8.787700,-3.333342;;, + 74;3; 1.728931, 8.787700,-3.333342;;, + 75;3; 1.728931, 8.787700,-3.333342;;, + 76;3; 1.728931, 8.787700,-3.333342;;, + 77;3; 1.728931, 8.787700,-3.333342;;, + 78;3; 1.728931, 8.787700,-3.333342;;, + 79;3; 1.728931, 8.787700,-3.333342;;, + 80;3; 1.728931, 8.787700,-3.333342;;, + 81;3; 1.728931, 8.787700,-3.333342;;, + 82;3; 1.728931, 8.787700,-3.333342;;, + 83;3; 1.728931, 8.787700,-3.333342;;, + 84;3; 1.728931, 8.787700,-3.333342;;, + 85;3; 1.728931, 8.787700,-3.333342;;, + 86;3; 1.728931, 8.787700,-3.333342;;, + 87;3; 1.728931, 8.787700,-3.333342;;, + 88;3; 1.728931, 8.787700,-3.333342;;, + 89;3; 1.728931, 8.787700,-3.333342;;, + 90;3; 1.728931, 8.787700,-3.333342;;, + 91;3; 1.728931, 8.787700,-3.333342;;, + 92;3; 1.728931, 8.787700,-3.333342;;, + 93;3; 1.728931, 8.787700,-3.333342;;, + 94;3; 1.728931, 8.787700,-3.333342;;, + 95;3; 1.728931, 8.787700,-3.333342;;, + 96;3; 1.728931, 8.787700,-3.333342;;, + 97;3; 1.728931, 8.787700,-3.333342;;, + 98;3; 1.728931, 8.787700,-3.333342;;, + 99;3; 1.728931, 8.787700,-3.333342;;, + 100;3; 1.728931, 8.787700,-3.333342;;, + 101;3; 1.728931, 8.787700,-3.333342;;, + 102;3; 1.728931, 8.787700,-3.333342;;, + 103;3; 1.728931, 8.787700,-3.333342;;, + 104;3; 1.728931, 8.787700,-3.333342;;, + 105;3; 1.728931, 8.787700,-3.333342;;, + 106;3; 1.728931, 8.787700,-3.333342;;, + 107;3; 1.728931, 8.787700,-3.333342;;, + 108;3; 1.728931, 8.787700,-3.333342;;, + 109;3; 1.728931, 8.787700,-3.333342;;, + 110;3; 1.728931, 8.787700,-3.333342;;, + 111;3; 1.728931, 8.787700,-3.333342;;, + 112;3; 1.728931, 8.787700,-3.333342;;, + 113;3; 1.728931, 8.787700,-3.333342;;, + 114;3; 1.728931, 8.787700,-3.333342;;, + 115;3; 1.728931, 8.787700,-3.333342;;, + 116;3; 1.728931, 8.787700,-3.333342;;, + 117;3; 1.728931, 8.787700,-3.333342;;, + 118;3; 1.728931, 8.787700,-3.333342;;, + 119;3; 1.728931, 8.787700,-3.333342;;, + 120;3; 1.728931, 8.787700,-3.333342;;, + 121;3; 1.728931, 8.787700,-3.333342;;, + 122;3; 1.728931, 8.787700,-3.333342;;, + 123;3; 1.728931, 8.787700,-3.333342;;, + 124;3; 1.728931, 8.787700,-3.333342;;, + 125;3; 1.728931, 8.787700,-3.333342;;, + 126;3; 1.728931, 8.787700,-3.333342;;, + 127;3; 1.728931, 8.787700,-3.333342;;, + 128;3; 1.728931, 8.787700,-3.333342;;, + 129;3; 1.728931, 8.787700,-3.333342;;, + 130;3; 1.728931, 8.787700,-3.333342;;, + 131;3; 1.728931, 8.787700,-3.333342;;, + 132;3; 1.728931, 8.787700,-3.333342;;, + 133;3; 1.728931, 8.787700,-3.333342;;, + 134;3; 1.728931, 8.787700,-3.333342;;, + 135;3; 1.728931, 8.787700,-3.333342;;, + 136;3; 1.728931, 8.787700,-3.333342;;, + 137;3; 1.728931, 8.787700,-3.333342;;, + 138;3; 1.728931, 8.787700,-3.333342;;, + 139;3; 1.728931, 8.787700,-3.333342;;, + 140;3; 1.728931, 8.787700,-3.333342;;, + 141;3; 1.728931, 8.787700,-3.333342;;, + 142;3; 1.728931, 8.787700,-3.333342;;, + 143;3; 1.728931, 8.787700,-3.333342;;, + 144;3; 1.728931, 8.787700,-3.333342;;, + 145;3; 1.728931, 8.787700,-3.333342;;, + 146;3; 1.728931, 8.787700,-3.333342;;, + 147;3; 1.728931, 8.787700,-3.333342;;, + 148;3; 1.728931, 8.787700,-3.333342;;, + 149;3; 1.728931, 8.787700,-3.333342;;, + 150;3; 1.728931, 8.787700,-3.333342;;, + 151;3; 1.728931, 8.787700,-3.333342;;, + 152;3; 1.728931, 8.787700,-3.333342;;, + 153;3; 1.728931, 8.787700,-3.333342;;, + 154;3; 1.728931, 8.787700,-3.333342;;, + 155;3; 1.728931, 8.787700,-3.333342;;, + 156;3; 1.728931, 8.787700,-3.333342;;, + 157;3; 1.728931, 8.787700,-3.333342;;, + 158;3; 1.728931, 8.787700,-3.333342;;, + 159;3; 1.728931, 8.787701,-3.333342;;, + 160;3; 1.728930, 8.787700,-3.333341;;, + 161;3; 1.728930, 8.787700,-3.333341;;, + 162;3; 1.728931, 8.787700,-3.333342;;, + 163;3; 1.728931, 8.787700,-3.333342;;, + 164;3; 1.728930, 8.787700,-3.333342;;, + 165;3; 1.728930, 8.787700,-3.333342;;, + 166;3; 1.728930, 8.787700,-3.333342;;, + 167;3; 1.728930, 8.787700,-3.333342;;, + 168;3; 1.728930, 8.787700,-3.333342;;, + 169;3; 1.728930, 8.787700,-3.333342;;, + 170;3; 1.728930, 8.787700,-3.333342;;, + 171;3; 1.728930, 8.787700,-3.333342;;, + 172;3; 1.728930, 8.787700,-3.333342;;, + 173;3; 1.728930, 8.787700,-3.333342;;, + 174;3; 1.728930, 8.787700,-3.333342;;, + 175;3; 1.728930, 8.787700,-3.333342;;, + 176;3; 1.728930, 8.787700,-3.333342;;, + 177;3; 1.728930, 8.787700,-3.333342;;, + 178;3; 1.728930, 8.787700,-3.333342;;, + 179;3; 1.728930, 8.787700,-3.333342;;; + } + } + Animation { + {Cow_Rig_Head} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 1;4;-0.999945, 0.007153,-0.000003,-0.000000;;, + 2;4;-0.999837, 0.011033,-0.000003,-0.000000;;, + 3;4;-0.999698, 0.016016,-0.000003,-0.000000;;, + 4;4;-0.999590, 0.019896,-0.000003,-0.000000;;, + 5;4;-0.999551, 0.021274,-0.000003,-0.000000;;, + 6;4;-0.999576, 0.020670,-0.000003,-0.000000;;, + 7;4;-0.999648, 0.018794,-0.000003,-0.000000;;, + 8;4;-0.999754, 0.015794,-0.000003,-0.000000;;, + 9;4;-0.999863, 0.012205,-0.000003,-0.000000;;, + 10;4;-0.999945, 0.008711,-0.000003,-0.000000;;, + 11;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 12;4;-0.999979, 0.002839,-0.000003, 0.000000;;, + 13;4;-0.999938,-0.000656,-0.000003, 0.000000;;, + 14;4;-0.999870,-0.004246,-0.000003, 0.000000;;, + 15;4;-0.999799,-0.007247,-0.000003, 0.000000;;, + 16;4;-0.999748,-0.009123,-0.000003, 0.000000;;, + 17;4;-0.999730,-0.009728,-0.000003, 0.000000;;, + 18;4;-0.999746,-0.008770,-0.000003, 0.000000;;, + 19;4;-0.999791,-0.005983,-0.000003, 0.000000;;, + 20;4;-0.999857,-0.001976,-0.000003, 0.000000;;, + 21;4;-0.999922, 0.002030,-0.000003, 0.000000;;, + 22;4;-0.999968, 0.004818,-0.000003,-0.000000;;, + 23;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 24;4;-0.999962, 0.005775,-0.001619, 0.000009;;, + 25;4;-0.999901, 0.005775,-0.006326, 0.000037;;, + 26;4;-0.999812, 0.005774,-0.013091, 0.000076;;, + 27;4;-0.999723, 0.005774,-0.019856, 0.000115;;, + 28;4;-0.999662, 0.005773,-0.024562, 0.000142;;, + 29;4;-0.999641, 0.005773,-0.026179, 0.000151;;, + 30;4;-0.999662, 0.005773,-0.025158, 0.000145;;, + 31;4;-0.999723, 0.005774,-0.021990, 0.000127;;, + 32;4;-0.999812, 0.005774,-0.016923, 0.000098;;, + 33;4;-0.999901, 0.005775,-0.010862, 0.000063;;, + 34;4;-0.999962, 0.005775,-0.004961, 0.000029;;, + 35;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 36;4;-0.999962, 0.005775, 0.004956,-0.000029;;, + 37;4;-0.999901, 0.005775, 0.010857,-0.000063;;, + 38;4;-0.999812, 0.005774, 0.016918,-0.000098;;, + 39;4;-0.999723, 0.005774, 0.021985,-0.000127;;, + 40;4;-0.999662, 0.005773, 0.025153,-0.000145;;, + 41;4;-0.999641, 0.005773, 0.026174,-0.000151;;, + 42;4;-0.999653, 0.005773, 0.025266,-0.000146;;, + 43;4;-0.999688, 0.005773, 0.022554,-0.000131;;, + 44;4;-0.999744, 0.005774, 0.018286,-0.000106;;, + 45;4;-0.999812, 0.005774, 0.013086,-0.000077;;, + 46;4;-0.999880, 0.005775, 0.007886,-0.000047;;, + 47;4;-0.999936, 0.005775, 0.003617,-0.000022;;, + 48;4;-0.999971, 0.005775, 0.000906,-0.000006;;, + 49;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 50;4;-0.995667,-0.011278,-0.000002, 0.000001;;, + 51;4;-0.982775,-0.062162,-0.000002, 0.000001;;, + 52;4;-0.962455,-0.142241,-0.000002, 0.000001;;, + 53;4;-0.937658,-0.239769,-0.000002, 0.000002;;, + 54;4;-0.912788,-0.337296,-0.000002, 0.000001;;, + 55;4;-0.892259,-0.417377,-0.000002, 0.000001;;, + 56;4;-0.879049,-0.468263,-0.000002, 0.000001;;, + 57;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 58;4;-0.873959,-0.485279, 0.001880,-0.003389;;, + 59;4;-0.873694,-0.485164, 0.007180,-0.012938;;, + 60;4;-0.873556,-0.485014, 0.013985,-0.025198;;, + 61;4;-0.873511,-0.484898, 0.019285,-0.034747;;, + 62;4;-0.873505,-0.484856, 0.021167,-0.038137;;, + 63;4;-0.873505,-0.484856, 0.017404,-0.031357;;, + 64;4;-0.873505,-0.484856, 0.006803,-0.012261;;, + 65;4;-0.873505,-0.484857,-0.006808, 0.012258;;, + 66;4;-0.873505,-0.484857,-0.017408, 0.031355;;, + 67;4;-0.873505,-0.484857,-0.021171, 0.038134;;, + 68;4;-0.873511,-0.484898,-0.019290, 0.034745;;, + 69;4;-0.873556,-0.485015,-0.013990, 0.025198;;, + 70;4;-0.873694,-0.485164,-0.007184, 0.012939;;, + 71;4;-0.873959,-0.485279,-0.001884, 0.003392;;, + 72;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 73;4;-0.882425,-0.454949,-0.000002, 0.000000;;, + 74;4;-0.905131,-0.366639,-0.000002, 0.000000;;, + 75;4;-0.937534,-0.239770,-0.000002, 0.000001;;, + 76;4;-0.969841,-0.112901,-0.000002, 0.000001;;, + 77;4;-0.992280,-0.024592,-0.000002, 0.000001;;, + 78;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 79;4;-0.998860, 0.005769,-0.000043,-0.006968;;, + 80;4;-0.995481, 0.005749,-0.000164,-0.027937;;, + 81;4;-0.989986, 0.005717,-0.000361,-0.062028;;, + 82;4;-0.982799, 0.005676,-0.000618,-0.106614;;, + 83;4;-0.974658, 0.005629,-0.000910,-0.157119;;, + 84;4;-0.966517, 0.005581,-0.001201,-0.207623;;, + 85;4;-0.959330, 0.005540,-0.001459,-0.252203;;, + 86;4;-0.953836, 0.005508,-0.001656,-0.286288;;, + 87;4;-0.950457, 0.005488,-0.001777,-0.307251;;, + 88;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 89;4;-0.950457, 0.005488,-0.001792,-0.309884;;, + 90;4;-0.953836, 0.005508,-0.001714,-0.296428;;, + 91;4;-0.959330, 0.005540,-0.001582,-0.273571;;, + 92;4;-0.966517, 0.005581,-0.001399,-0.241896;;, + 93;4;-0.974659, 0.005629,-0.001175,-0.203118;;, + 94;4;-0.982800, 0.005676,-0.000926,-0.159976;;, + 95;4;-0.989987, 0.005717,-0.000670,-0.115648;;, + 96;4;-0.995481, 0.005749,-0.000424,-0.072993;;, + 97;4;-0.998860, 0.005769,-0.000199,-0.034058;;, + 98;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 99;4;-0.998860, 0.005769, 0.000194, 0.034058;;, + 100;4;-0.995481, 0.005749, 0.000419, 0.072993;;, + 101;4;-0.989987, 0.005717, 0.000665, 0.115648;;, + 102;4;-0.982800, 0.005675, 0.000921, 0.159976;;, + 103;4;-0.974659, 0.005628, 0.001170, 0.203118;;, + 104;4;-0.966517, 0.005580, 0.001395, 0.241896;;, + 105;4;-0.959330, 0.005538, 0.001577, 0.273571;;, + 106;4;-0.953836, 0.005506, 0.001710, 0.296428;;, + 107;4;-0.950457, 0.005487, 0.001787, 0.309884;;, + 108;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 109;4;-0.950457, 0.005487, 0.001772, 0.307251;;, + 110;4;-0.953836, 0.005507, 0.001651, 0.286288;;, + 111;4;-0.959330, 0.005539, 0.001454, 0.252203;;, + 112;4;-0.966517, 0.005580, 0.001197, 0.207622;;, + 113;4;-0.974658, 0.005628, 0.000905, 0.157118;;, + 114;4;-0.982800, 0.005675, 0.000613, 0.106612;;, + 115;4;-0.989987, 0.005717, 0.000356, 0.062026;;, + 116;4;-0.995481, 0.005749, 0.000159, 0.027935;;, + 117;4;-0.998860, 0.005769, 0.000038, 0.006967;;, + 118;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 119;4;-0.999542,-0.017863,-0.000003,-0.000000;;, + 120;4;-0.998007,-0.043214,-0.000002, 0.000000;;, + 121;4;-0.995747,-0.070680,-0.000002, 0.000000;;, + 122;4;-0.993498,-0.099890,-0.000002, 0.000000;;, + 123;4;-0.991956,-0.123956,-0.000002, 0.000000;;, + 124;4;-0.991417,-0.130738,-0.000002, 0.000000;;, + 125;4;-0.991714,-0.126001,-0.000002, 0.000000;;, + 126;4;-0.992602,-0.111861,-0.000002, 0.000000;;, + 127;4;-0.993998,-0.089600,-0.000002, 0.000000;;, + 128;4;-0.995700,-0.062482,-0.000002, 0.000000;;, + 129;4;-0.997402,-0.035365,-0.000002, 0.000000;;, + 130;4;-0.998799,-0.013103,-0.000003, 0.000000;;, + 131;4;-0.999686, 0.001038,-0.000003,-0.000000;;, + 132;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 133;4;-0.999987, 0.005158,-0.000003,-0.000000;;, + 134;4;-0.999997, 0.003345,-0.000003,-0.000000;;, + 135;4;-1.000014, 0.000408,-0.000003,-0.000000;;, + 136;4;-1.000037,-0.003553,-0.000003,-0.000000;;, + 137;4;-1.000065,-0.008408,-0.000003,-0.000000;;, + 138;4;-1.000098,-0.013993,-0.000003,-0.000000;;, + 139;4;-1.000133,-0.020110,-0.000003,-0.000000;;, + 140;4;-1.000170,-0.026527,-0.000003,-0.000000;;, + 141;4;-1.000207,-0.032979,-0.000003,-0.000000;;, + 142;4;-1.000243,-0.039177,-0.000003,-0.000000;;, + 143;4;-1.000275,-0.044811,-0.000003,-0.000000;;, + 144;4;-1.000303,-0.049563,-0.000003,-0.000000;;, + 145;4;-1.000323,-0.053122,-0.000003,-0.000000;;, + 146;4;-1.000335,-0.055188,-0.000003,-0.000000;;, + 147;4;-1.000337,-0.055492,-0.000003,-0.000000;;, + 148;4;-1.000327,-0.053801,-0.000003,-0.000000;;, + 149;4;-1.000305,-0.049923,-0.000003,-0.000000;;, + 150;4;-1.000269,-0.043714,-0.000003,-0.000000;;, + 151;4;-1.000219,-0.035077,-0.000003,-0.000000;;, + 152;4;-1.000155,-0.023955,-0.000003,-0.000000;;, + 153;4;-1.000076,-0.010332,-0.000003,-0.000000;;, + 154;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 155;4;-0.999323,-0.001479,-0.000519, 0.002265;;, + 156;4;-0.997321,-0.021069,-0.002074, 0.009083;;, + 157;4;-0.994046,-0.049443,-0.004602, 0.020168;;, + 158;4;-0.989742,-0.082896,-0.007909, 0.034667;;, + 159;4;-0.984849,-0.117852,-0.011654, 0.051091;;, + 160;4;-0.979946,-0.151091,-0.015400, 0.067516;;, + 161;4;-0.975615,-0.179905,-0.018707, 0.082015;;, + 162;4;-0.972305,-0.202154,-0.021235, 0.093100;;, + 163;4;-0.970272,-0.216256,-0.022790, 0.099919;;, + 164;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 165;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 166;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 167;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 168;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 169;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 170;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 171;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 172;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 173;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 174;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 175;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 176;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 177;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 178;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 179;4;-0.969597,-0.221126,-0.023306, 0.102184;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.023066,10.494865, 2.240401;;, + 1;3; 0.023066,10.494865, 2.240401;;, + 2;3; 0.023066,10.494865, 2.240401;;, + 3;3; 0.023066,10.494865, 2.240401;;, + 4;3; 0.023066,10.494865, 2.240401;;, + 5;3; 0.023066,10.494865, 2.240401;;, + 6;3; 0.023066,10.494865, 2.240401;;, + 7;3; 0.023066,10.494865, 2.240401;;, + 8;3; 0.023066,10.494865, 2.240401;;, + 9;3; 0.023066,10.494865, 2.240401;;, + 10;3; 0.023066,10.494865, 2.240401;;, + 11;3; 0.023066,10.494865, 2.240401;;, + 12;3; 0.023066,10.494865, 2.240401;;, + 13;3; 0.023066,10.494865, 2.240401;;, + 14;3; 0.023066,10.494865, 2.240401;;, + 15;3; 0.023066,10.494865, 2.240401;;, + 16;3; 0.023066,10.494865, 2.240401;;, + 17;3; 0.023066,10.494865, 2.240401;;, + 18;3; 0.023066,10.494865, 2.240401;;, + 19;3; 0.023066,10.494865, 2.240401;;, + 20;3; 0.023066,10.494865, 2.240401;;, + 21;3; 0.023066,10.494865, 2.240401;;, + 22;3; 0.023066,10.494865, 2.240401;;, + 23;3; 0.023066,10.494865, 2.240401;;, + 24;3; 0.023066,10.494865, 2.240401;;, + 25;3; 0.023066,10.494865, 2.240402;;, + 26;3; 0.023066,10.494865, 2.240401;;, + 27;3; 0.023066,10.494866, 2.240402;;, + 28;3; 0.023066,10.494865, 2.240402;;, + 29;3; 0.023066,10.494865, 2.240402;;, + 30;3; 0.023066,10.494866, 2.240401;;, + 31;3; 0.023066,10.494865, 2.240401;;, + 32;3; 0.023066,10.494866, 2.240401;;, + 33;3; 0.023066,10.494865, 2.240400;;, + 34;3; 0.023066,10.494865, 2.240402;;, + 35;3; 0.023066,10.494865, 2.240401;;, + 36;3; 0.023066,10.494865, 2.240402;;, + 37;3; 0.023066,10.494865, 2.240401;;, + 38;3; 0.023066,10.494866, 2.240402;;, + 39;3; 0.023066,10.494865, 2.240401;;, + 40;3; 0.023066,10.494866, 2.240402;;, + 41;3; 0.023066,10.494865, 2.240401;;, + 42;3; 0.023066,10.494866, 2.240401;;, + 43;3; 0.023066,10.494865, 2.240402;;, + 44;3; 0.023066,10.494865, 2.240402;;, + 45;3; 0.023066,10.494865, 2.240401;;, + 46;3; 0.023066,10.494865, 2.240402;;, + 47;3; 0.023066,10.494866, 2.240401;;, + 48;3; 0.023066,10.494866, 2.240402;;, + 49;3; 0.023066,10.494865, 2.240401;;, + 50;3; 0.023067,10.529997, 1.901121;;, + 51;3; 0.023070,10.633707, 0.978715;;, + 52;3; 0.023075,10.795458,-0.356916;;, + 53;3; 0.023080,10.991475,-1.907127;;, + 54;3; 0.023085,11.187492,-3.457337;;, + 55;3; 0.023090,11.349243,-4.792970;;, + 56;3; 0.023093,11.452953,-5.715377;;, + 57;3; 0.023094,11.488085,-6.054656;;, + 58;3; 0.023094,11.488085,-6.054656;;, + 59;3; 0.023094,11.488085,-6.054656;;, + 60;3; 0.023094,11.488085,-6.054656;;, + 61;3; 0.023094,11.488085,-6.054656;;, + 62;3; 0.023094,11.488085,-6.054656;;, + 63;3; 0.023096,11.488085,-6.054656;;, + 64;3; 0.023103,11.488085,-6.054656;;, + 65;3; 0.023112,11.488085,-6.054656;;, + 66;3; 0.023119,11.488085,-6.054656;;, + 67;3; 0.023121,11.488085,-6.054656;;, + 68;3; 0.023119,11.488085,-6.054656;;, + 69;3; 0.023112,11.488085,-6.054656;;, + 70;3; 0.023103,11.488085,-6.054656;;, + 71;3; 0.023096,11.488085,-6.054656;;, + 72;3; 0.023094,11.488085,-6.054656;;, + 73;3; 0.023092,11.425079,-5.416062;;, + 74;3; 0.023086,11.245809,-3.873902;;, + 75;3; 0.023080,10.991475,-1.907127;;, + 76;3; 0.023074,10.737142, 0.059648;;, + 77;3; 0.023068,10.557871, 1.601807;;, + 78;3; 0.023066,10.494865, 2.240401;;, + 79;3; 0.023066,10.494865, 2.240401;;, + 80;3; 0.023066,10.494865, 2.240401;;, + 81;3; 0.023066,10.494865, 2.240401;;, + 82;3; 0.023066,10.494865, 2.240401;;, + 83;3; 0.023066,10.494865, 2.240401;;, + 84;3; 0.023066,10.494865, 2.240401;;, + 85;3; 0.023066,10.494865, 2.240401;;, + 86;3; 0.023066,10.494865, 2.240401;;, + 87;3; 0.023066,10.494865, 2.240401;;, + 88;3; 0.023066,10.494865, 2.240401;;, + 89;3; 0.023066,10.494865, 2.240401;;, + 90;3; 0.023066,10.494865, 2.240401;;, + 91;3; 0.023066,10.494865, 2.240401;;, + 92;3; 0.023066,10.494865, 2.240401;;, + 93;3; 0.023066,10.494865, 2.240401;;, + 94;3; 0.023066,10.494865, 2.240401;;, + 95;3; 0.023066,10.494865, 2.240401;;, + 96;3; 0.023066,10.494865, 2.240401;;, + 97;3; 0.023066,10.494865, 2.240401;;, + 98;3; 0.023066,10.494865, 2.240401;;, + 99;3; 0.023066,10.494865, 2.240401;;, + 100;3; 0.023066,10.494865, 2.240401;;, + 101;3; 0.023066,10.494865, 2.240401;;, + 102;3; 0.023066,10.494865, 2.240401;;, + 103;3; 0.023066,10.494865, 2.240401;;, + 104;3; 0.023066,10.494865, 2.240401;;, + 105;3; 0.023066,10.494865, 2.240401;;, + 106;3; 0.023066,10.494865, 2.240401;;, + 107;3; 0.023066,10.494865, 2.240401;;, + 108;3; 0.023066,10.494865, 2.240401;;, + 109;3; 0.023066,10.494865, 2.240401;;, + 110;3; 0.023066,10.494865, 2.240401;;, + 111;3; 0.023066,10.494865, 2.240401;;, + 112;3; 0.023066,10.494865, 2.240401;;, + 113;3; 0.023066,10.494865, 2.240401;;, + 114;3; 0.023066,10.494865, 2.240401;;, + 115;3; 0.023066,10.494865, 2.240401;;, + 116;3; 0.023066,10.494865, 2.240401;;, + 117;3; 0.023066,10.494865, 2.240401;;, + 118;3; 0.023066,10.494865, 2.240401;;, + 119;3; 0.023066,10.494865, 2.240401;;, + 120;3; 0.023066,10.494865, 2.240401;;, + 121;3; 0.023066,10.494865, 2.240401;;, + 122;3; 0.023066,10.494865, 2.240401;;, + 123;3; 0.023066,10.494865, 2.240401;;, + 124;3; 0.023066,10.494865, 2.240401;;, + 125;3; 0.023066,10.494865, 2.240401;;, + 126;3; 0.023066,10.494865, 2.240401;;, + 127;3; 0.023066,10.494865, 2.240401;;, + 128;3; 0.023066,10.494865, 2.240401;;, + 129;3; 0.023066,10.494865, 2.240401;;, + 130;3; 0.023066,10.494865, 2.240401;;, + 131;3; 0.023066,10.494865, 2.240401;;, + 132;3; 0.023066,10.494865, 2.240401;;, + 133;3; 0.023066,10.494865, 2.240401;;, + 134;3; 0.023066,10.494865, 2.240401;;, + 135;3; 0.023066,10.494865, 2.240401;;, + 136;3; 0.023066,10.494865, 2.240401;;, + 137;3; 0.023066,10.494865, 2.240401;;, + 138;3; 0.023066,10.494865, 2.240401;;, + 139;3; 0.023066,10.494865, 2.240401;;, + 140;3; 0.023066,10.494865, 2.240401;;, + 141;3; 0.023066,10.494865, 2.240401;;, + 142;3; 0.023066,10.494865, 2.240401;;, + 143;3; 0.023066,10.494865, 2.240401;;, + 144;3; 0.023066,10.494865, 2.240401;;, + 145;3; 0.023066,10.494865, 2.240401;;, + 146;3; 0.023066,10.494865, 2.240401;;, + 147;3; 0.023066,10.494865, 2.240401;;, + 148;3; 0.023066,10.494865, 2.240401;;, + 149;3; 0.023066,10.494865, 2.240401;;, + 150;3; 0.023066,10.494865, 2.240401;;, + 151;3; 0.023066,10.494865, 2.240401;;, + 152;3; 0.023066,10.494865, 2.240401;;, + 153;3; 0.023066,10.494865, 2.240401;;, + 154;3; 0.023066,10.494865, 2.240401;;, + 155;3; 0.023066,10.494865, 2.240401;;, + 156;3; 0.023066,10.494865, 2.240401;;, + 157;3; 0.023066,10.494865, 2.240401;;, + 158;3; 0.023066,10.494865, 2.240402;;, + 159;3; 0.023066,10.494866, 2.240401;;, + 160;3; 0.023066,10.494865, 2.240402;;, + 161;3; 0.023065,10.494865, 2.240401;;, + 162;3; 0.023066,10.494865, 2.240401;;, + 163;3; 0.023066,10.494865, 2.240401;;, + 164;3; 0.023066,10.494864, 2.240401;;, + 165;3; 0.023066,10.494864, 2.240401;;, + 166;3; 0.023066,10.494864, 2.240401;;, + 167;3; 0.023066,10.494864, 2.240401;;, + 168;3; 0.023066,10.494864, 2.240401;;, + 169;3; 0.023066,10.494864, 2.240401;;, + 170;3; 0.023066,10.494864, 2.240401;;, + 171;3; 0.023066,10.494864, 2.240401;;, + 172;3; 0.023066,10.494864, 2.240401;;, + 173;3; 0.023066,10.494864, 2.240401;;, + 174;3; 0.023066,10.494864, 2.240401;;, + 175;3; 0.023066,10.494864, 2.240401;;, + 176;3; 0.023066,10.494864, 2.240401;;, + 177;3; 0.023066,10.494864, 2.240401;;, + 178;3; 0.023066,10.494864, 2.240401;;, + 179;3; 0.023066,10.494864, 2.240401;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/models/mobs_creeper.x b/mods/mobs_mc/models/mobs_creeper.x new file mode 100644 index 000000000..37979e75b --- /dev/null +++ b/mods/mobs_mc/models/mobs_creeper.x @@ -0,0 +1,6168 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Creeper_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.066479, 0.196035, 5.623955, 1.000000;; + } + Frame Creeper_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000,-0.118617,-5.648463, 1.000000;; + } + Frame Creeper_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 3.684099,-0.118617, 1.000000;; + } + Frame Creeper_Rig_Head { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,11.125031,-0.000000, 1.000000;; + } + } // End of Creeper_Rig_Head + Frame Creeper_Rig_Leg_B_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-0.807968, 0.589227, 0.000000, + -0.000000,-0.589227,-0.807968, 0.000000, + -1.482709,-0.277360, 2.078758, 1.000000;; + } + } // End of Creeper_Rig_Leg_B_L + Frame Creeper_Rig_Leg_B_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-0.807968, 0.589227, 0.000000, + -0.000000,-0.589227,-0.807968, 0.000000, + 1.581556,-0.277360, 2.078758, 1.000000;; + } + } // End of Creeper_Rig_Leg_B_R + Frame Creeper_Rig_Leg_F_L { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.807968,-0.589227, 0.000000, + -0.000000, 0.589227,-0.807968, 0.000000, + -1.482709,-0.277360,-1.757913, 1.000000;; + } + } // End of Creeper_Rig_Leg_F_L + Frame Creeper_Rig_Leg_F_R { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.807968,-0.589227, 0.000000, + -0.000000, 0.589227,-0.807968, 0.000000, + 1.581556,-0.277360,-1.757913, 1.000000;; + } + } // End of Creeper_Rig_Leg_F_R + } // End of Creeper_Rig_Body + } // End of Creeper_Rig_Root + Frame Creeper { + FrameTransformMatrix { + -5.640023,-0.000007, 0.000000, 0.000000, + 0.000007,-5.640023, 0.000000, 0.000000, + 0.000000, 0.000000,15.037158, 0.000000, + 0.066479,-0.196036, 9.324150, 1.000000;; + } + Mesh { // Creeper mesh + 144; + 0.488576; 0.321851;-0.784899;, + -0.473651; 0.321851;-0.784899;, + -0.473651;-0.308016;-0.784899;, + 0.488577;-0.308016;-0.784899;, + 0.488576; 0.321851;-0.010289;, + 0.488576;-0.308017;-0.010289;, + -0.473651;-0.308016;-0.010289;, + -0.473651; 0.321851;-0.010289;, + 0.488576; 0.321851;-0.784899;, + 0.488577;-0.308016;-0.784899;, + 0.488576;-0.308017;-0.010289;, + 0.488576; 0.321851;-0.010289;, + 0.488577;-0.308016;-0.784899;, + -0.473651;-0.308016;-0.784899;, + -0.473651;-0.308016;-0.010289;, + 0.488576;-0.308017;-0.010289;, + -0.473651;-0.308016;-0.784899;, + -0.473651; 0.321851;-0.784899;, + -0.473651; 0.321851;-0.010289;, + -0.473651;-0.308016;-0.010289;, + 0.488576; 0.321851;-0.010289;, + -0.473651; 0.321851;-0.010289;, + -0.473651; 0.321851;-0.784899;, + 0.488576; 0.321851;-0.784899;, + -0.560750;-0.559864; 0.418084;, + -0.560750;-0.559864;-0.007084;, + -0.560750; 0.573699;-0.007084;, + -0.560750; 0.573699; 0.418084;, + -0.560750; 0.573699; 0.418084;, + -0.560750; 0.573699;-0.007084;, + 0.572813; 0.573699;-0.007084;, + 0.572813; 0.573699; 0.418084;, + 0.572813; 0.573699; 0.418084;, + 0.572813; 0.573699;-0.007084;, + 0.572813;-0.559864;-0.007084;, + 0.572813;-0.559864; 0.418084;, + 0.572813;-0.559864; 0.418084;, + 0.572813;-0.559864;-0.007084;, + -0.560750;-0.559864;-0.007084;, + -0.560750;-0.559864; 0.418084;, + -0.560750;-0.559864;-0.007084;, + 0.572813;-0.559864;-0.007084;, + 0.572813; 0.573699;-0.007084;, + -0.560750; 0.573699;-0.007084;, + 0.572813;-0.559864; 0.418084;, + -0.560750;-0.559864; 0.418084;, + -0.560750; 0.573699; 0.418084;, + 0.572813; 0.573699; 0.418084;, + -0.498981;-0.874241;-0.784217;, + -0.498981;-0.874241;-0.998597;, + -0.498980;-0.302670;-0.998597;, + -0.498980;-0.302670;-0.784217;, + -0.498980;-0.302670;-0.784217;, + -0.498980;-0.302670;-0.998597;, + -0.013801;-0.302671;-0.998597;, + -0.013801;-0.302671;-0.784217;, + -0.013801;-0.302671;-0.784217;, + -0.013801;-0.302671;-0.998597;, + -0.013802;-0.874242;-0.998597;, + -0.013802;-0.874242;-0.784217;, + -0.013802;-0.874242;-0.784217;, + -0.013802;-0.874242;-0.998597;, + -0.498981;-0.874241;-0.998597;, + -0.498981;-0.874241;-0.784217;, + -0.498981;-0.874241;-0.998597;, + -0.013802;-0.874242;-0.998597;, + -0.013801;-0.302671;-0.998597;, + -0.498980;-0.302670;-0.998597;, + -0.013802;-0.874242;-0.784217;, + -0.498981;-0.874241;-0.784217;, + -0.498980;-0.302670;-0.784217;, + -0.013801;-0.302671;-0.784217;, + 0.032932;-0.874242;-0.784217;, + 0.032932;-0.874242;-0.998597;, + 0.032933;-0.302671;-0.998597;, + 0.032933;-0.302671;-0.784217;, + 0.032933;-0.302671;-0.784217;, + 0.032933;-0.302671;-0.998597;, + 0.518111;-0.302672;-0.998597;, + 0.518111;-0.302672;-0.784217;, + 0.518111;-0.302672;-0.784217;, + 0.518111;-0.302672;-0.998597;, + 0.518111;-0.874243;-0.998597;, + 0.518111;-0.874243;-0.784217;, + 0.518111;-0.874243;-0.784217;, + 0.518111;-0.874243;-0.998597;, + 0.032932;-0.874242;-0.998597;, + 0.032932;-0.874242;-0.784217;, + 0.032932;-0.874242;-0.998597;, + 0.518111;-0.874243;-0.998597;, + 0.518111;-0.302672;-0.998597;, + 0.032933;-0.302671;-0.998597;, + 0.518111;-0.874243;-0.784217;, + 0.032932;-0.874242;-0.784217;, + 0.032933;-0.302671;-0.784217;, + 0.518111;-0.302672;-0.784217;, + -0.498979; 0.312588;-0.784217;, + -0.498979; 0.312588;-0.998597;, + -0.498978; 0.884159;-0.998597;, + -0.498978; 0.884159;-0.784217;, + -0.498978; 0.884159;-0.784217;, + -0.498978; 0.884159;-0.998597;, + -0.013800; 0.884158;-0.998597;, + -0.013800; 0.884158;-0.784217;, + -0.013800; 0.884158;-0.784217;, + -0.013800; 0.884158;-0.998597;, + -0.013800; 0.312587;-0.998597;, + -0.013800; 0.312587;-0.784217;, + -0.013800; 0.312587;-0.784217;, + -0.013800; 0.312587;-0.998597;, + -0.498979; 0.312588;-0.998597;, + -0.498979; 0.312588;-0.784217;, + -0.498979; 0.312588;-0.998597;, + -0.013800; 0.312587;-0.998597;, + -0.013800; 0.884158;-0.998597;, + -0.498978; 0.884159;-0.998597;, + -0.013800; 0.312587;-0.784217;, + -0.498979; 0.312588;-0.784217;, + -0.498978; 0.884159;-0.784217;, + -0.013800; 0.884158;-0.784217;, + 0.032933; 0.312587;-0.784217;, + 0.032933; 0.312587;-0.998597;, + 0.032934; 0.884158;-0.998597;, + 0.032934; 0.884158;-0.784217;, + 0.032934; 0.884158;-0.784217;, + 0.032934; 0.884158;-0.998597;, + 0.518113; 0.884158;-0.998597;, + 0.518113; 0.884158;-0.784217;, + 0.518113; 0.884158;-0.784217;, + 0.518113; 0.884158;-0.998597;, + 0.518112; 0.312587;-0.998597;, + 0.518112; 0.312587;-0.784217;, + 0.518112; 0.312587;-0.784217;, + 0.518112; 0.312587;-0.998597;, + 0.032933; 0.312587;-0.998597;, + 0.032933; 0.312587;-0.784217;, + 0.032933; 0.312587;-0.998597;, + 0.518112; 0.312587;-0.998597;, + 0.518113; 0.884158;-0.998597;, + 0.032934; 0.884158;-0.998597;, + 0.518112; 0.312587;-0.784217;, + 0.032933; 0.312587;-0.784217;, + 0.032934; 0.884158;-0.784217;, + 0.518113; 0.884158;-0.784217;; + 36; + 4;0,1,2,3;, + 4;4,5,6,7;, + 4;8,9,10,11;, + 4;12,13,14,15;, + 4;16,17,18,19;, + 4;20,21,22,23;, + 4;24,25,26,27;, + 4;28,29,30,31;, + 4;32,33,34,35;, + 4;36,37,38,39;, + 4;40,41,42,43;, + 4;44,45,46,47;, + 4;48,49,50,51;, + 4;52,53,54,55;, + 4;56,57,58,59;, + 4;60,61,62,63;, + 4;64,65,66,67;, + 4;68,69,70,71;, + 4;72,73,74,75;, + 4;76,77,78,79;, + 4;80,81,82,83;, + 4;84,85,86,87;, + 4;88,89,90,91;, + 4;92,93,94,95;, + 4;96,97,98,99;, + 4;100,101,102,103;, + 4;104,105,106,107;, + 4;108,109,110,111;, + 4;112,113,114,115;, + 4;116,117,118,119;, + 4;120,121,122,123;, + 4;124,125,126,127;, + 4;128,129,130,131;, + 4;132,133,134,135;, + 4;136,137,138,139;, + 4;140,141,142,143;; + MeshNormals { // Creeper normals + 36; + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000000;-0.000000;, + 0.000001; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000001;-1.000000;-0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000;-0.000002; 0.000000;, + -0.000001;-1.000000; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000001; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000;-0.000002; 0.000000;, + -0.000002;-1.000000; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000002; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000;-0.000002; 0.000000;, + -0.000002;-1.000000; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000002; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000;-0.000002; 0.000000;, + -0.000002;-1.000000; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 0.000001; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;; + 36; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;; + } // End of Creeper normals + MeshTextureCoords { // Creeper UV coordinates + 144; + 0.375000; 0.500000;, + 0.562500; 0.500000;, + 0.562500; 0.625000;, + 0.375000; 0.625000;, + 0.562500; 0.500000;, + 0.562500; 0.625000;, + 0.460938; 0.625000;, + 0.460938; 0.500000;, + 0.625000; 1.000000;, + 0.500000; 1.000000;, + 0.500000; 0.625000;, + 0.625000; 0.625000;, + 0.500000; 1.000000;, + 0.375000; 1.000000;, + 0.375000; 0.625000;, + 0.500000; 0.625000;, + 0.375000; 1.000000;, + 0.312500; 1.000000;, + 0.312500; 0.625000;, + 0.375000; 0.625000;, + 0.500000; 0.250000;, + 0.375000; 0.250000;, + 0.375000; 0.625000;, + 0.500000; 0.625000;, + 0.000000; 0.500000;, + 0.000000; 0.250000;, + 0.117188; 0.250000;, + 0.117188; 0.500000;, + 0.382812; 0.500000;, + 0.382812; 0.250000;, + 0.500000; 0.250000;, + 0.500000; 0.500000;, + 0.390625; 0.250000;, + 0.390625; 0.500000;, + 0.265625; 0.500000;, + 0.265625; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.250000;, + 0.250000; 0.000000;, + 0.375000; 0.000000;, + 0.375000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.000000;, + 0.250000; 0.000000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;; + } // End of Creeper UV coordinates + MeshMaterialList { // Creeper material list + 1; + 36; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.213931; 0.640000; 0.233354; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"creeper.png";} + } + } // End of Creeper material list + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Creeper_Rig_Leg_F_L"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -5.640023,-0.000004,-0.000004, 0.000000, + 0.000006,-3.323252,-4.556957, 0.000000, + 0.000002,-12.149540, 8.860293, 0.000000, + 1.549189,-10.496173, 5.236192, 1.000000;; + } // End of Creeper_Rig_Leg_F_L skin weights + SkinWeights { + "Creeper_Rig_Leg_B_R"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -5.640023, 0.000004,-0.000004, 0.000000, + 0.000006, 3.323252,-4.556957, 0.000000, + -0.000002,-12.149538,-8.860295, 0.000000, + -1.515078,-10.454203,-5.293743, 1.000000;; + } // End of Creeper_Rig_Leg_B_R skin weights + SkinWeights { + "Creeper_Rig_Body"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -5.640023,-0.000000, 0.000007, 0.000000, + 0.000007,-0.000000, 5.640023, 0.000000, + 0.000000,15.037158, 0.000001, 0.000000, + 0.066479,11.288513, 0.196037, 1.000000;; + } // End of Creeper_Rig_Body skin weights + SkinWeights { + "Creeper_Rig_Head"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -5.640023,-0.000000, 0.000007, 0.000000, + 0.000007,-0.000000, 5.640023, 0.000000, + 0.000000,15.037158, 0.000001, 0.000000, + 0.066479, 0.163483, 0.196037, 1.000000;; + } // End of Creeper_Rig_Head skin weights + SkinWeights { + "Creeper_Rig_Root"; + 0; + -5.640023,-0.000000, 0.000007, 0.000000, + 0.000007,-0.000000, 5.640023, 0.000000, + 0.000000,15.037158, 0.000001, 0.000000, + 0.066479,14.972612, 0.077420, 1.000000;; + } // End of Creeper_Rig_Root skin weights + SkinWeights { + "Creeper_Rig_Leg_B_L"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -5.640023, 0.000004,-0.000004, 0.000000, + 0.000006, 3.323252,-4.556957, 0.000000, + -0.000002,-12.149538,-8.860295, 0.000000, + 1.549186,-10.454203,-5.293744, 1.000000;; + } // End of Creeper_Rig_Leg_B_L skin weights + SkinWeights { + "Creeper_Rig_Leg_F_R"; + 24; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -5.640023,-0.000004,-0.000004, 0.000000, + 0.000006,-3.323252,-4.556957, 0.000000, + 0.000002,-12.149540, 8.860293, 0.000000, + -1.515076,-10.496173, 5.236193, 1.000000;; + } // End of Creeper_Rig_Leg_F_R skin weights + } // End of Creeper mesh + } // End of Creeper + } // End of Creeper_Rig +} // End of Root +AnimationSet Global { + Animation { + {Creeper} + AnimationKey { // Rotation + 0; + 190; + 0;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 1;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 2;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 3;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 4;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 5;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 6;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 7;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 8;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 9;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 10;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 11;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 12;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 13;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 14;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 15;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 16;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 17;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 18;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 19;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 20;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 21;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 22;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 23;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 24;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 25;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 26;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 27;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 28;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 29;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 30;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 31;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 32;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 33;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 34;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 35;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 36;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 37;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 38;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 39;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 40;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 41;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 42;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 43;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 44;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 45;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 46;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 47;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 48;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 49;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 50;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 51;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 52;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 53;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 54;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 55;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 56;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 57;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 58;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 59;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 60;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 61;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 62;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 63;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 64;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 65;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 66;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 67;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 68;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 69;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 70;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 71;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 72;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 73;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 74;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 75;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 76;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 77;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 78;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 79;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 80;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 81;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 82;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 83;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 84;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 85;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 86;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 87;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 88;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 89;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 90;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 91;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 92;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 93;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 94;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 95;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 96;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 97;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 98;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 99;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 100;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 101;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 102;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 103;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 104;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 105;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 106;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 107;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 108;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 109;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 110;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 111;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 112;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 113;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 114;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 115;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 116;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 117;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 118;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 119;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 120;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 121;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 122;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 123;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 124;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 125;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 126;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 127;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 128;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 129;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 130;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 131;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 132;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 133;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 134;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 135;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 136;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 137;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 138;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 139;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 140;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 141;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 142;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 143;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 144;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 145;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 146;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 147;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 148;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 149;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 150;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 151;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 152;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 153;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 154;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 155;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 156;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 157;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 158;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 159;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 160;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 161;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 162;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 163;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 164;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 165;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 166;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 167;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 168;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 169;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 170;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 171;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 172;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 173;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 174;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 175;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 176;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 177;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 178;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 179;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 180;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 181;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 182;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 183;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 184;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 185;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 186;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 187;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 188;4; 0.000001,-0.000000, 0.000000, 1.000000;;, + 189;4; 0.000001,-0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 5.640023, 5.640023,15.037158;;, + 1;3; 5.640023, 5.640023,15.037158;;, + 2;3; 5.640023, 5.640023,15.037158;;, + 3;3; 5.640023, 5.640023,15.037158;;, + 4;3; 5.640023, 5.640023,15.037158;;, + 5;3; 5.640023, 5.640023,15.037158;;, + 6;3; 5.640023, 5.640023,15.037158;;, + 7;3; 5.640023, 5.640023,15.037158;;, + 8;3; 5.640023, 5.640023,15.037158;;, + 9;3; 5.640023, 5.640023,15.037158;;, + 10;3; 5.640023, 5.640023,15.037158;;, + 11;3; 5.640023, 5.640023,15.037158;;, + 12;3; 5.640023, 5.640023,15.037158;;, + 13;3; 5.640023, 5.640023,15.037158;;, + 14;3; 5.640023, 5.640023,15.037158;;, + 15;3; 5.640023, 5.640023,15.037158;;, + 16;3; 5.640023, 5.640023,15.037158;;, + 17;3; 5.640023, 5.640023,15.037158;;, + 18;3; 5.640023, 5.640023,15.037158;;, + 19;3; 5.640023, 5.640023,15.037158;;, + 20;3; 5.640023, 5.640023,15.037158;;, + 21;3; 5.640023, 5.640023,15.037158;;, + 22;3; 5.640023, 5.640023,15.037158;;, + 23;3; 5.640023, 5.640023,15.037158;;, + 24;3; 5.640023, 5.640023,15.037158;;, + 25;3; 5.640023, 5.640023,15.037158;;, + 26;3; 5.640023, 5.640023,15.037158;;, + 27;3; 5.640023, 5.640023,15.037158;;, + 28;3; 5.640023, 5.640023,15.037158;;, + 29;3; 5.640023, 5.640023,15.037158;;, + 30;3; 5.640023, 5.640023,15.037158;;, + 31;3; 5.640023, 5.640023,15.037158;;, + 32;3; 5.640023, 5.640023,15.037158;;, + 33;3; 5.640023, 5.640023,15.037158;;, + 34;3; 5.640023, 5.640023,15.037158;;, + 35;3; 5.640023, 5.640023,15.037158;;, + 36;3; 5.640023, 5.640023,15.037158;;, + 37;3; 5.640023, 5.640023,15.037158;;, + 38;3; 5.640023, 5.640023,15.037158;;, + 39;3; 5.640023, 5.640023,15.037158;;, + 40;3; 5.640023, 5.640023,15.037158;;, + 41;3; 5.640023, 5.640023,15.037158;;, + 42;3; 5.640023, 5.640023,15.037158;;, + 43;3; 5.640023, 5.640023,15.037158;;, + 44;3; 5.640023, 5.640023,15.037158;;, + 45;3; 5.640023, 5.640023,15.037158;;, + 46;3; 5.640023, 5.640023,15.037158;;, + 47;3; 5.640023, 5.640023,15.037158;;, + 48;3; 5.640023, 5.640023,15.037158;;, + 49;3; 5.640023, 5.640023,15.037158;;, + 50;3; 5.640023, 5.640023,15.037158;;, + 51;3; 5.640023, 5.640023,15.037158;;, + 52;3; 5.640023, 5.640023,15.037158;;, + 53;3; 5.640023, 5.640023,15.037158;;, + 54;3; 5.640023, 5.640023,15.037158;;, + 55;3; 5.640023, 5.640023,15.037158;;, + 56;3; 5.640023, 5.640023,15.037158;;, + 57;3; 5.640023, 5.640023,15.037158;;, + 58;3; 5.640023, 5.640023,15.037158;;, + 59;3; 5.640023, 5.640023,15.037158;;, + 60;3; 5.640023, 5.640023,15.037158;;, + 61;3; 5.640023, 5.640023,15.037158;;, + 62;3; 5.640023, 5.640023,15.037158;;, + 63;3; 5.640023, 5.640023,15.037158;;, + 64;3; 5.640023, 5.640023,15.037158;;, + 65;3; 5.640023, 5.640023,15.037158;;, + 66;3; 5.640023, 5.640023,15.037158;;, + 67;3; 5.640023, 5.640023,15.037158;;, + 68;3; 5.640023, 5.640023,15.037158;;, + 69;3; 5.640023, 5.640023,15.037158;;, + 70;3; 5.640023, 5.640023,15.037158;;, + 71;3; 5.640023, 5.640023,15.037158;;, + 72;3; 5.640023, 5.640023,15.037158;;, + 73;3; 5.640023, 5.640023,15.037158;;, + 74;3; 5.640023, 5.640023,15.037158;;, + 75;3; 5.640023, 5.640023,15.037158;;, + 76;3; 5.640023, 5.640023,15.037158;;, + 77;3; 5.640023, 5.640023,15.037158;;, + 78;3; 5.640023, 5.640023,15.037158;;, + 79;3; 5.640023, 5.640023,15.037158;;, + 80;3; 5.640023, 5.640023,15.037158;;, + 81;3; 5.640023, 5.640023,15.037158;;, + 82;3; 5.640023, 5.640023,15.037158;;, + 83;3; 5.640023, 5.640023,15.037158;;, + 84;3; 5.640023, 5.640023,15.037158;;, + 85;3; 5.640023, 5.640023,15.037158;;, + 86;3; 5.640023, 5.640023,15.037158;;, + 87;3; 5.640023, 5.640023,15.037158;;, + 88;3; 5.640023, 5.640023,15.037158;;, + 89;3; 5.640023, 5.640023,15.037158;;, + 90;3; 5.640023, 5.640023,15.037158;;, + 91;3; 5.640023, 5.640023,15.037158;;, + 92;3; 5.640023, 5.640023,15.037158;;, + 93;3; 5.640023, 5.640023,15.037158;;, + 94;3; 5.640023, 5.640023,15.037158;;, + 95;3; 5.640023, 5.640023,15.037158;;, + 96;3; 5.640023, 5.640023,15.037158;;, + 97;3; 5.640023, 5.640023,15.037158;;, + 98;3; 5.640023, 5.640023,15.037158;;, + 99;3; 5.640023, 5.640023,15.037158;;, + 100;3; 5.640023, 5.640023,15.037158;;, + 101;3; 5.640023, 5.640023,15.037158;;, + 102;3; 5.640023, 5.640023,15.037158;;, + 103;3; 5.640023, 5.640023,15.037158;;, + 104;3; 5.640023, 5.640023,15.037158;;, + 105;3; 5.640023, 5.640023,15.037158;;, + 106;3; 5.640023, 5.640023,15.037158;;, + 107;3; 5.640023, 5.640023,15.037158;;, + 108;3; 5.640023, 5.640023,15.037158;;, + 109;3; 5.640023, 5.640023,15.037158;;, + 110;3; 5.640023, 5.640023,15.037158;;, + 111;3; 5.640023, 5.640023,15.037158;;, + 112;3; 5.640023, 5.640023,15.037158;;, + 113;3; 5.640023, 5.640023,15.037158;;, + 114;3; 5.640023, 5.640023,15.037158;;, + 115;3; 5.640023, 5.640023,15.037158;;, + 116;3; 5.640023, 5.640023,15.037158;;, + 117;3; 5.640023, 5.640023,15.037158;;, + 118;3; 5.640023, 5.640023,15.037158;;, + 119;3; 5.640023, 5.640023,15.037158;;, + 120;3; 5.640023, 5.640023,15.037158;;, + 121;3; 5.640023, 5.640023,15.037158;;, + 122;3; 5.640023, 5.640023,15.037158;;, + 123;3; 5.640023, 5.640023,15.037158;;, + 124;3; 5.640023, 5.640023,15.037158;;, + 125;3; 5.640023, 5.640023,15.037158;;, + 126;3; 5.640023, 5.640023,15.037158;;, + 127;3; 5.640023, 5.640023,15.037158;;, + 128;3; 5.640023, 5.640023,15.037158;;, + 129;3; 5.640023, 5.640023,15.037158;;, + 130;3; 5.640023, 5.640023,15.037158;;, + 131;3; 5.640023, 5.640023,15.037158;;, + 132;3; 5.640023, 5.640023,15.037158;;, + 133;3; 5.640023, 5.640023,15.037158;;, + 134;3; 5.640023, 5.640023,15.037158;;, + 135;3; 5.640023, 5.640023,15.037158;;, + 136;3; 5.640023, 5.640023,15.037158;;, + 137;3; 5.640023, 5.640023,15.037158;;, + 138;3; 5.640023, 5.640023,15.037158;;, + 139;3; 5.640023, 5.640023,15.037158;;, + 140;3; 5.640023, 5.640023,15.037158;;, + 141;3; 5.640023, 5.640023,15.037158;;, + 142;3; 5.640023, 5.640023,15.037158;;, + 143;3; 5.640023, 5.640023,15.037158;;, + 144;3; 5.640023, 5.640023,15.037158;;, + 145;3; 5.640023, 5.640023,15.037158;;, + 146;3; 5.640023, 5.640023,15.037158;;, + 147;3; 5.640023, 5.640023,15.037158;;, + 148;3; 5.640023, 5.640023,15.037158;;, + 149;3; 5.640023, 5.640023,15.037158;;, + 150;3; 5.640023, 5.640023,15.037158;;, + 151;3; 5.640023, 5.640023,15.037158;;, + 152;3; 5.640023, 5.640023,15.037158;;, + 153;3; 5.640023, 5.640023,15.037158;;, + 154;3; 5.640023, 5.640023,15.037158;;, + 155;3; 5.640023, 5.640023,15.037158;;, + 156;3; 5.640023, 5.640023,15.037158;;, + 157;3; 5.640023, 5.640023,15.037158;;, + 158;3; 5.640023, 5.640023,15.037158;;, + 159;3; 5.640023, 5.640023,15.037158;;, + 160;3; 5.640023, 5.640023,15.037158;;, + 161;3; 5.640023, 5.640023,15.037158;;, + 162;3; 5.640023, 5.640023,15.037158;;, + 163;3; 5.640023, 5.640023,15.037158;;, + 164;3; 5.640023, 5.640023,15.037158;;, + 165;3; 5.640023, 5.640023,15.037158;;, + 166;3; 5.640023, 5.640023,15.037158;;, + 167;3; 5.640023, 5.640023,15.037158;;, + 168;3; 5.640023, 5.640023,15.037158;;, + 169;3; 5.640023, 5.640023,15.037158;;, + 170;3; 5.640023, 5.640023,15.037158;;, + 171;3; 5.640023, 5.640023,15.037158;;, + 172;3; 5.640023, 5.640023,15.037158;;, + 173;3; 5.640023, 5.640023,15.037158;;, + 174;3; 5.640023, 5.640023,15.037158;;, + 175;3; 5.640023, 5.640023,15.037158;;, + 176;3; 5.640023, 5.640023,15.037158;;, + 177;3; 5.640023, 5.640023,15.037158;;, + 178;3; 5.640023, 5.640023,15.037158;;, + 179;3; 5.640023, 5.640023,15.037158;;, + 180;3; 5.640023, 5.640023,15.037158;;, + 181;3; 5.640023, 5.640023,15.037158;;, + 182;3; 5.640023, 5.640023,15.037158;;, + 183;3; 5.640023, 5.640023,15.037158;;, + 184;3; 5.640023, 5.640023,15.037158;;, + 185;3; 5.640023, 5.640023,15.037158;;, + 186;3; 5.640023, 5.640023,15.037158;;, + 187;3; 5.640023, 5.640023,15.037158;;, + 188;3; 5.640023, 5.640023,15.037158;;, + 189;3; 5.640023, 5.640023,15.037158;;; + } + AnimationKey { // Position + 2; + 190; + 0;3; 0.066479,-0.196036, 9.324150;;, + 1;3; 0.066479,-0.196036, 9.324150;;, + 2;3; 0.066479,-0.196036, 9.324150;;, + 3;3; 0.066479,-0.196036, 9.324150;;, + 4;3; 0.066479,-0.196036, 9.324150;;, + 5;3; 0.066479,-0.196036, 9.324150;;, + 6;3; 0.066479,-0.196036, 9.324150;;, + 7;3; 0.066479,-0.196036, 9.324150;;, + 8;3; 0.066479,-0.196036, 9.324150;;, + 9;3; 0.066479,-0.196036, 9.324150;;, + 10;3; 0.066479,-0.196036, 9.324150;;, + 11;3; 0.066479,-0.196036, 9.324150;;, + 12;3; 0.066479,-0.196036, 9.324150;;, + 13;3; 0.066479,-0.196036, 9.324150;;, + 14;3; 0.066479,-0.196036, 9.324150;;, + 15;3; 0.066479,-0.196036, 9.324150;;, + 16;3; 0.066479,-0.196036, 9.324150;;, + 17;3; 0.066479,-0.196036, 9.324150;;, + 18;3; 0.066479,-0.196036, 9.324150;;, + 19;3; 0.066479,-0.196036, 9.324150;;, + 20;3; 0.066479,-0.196036, 9.324150;;, + 21;3; 0.066479,-0.196036, 9.324150;;, + 22;3; 0.066479,-0.196036, 9.324150;;, + 23;3; 0.066479,-0.196036, 9.324150;;, + 24;3; 0.066479,-0.196036, 9.324150;;, + 25;3; 0.066479,-0.196036, 9.324150;;, + 26;3; 0.066479,-0.196036, 9.324150;;, + 27;3; 0.066479,-0.196036, 9.324150;;, + 28;3; 0.066479,-0.196036, 9.324150;;, + 29;3; 0.066479,-0.196036, 9.324150;;, + 30;3; 0.066479,-0.196036, 9.324150;;, + 31;3; 0.066479,-0.196036, 9.324150;;, + 32;3; 0.066479,-0.196036, 9.324150;;, + 33;3; 0.066479,-0.196036, 9.324150;;, + 34;3; 0.066479,-0.196036, 9.324150;;, + 35;3; 0.066479,-0.196036, 9.324150;;, + 36;3; 0.066479,-0.196036, 9.324150;;, + 37;3; 0.066479,-0.196036, 9.324150;;, + 38;3; 0.066479,-0.196036, 9.324150;;, + 39;3; 0.066479,-0.196036, 9.324150;;, + 40;3; 0.066479,-0.196036, 9.324150;;, + 41;3; 0.066479,-0.196036, 9.324150;;, + 42;3; 0.066479,-0.196036, 9.324150;;, + 43;3; 0.066479,-0.196036, 9.324150;;, + 44;3; 0.066479,-0.196036, 9.324150;;, + 45;3; 0.066479,-0.196036, 9.324150;;, + 46;3; 0.066479,-0.196036, 9.324150;;, + 47;3; 0.066479,-0.196036, 9.324150;;, + 48;3; 0.066479,-0.196036, 9.324150;;, + 49;3; 0.066479,-0.196036, 9.324150;;, + 50;3; 0.066479,-0.196036, 9.324150;;, + 51;3; 0.066479,-0.196036, 9.324150;;, + 52;3; 0.066479,-0.196036, 9.324150;;, + 53;3; 0.066479,-0.196036, 9.324150;;, + 54;3; 0.066479,-0.196036, 9.324150;;, + 55;3; 0.066479,-0.196036, 9.324150;;, + 56;3; 0.066479,-0.196036, 9.324150;;, + 57;3; 0.066479,-0.196036, 9.324150;;, + 58;3; 0.066479,-0.196036, 9.324150;;, + 59;3; 0.066479,-0.196036, 9.324150;;, + 60;3; 0.066479,-0.196036, 9.324150;;, + 61;3; 0.066479,-0.196036, 9.324150;;, + 62;3; 0.066479,-0.196036, 9.324150;;, + 63;3; 0.066479,-0.196036, 9.324150;;, + 64;3; 0.066479,-0.196036, 9.324150;;, + 65;3; 0.066479,-0.196036, 9.324150;;, + 66;3; 0.066479,-0.196036, 9.324150;;, + 67;3; 0.066479,-0.196036, 9.324150;;, + 68;3; 0.066479,-0.196036, 9.324150;;, + 69;3; 0.066479,-0.196036, 9.324150;;, + 70;3; 0.066479,-0.196036, 9.324150;;, + 71;3; 0.066479,-0.196036, 9.324150;;, + 72;3; 0.066479,-0.196036, 9.324150;;, + 73;3; 0.066479,-0.196036, 9.324150;;, + 74;3; 0.066479,-0.196036, 9.324150;;, + 75;3; 0.066479,-0.196036, 9.324150;;, + 76;3; 0.066479,-0.196036, 9.324150;;, + 77;3; 0.066479,-0.196036, 9.324150;;, + 78;3; 0.066479,-0.196036, 9.324150;;, + 79;3; 0.066479,-0.196036, 9.324150;;, + 80;3; 0.066479,-0.196036, 9.324150;;, + 81;3; 0.066479,-0.196036, 9.324150;;, + 82;3; 0.066479,-0.196036, 9.324150;;, + 83;3; 0.066479,-0.196036, 9.324150;;, + 84;3; 0.066479,-0.196036, 9.324150;;, + 85;3; 0.066479,-0.196036, 9.324150;;, + 86;3; 0.066479,-0.196036, 9.324150;;, + 87;3; 0.066479,-0.196036, 9.324150;;, + 88;3; 0.066479,-0.196036, 9.324150;;, + 89;3; 0.066479,-0.196036, 9.324150;;, + 90;3; 0.066479,-0.196036, 9.324150;;, + 91;3; 0.066479,-0.196036, 9.324150;;, + 92;3; 0.066479,-0.196036, 9.324150;;, + 93;3; 0.066479,-0.196036, 9.324150;;, + 94;3; 0.066479,-0.196036, 9.324150;;, + 95;3; 0.066479,-0.196036, 9.324150;;, + 96;3; 0.066479,-0.196036, 9.324150;;, + 97;3; 0.066479,-0.196036, 9.324150;;, + 98;3; 0.066479,-0.196036, 9.324150;;, + 99;3; 0.066479,-0.196036, 9.324150;;, + 100;3; 0.066479,-0.196036, 9.324150;;, + 101;3; 0.066479,-0.196036, 9.324150;;, + 102;3; 0.066479,-0.196036, 9.324150;;, + 103;3; 0.066479,-0.196036, 9.324150;;, + 104;3; 0.066479,-0.196036, 9.324150;;, + 105;3; 0.066479,-0.196036, 9.324150;;, + 106;3; 0.066479,-0.196036, 9.324150;;, + 107;3; 0.066479,-0.196036, 9.324150;;, + 108;3; 0.066479,-0.196036, 9.324150;;, + 109;3; 0.066479,-0.196036, 9.324150;;, + 110;3; 0.066479,-0.196036, 9.324150;;, + 111;3; 0.066479,-0.196036, 9.324150;;, + 112;3; 0.066479,-0.196036, 9.324150;;, + 113;3; 0.066479,-0.196036, 9.324150;;, + 114;3; 0.066479,-0.196036, 9.324150;;, + 115;3; 0.066479,-0.196036, 9.324150;;, + 116;3; 0.066479,-0.196036, 9.324150;;, + 117;3; 0.066479,-0.196036, 9.324150;;, + 118;3; 0.066479,-0.196036, 9.324150;;, + 119;3; 0.066479,-0.196036, 9.324150;;, + 120;3; 0.066479,-0.196036, 9.324150;;, + 121;3; 0.066479,-0.196036, 9.324150;;, + 122;3; 0.066479,-0.196036, 9.324150;;, + 123;3; 0.066479,-0.196036, 9.324150;;, + 124;3; 0.066479,-0.196036, 9.324150;;, + 125;3; 0.066479,-0.196036, 9.324150;;, + 126;3; 0.066479,-0.196036, 9.324150;;, + 127;3; 0.066479,-0.196036, 9.324150;;, + 128;3; 0.066479,-0.196036, 9.324150;;, + 129;3; 0.066479,-0.196036, 9.324150;;, + 130;3; 0.066479,-0.196036, 9.324150;;, + 131;3; 0.066479,-0.196036, 9.324150;;, + 132;3; 0.066479,-0.196036, 9.324150;;, + 133;3; 0.066479,-0.196036, 9.324150;;, + 134;3; 0.066479,-0.196036, 9.324150;;, + 135;3; 0.066479,-0.196036, 9.324150;;, + 136;3; 0.066479,-0.196036, 9.324150;;, + 137;3; 0.066479,-0.196036, 9.324150;;, + 138;3; 0.066479,-0.196036, 9.324150;;, + 139;3; 0.066479,-0.196036, 9.324150;;, + 140;3; 0.066479,-0.196036, 9.324150;;, + 141;3; 0.066479,-0.196036, 9.324150;;, + 142;3; 0.066479,-0.196036, 9.324150;;, + 143;3; 0.066479,-0.196036, 9.324150;;, + 144;3; 0.066479,-0.196036, 9.324150;;, + 145;3; 0.066479,-0.196036, 9.324150;;, + 146;3; 0.066479,-0.196036, 9.324150;;, + 147;3; 0.066479,-0.196036, 9.324150;;, + 148;3; 0.066479,-0.196036, 9.324150;;, + 149;3; 0.066479,-0.196036, 9.324150;;, + 150;3; 0.066479,-0.196036, 9.324150;;, + 151;3; 0.066479,-0.196036, 9.324150;;, + 152;3; 0.066479,-0.196036, 9.324150;;, + 153;3; 0.066479,-0.196036, 9.324150;;, + 154;3; 0.066479,-0.196036, 9.324150;;, + 155;3; 0.066479,-0.196036, 9.324150;;, + 156;3; 0.066479,-0.196036, 9.324150;;, + 157;3; 0.066479,-0.196036, 9.324150;;, + 158;3; 0.066479,-0.196036, 9.324150;;, + 159;3; 0.066479,-0.196036, 9.324150;;, + 160;3; 0.066479,-0.196036, 9.324150;;, + 161;3; 0.066479,-0.196036, 9.324150;;, + 162;3; 0.066479,-0.196036, 9.324150;;, + 163;3; 0.066479,-0.196036, 9.324150;;, + 164;3; 0.066479,-0.196036, 9.324150;;, + 165;3; 0.066479,-0.196036, 9.324150;;, + 166;3; 0.066479,-0.196036, 9.324150;;, + 167;3; 0.066479,-0.196036, 9.324150;;, + 168;3; 0.066479,-0.196036, 9.324150;;, + 169;3; 0.066479,-0.196036, 9.324150;;, + 170;3; 0.066479,-0.196036, 9.324150;;, + 171;3; 0.066479,-0.196036, 9.324150;;, + 172;3; 0.066479,-0.196036, 9.324150;;, + 173;3; 0.066479,-0.196036, 9.324150;;, + 174;3; 0.066479,-0.196036, 9.324150;;, + 175;3; 0.066479,-0.196036, 9.324150;;, + 176;3; 0.066479,-0.196036, 9.324150;;, + 177;3; 0.066479,-0.196036, 9.324150;;, + 178;3; 0.066479,-0.196036, 9.324150;;, + 179;3; 0.066479,-0.196036, 9.324150;;, + 180;3; 0.066479,-0.196036, 9.324150;;, + 181;3; 0.066479,-0.196036, 9.324150;;, + 182;3; 0.066479,-0.196036, 9.324150;;, + 183;3; 0.066479,-0.196036, 9.324150;;, + 184;3; 0.066479,-0.196036, 9.324150;;, + 185;3; 0.066479,-0.196036, 9.324150;;, + 186;3; 0.066479,-0.196036, 9.324150;;, + 187;3; 0.066479,-0.196036, 9.324150;;, + 188;3; 0.066479,-0.196036, 9.324150;;, + 189;3; 0.066479,-0.196036, 9.324150;;; + } + } + Animation { + {Creeper_Rig} + AnimationKey { // Rotation + 0; + 190; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3;-0.066479, 0.196035, 5.623955;;, + 1;3;-0.066479, 0.196035, 5.623955;;, + 2;3;-0.066479, 0.196035, 5.623955;;, + 3;3;-0.066479, 0.196035, 5.623955;;, + 4;3;-0.066479, 0.196035, 5.623955;;, + 5;3;-0.066479, 0.196035, 5.623955;;, + 6;3;-0.066479, 0.196035, 5.623955;;, + 7;3;-0.066479, 0.196035, 5.623955;;, + 8;3;-0.066479, 0.196035, 5.623955;;, + 9;3;-0.066479, 0.196035, 5.623955;;, + 10;3;-0.066479, 0.196035, 5.623955;;, + 11;3;-0.066479, 0.196035, 5.623955;;, + 12;3;-0.066479, 0.196035, 5.623955;;, + 13;3;-0.066479, 0.196035, 5.623955;;, + 14;3;-0.066479, 0.196035, 5.623955;;, + 15;3;-0.066479, 0.196035, 5.623955;;, + 16;3;-0.066479, 0.196035, 5.623955;;, + 17;3;-0.066479, 0.196035, 5.623955;;, + 18;3;-0.066479, 0.196035, 5.623955;;, + 19;3;-0.066479, 0.196035, 5.623955;;, + 20;3;-0.066479, 0.196035, 5.623955;;, + 21;3;-0.066479, 0.196035, 5.623955;;, + 22;3;-0.066479, 0.196035, 5.623955;;, + 23;3;-0.066479, 0.196035, 5.623955;;, + 24;3;-0.066479, 0.196035, 5.623955;;, + 25;3;-0.066479, 0.196035, 5.623955;;, + 26;3;-0.066479, 0.196035, 5.623955;;, + 27;3;-0.066479, 0.196035, 5.623955;;, + 28;3;-0.066479, 0.196035, 5.623955;;, + 29;3;-0.066479, 0.196035, 5.623955;;, + 30;3;-0.066479, 0.196035, 5.623955;;, + 31;3;-0.066479, 0.196035, 5.623955;;, + 32;3;-0.066479, 0.196035, 5.623955;;, + 33;3;-0.066479, 0.196035, 5.623955;;, + 34;3;-0.066479, 0.196035, 5.623955;;, + 35;3;-0.066479, 0.196035, 5.623955;;, + 36;3;-0.066479, 0.196035, 5.623955;;, + 37;3;-0.066479, 0.196035, 5.623955;;, + 38;3;-0.066479, 0.196035, 5.623955;;, + 39;3;-0.066479, 0.196035, 5.623955;;, + 40;3;-0.066479, 0.196035, 5.623955;;, + 41;3;-0.066479, 0.196035, 5.623955;;, + 42;3;-0.066479, 0.196035, 5.623955;;, + 43;3;-0.066479, 0.196035, 5.623955;;, + 44;3;-0.066479, 0.196035, 5.623955;;, + 45;3;-0.066479, 0.196035, 5.623955;;, + 46;3;-0.066479, 0.196035, 5.623955;;, + 47;3;-0.066479, 0.196035, 5.623955;;, + 48;3;-0.066479, 0.196035, 5.623955;;, + 49;3;-0.066479, 0.196035, 5.623955;;, + 50;3;-0.066479, 0.196035, 5.623955;;, + 51;3;-0.066479, 0.196035, 5.623955;;, + 52;3;-0.066479, 0.196035, 5.623955;;, + 53;3;-0.066479, 0.196035, 5.623955;;, + 54;3;-0.066479, 0.196035, 5.623955;;, + 55;3;-0.066479, 0.196035, 5.623955;;, + 56;3;-0.066479, 0.196035, 5.623955;;, + 57;3;-0.066479, 0.196035, 5.623955;;, + 58;3;-0.066479, 0.196035, 5.623955;;, + 59;3;-0.066479, 0.196035, 5.623955;;, + 60;3;-0.066479, 0.196035, 5.623955;;, + 61;3;-0.066479, 0.196035, 5.623955;;, + 62;3;-0.066479, 0.196035, 5.623955;;, + 63;3;-0.066479, 0.196035, 5.623955;;, + 64;3;-0.066479, 0.196035, 5.623955;;, + 65;3;-0.066479, 0.196035, 5.623955;;, + 66;3;-0.066479, 0.196035, 5.623955;;, + 67;3;-0.066479, 0.196035, 5.623955;;, + 68;3;-0.066479, 0.196035, 5.623955;;, + 69;3;-0.066479, 0.196035, 5.623955;;, + 70;3;-0.066479, 0.196035, 5.623955;;, + 71;3;-0.066479, 0.196035, 5.623955;;, + 72;3;-0.066479, 0.196035, 5.623955;;, + 73;3;-0.066479, 0.196035, 5.623955;;, + 74;3;-0.066479, 0.196035, 5.623955;;, + 75;3;-0.066479, 0.196035, 5.623955;;, + 76;3;-0.066479, 0.196035, 5.623955;;, + 77;3;-0.066479, 0.196035, 5.623955;;, + 78;3;-0.066479, 0.196035, 5.623955;;, + 79;3;-0.066479, 0.196035, 5.623955;;, + 80;3;-0.066479, 0.196035, 5.623955;;, + 81;3;-0.066479, 0.196035, 5.623955;;, + 82;3;-0.066479, 0.196035, 5.623955;;, + 83;3;-0.066479, 0.196035, 5.623955;;, + 84;3;-0.066479, 0.196035, 5.623955;;, + 85;3;-0.066479, 0.196035, 5.623955;;, + 86;3;-0.066479, 0.196035, 5.623955;;, + 87;3;-0.066479, 0.196035, 5.623955;;, + 88;3;-0.066479, 0.196035, 5.623955;;, + 89;3;-0.066479, 0.196035, 5.623955;;, + 90;3;-0.066479, 0.196035, 5.623955;;, + 91;3;-0.066479, 0.196035, 5.623955;;, + 92;3;-0.066479, 0.196035, 5.623955;;, + 93;3;-0.066479, 0.196035, 5.623955;;, + 94;3;-0.066479, 0.196035, 5.623955;;, + 95;3;-0.066479, 0.196035, 5.623955;;, + 96;3;-0.066479, 0.196035, 5.623955;;, + 97;3;-0.066479, 0.196035, 5.623955;;, + 98;3;-0.066479, 0.196035, 5.623955;;, + 99;3;-0.066479, 0.196035, 5.623955;;, + 100;3;-0.066479, 0.196035, 5.623955;;, + 101;3;-0.066479, 0.196035, 5.623955;;, + 102;3;-0.066479, 0.196035, 5.623955;;, + 103;3;-0.066479, 0.196035, 5.623955;;, + 104;3;-0.066479, 0.196035, 5.623955;;, + 105;3;-0.066479, 0.196035, 5.623955;;, + 106;3;-0.066479, 0.196035, 5.623955;;, + 107;3;-0.066479, 0.196035, 5.623955;;, + 108;3;-0.066479, 0.196035, 5.623955;;, + 109;3;-0.066479, 0.196035, 5.623955;;, + 110;3;-0.066479, 0.196035, 5.623955;;, + 111;3;-0.066479, 0.196035, 5.623955;;, + 112;3;-0.066479, 0.196035, 5.623955;;, + 113;3;-0.066479, 0.196035, 5.623955;;, + 114;3;-0.066479, 0.196035, 5.623955;;, + 115;3;-0.066479, 0.196035, 5.623955;;, + 116;3;-0.066479, 0.196035, 5.623955;;, + 117;3;-0.066479, 0.196035, 5.623955;;, + 118;3;-0.066479, 0.196035, 5.623955;;, + 119;3;-0.066479, 0.196035, 5.623955;;, + 120;3;-0.066479, 0.196035, 5.623955;;, + 121;3;-0.066479, 0.196035, 5.623955;;, + 122;3;-0.066479, 0.196035, 5.623955;;, + 123;3;-0.066479, 0.196035, 5.623955;;, + 124;3;-0.066479, 0.196035, 5.623955;;, + 125;3;-0.066479, 0.196035, 5.623955;;, + 126;3;-0.066479, 0.196035, 5.623955;;, + 127;3;-0.066479, 0.196035, 5.623955;;, + 128;3;-0.066479, 0.196035, 5.623955;;, + 129;3;-0.066479, 0.196035, 5.623955;;, + 130;3;-0.066479, 0.196035, 5.623955;;, + 131;3;-0.066479, 0.196035, 5.623955;;, + 132;3;-0.066479, 0.196035, 5.623955;;, + 133;3;-0.066479, 0.196035, 5.623955;;, + 134;3;-0.066479, 0.196035, 5.623955;;, + 135;3;-0.066479, 0.196035, 5.623955;;, + 136;3;-0.066479, 0.196035, 5.623955;;, + 137;3;-0.066479, 0.196035, 5.623955;;, + 138;3;-0.066479, 0.196035, 5.623955;;, + 139;3;-0.066479, 0.196035, 5.623955;;, + 140;3;-0.066479, 0.196035, 5.623955;;, + 141;3;-0.066479, 0.196035, 5.623955;;, + 142;3;-0.066479, 0.196035, 5.623955;;, + 143;3;-0.066479, 0.196035, 5.623955;;, + 144;3;-0.066479, 0.196035, 5.623955;;, + 145;3;-0.066479, 0.196035, 5.623955;;, + 146;3;-0.066479, 0.196035, 5.623955;;, + 147;3;-0.066479, 0.196035, 5.623955;;, + 148;3;-0.066479, 0.196035, 5.623955;;, + 149;3;-0.066479, 0.196035, 5.623955;;, + 150;3;-0.066479, 0.196035, 5.623955;;, + 151;3;-0.066479, 0.196035, 5.623955;;, + 152;3;-0.066479, 0.196035, 5.623955;;, + 153;3;-0.066479, 0.196035, 5.623955;;, + 154;3;-0.066479, 0.196035, 5.623955;;, + 155;3;-0.066479, 0.196035, 5.623955;;, + 156;3;-0.066479, 0.196035, 5.623955;;, + 157;3;-0.066479, 0.196035, 5.623955;;, + 158;3;-0.066479, 0.196035, 5.623955;;, + 159;3;-0.066479, 0.196035, 5.623955;;, + 160;3;-0.066479, 0.196035, 5.623955;;, + 161;3;-0.066479, 0.196035, 5.623955;;, + 162;3;-0.066479, 0.196035, 5.623955;;, + 163;3;-0.066479, 0.196035, 5.623955;;, + 164;3;-0.066479, 0.196035, 5.623955;;, + 165;3;-0.066479, 0.196035, 5.623955;;, + 166;3;-0.066479, 0.196035, 5.623955;;, + 167;3;-0.066479, 0.196035, 5.623955;;, + 168;3;-0.066479, 0.196035, 5.623955;;, + 169;3;-0.066479, 0.196035, 5.623955;;, + 170;3;-0.066479, 0.196035, 5.623955;;, + 171;3;-0.066479, 0.196035, 5.623955;;, + 172;3;-0.066479, 0.196035, 5.623955;;, + 173;3;-0.066479, 0.196035, 5.623955;;, + 174;3;-0.066479, 0.196035, 5.623955;;, + 175;3;-0.066479, 0.196035, 5.623955;;, + 176;3;-0.066479, 0.196035, 5.623955;;, + 177;3;-0.066479, 0.196035, 5.623955;;, + 178;3;-0.066479, 0.196035, 5.623955;;, + 179;3;-0.066479, 0.196035, 5.623955;;, + 180;3;-0.066479, 0.196035, 5.623955;;, + 181;3;-0.066479, 0.196035, 5.623955;;, + 182;3;-0.066479, 0.196035, 5.623955;;, + 183;3;-0.066479, 0.196035, 5.623955;;, + 184;3;-0.066479, 0.196035, 5.623955;;, + 185;3;-0.066479, 0.196035, 5.623955;;, + 186;3;-0.066479, 0.196035, 5.623955;;, + 187;3;-0.066479, 0.196035, 5.623955;;, + 188;3;-0.066479, 0.196035, 5.623955;;, + 189;3;-0.066479, 0.196035, 5.623955;;; + } + } + Animation { + {Creeper_Rig_Root} + AnimationKey { // Rotation + 0; + 190; + 0;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 146;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 147;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 148;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 149;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 150;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 151;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 152;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 153;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 154;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 155;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 156;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 157;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 158;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 159;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 160;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 162;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 163;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 164;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 165;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 166;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 167;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 180;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 181;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 182;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 183;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 184;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 185;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 186;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 187;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 188;4;-0.707107, 0.707107,-0.000000, 0.000000;;, + 189;4;-0.707107, 0.707107,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3; 0.000000,-0.118617,-5.648463;;, + 1;3; 0.000000,-0.118617,-5.648463;;, + 2;3; 0.000000,-0.118617,-5.648463;;, + 3;3; 0.000000,-0.118617,-5.648463;;, + 4;3; 0.000000,-0.118617,-5.648463;;, + 5;3; 0.000000,-0.118617,-5.648463;;, + 6;3; 0.000000,-0.118617,-5.648463;;, + 7;3; 0.000000,-0.118617,-5.648463;;, + 8;3; 0.000000,-0.118617,-5.648463;;, + 9;3; 0.000000,-0.118617,-5.648463;;, + 10;3; 0.000000,-0.118617,-5.648463;;, + 11;3; 0.000000,-0.118617,-5.648463;;, + 12;3; 0.000000,-0.118617,-5.648463;;, + 13;3; 0.000000,-0.118617,-5.648463;;, + 14;3; 0.000000,-0.118617,-5.648463;;, + 15;3; 0.000000,-0.118617,-5.648463;;, + 16;3; 0.000000,-0.118617,-5.648463;;, + 17;3; 0.000000,-0.118617,-5.648463;;, + 18;3; 0.000000,-0.118617,-5.648463;;, + 19;3; 0.000000,-0.118617,-5.648463;;, + 20;3; 0.000000,-0.118617,-5.648463;;, + 21;3; 0.000000,-0.118617,-5.648463;;, + 22;3; 0.000000,-0.118617,-5.648463;;, + 23;3; 0.000000,-0.118617,-5.648463;;, + 24;3; 0.000000,-0.118617,-5.648463;;, + 25;3; 0.000000,-0.118617,-5.648463;;, + 26;3; 0.000000,-0.118617,-5.648463;;, + 27;3; 0.000000,-0.118617,-5.648463;;, + 28;3; 0.000000,-0.118617,-5.648463;;, + 29;3; 0.000000,-0.118617,-5.648463;;, + 30;3; 0.000000,-0.118617,-5.648463;;, + 31;3; 0.000000,-0.118617,-5.648463;;, + 32;3; 0.000000,-0.118617,-5.648463;;, + 33;3; 0.000000,-0.118617,-5.648463;;, + 34;3; 0.000000,-0.118617,-5.648463;;, + 35;3; 0.000000,-0.118617,-5.648463;;, + 36;3; 0.000000,-0.118617,-5.648463;;, + 37;3; 0.000000,-0.118617,-5.648463;;, + 38;3; 0.000000,-0.118617,-5.648463;;, + 39;3; 0.000000,-0.118617,-5.648463;;, + 40;3; 0.000000,-0.118617,-5.648463;;, + 41;3; 0.000000,-0.118617,-5.648463;;, + 42;3; 0.000000,-0.118617,-5.648463;;, + 43;3; 0.000000,-0.118617,-5.648463;;, + 44;3; 0.000000,-0.118617,-5.648463;;, + 45;3; 0.000000,-0.118617,-5.648463;;, + 46;3; 0.000000,-0.118617,-5.648463;;, + 47;3; 0.000000,-0.118617,-5.648463;;, + 48;3; 0.000000,-0.118617,-5.648463;;, + 49;3; 0.000000,-0.118617,-5.648463;;, + 50;3; 0.000000,-0.118617,-5.648463;;, + 51;3; 0.000000,-0.118617,-5.648463;;, + 52;3; 0.000000,-0.118617,-5.648463;;, + 53;3; 0.000000,-0.118617,-5.648463;;, + 54;3; 0.000000,-0.118617,-5.648463;;, + 55;3; 0.000000,-0.118617,-5.648463;;, + 56;3; 0.000000,-0.118617,-5.648463;;, + 57;3; 0.000000,-0.118617,-5.648463;;, + 58;3; 0.000000,-0.118617,-5.648463;;, + 59;3; 0.000000,-0.118617,-5.648463;;, + 60;3; 0.000000,-0.118617,-5.648463;;, + 61;3; 0.000000,-0.118617,-5.648463;;, + 62;3; 0.000000,-0.118617,-5.648463;;, + 63;3; 0.000000,-0.118617,-5.648463;;, + 64;3; 0.000000,-0.118617,-5.648463;;, + 65;3; 0.000000,-0.118617,-5.648463;;, + 66;3; 0.000000,-0.118617,-5.648463;;, + 67;3; 0.000000,-0.118617,-5.648463;;, + 68;3; 0.000000,-0.118617,-5.648463;;, + 69;3; 0.000000,-0.118617,-5.648463;;, + 70;3; 0.000000,-0.118617,-5.648463;;, + 71;3; 0.000000,-0.118617,-5.648463;;, + 72;3; 0.000000,-0.118617,-5.648463;;, + 73;3; 0.000000,-0.118617,-5.648463;;, + 74;3; 0.000000,-0.118617,-5.648463;;, + 75;3; 0.000000,-0.118617,-5.648463;;, + 76;3; 0.000000,-0.118617,-5.648463;;, + 77;3; 0.000000,-0.118617,-5.648463;;, + 78;3; 0.000000,-0.118617,-5.648463;;, + 79;3; 0.000000,-0.118617,-5.648463;;, + 80;3; 0.000000,-0.118617,-5.648463;;, + 81;3; 0.000000,-0.118617,-5.648463;;, + 82;3; 0.000000,-0.118617,-5.648463;;, + 83;3; 0.000000,-0.118617,-5.648463;;, + 84;3; 0.000000,-0.118617,-5.648463;;, + 85;3; 0.000000,-0.118617,-5.648463;;, + 86;3; 0.000000,-0.118617,-5.648463;;, + 87;3; 0.000000,-0.118617,-5.648463;;, + 88;3; 0.000000,-0.118617,-5.648463;;, + 89;3; 0.000000,-0.118617,-5.648463;;, + 90;3; 0.000000,-0.118617,-5.648463;;, + 91;3; 0.000000,-0.118617,-5.648463;;, + 92;3; 0.000000,-0.118617,-5.648463;;, + 93;3; 0.000000,-0.118617,-5.648463;;, + 94;3; 0.000000,-0.118617,-5.648463;;, + 95;3; 0.000000,-0.118617,-5.648463;;, + 96;3; 0.000000,-0.118617,-5.648463;;, + 97;3; 0.000000,-0.118617,-5.648463;;, + 98;3; 0.000000,-0.118617,-5.648463;;, + 99;3; 0.000000,-0.118617,-5.648463;;, + 100;3; 0.000000,-0.118617,-5.648463;;, + 101;3; 0.000000,-0.118617,-5.648463;;, + 102;3; 0.000000,-0.118617,-5.648463;;, + 103;3; 0.000000,-0.118617,-5.648463;;, + 104;3; 0.000000,-0.118617,-5.648463;;, + 105;3; 0.000000,-0.118617,-5.648463;;, + 106;3; 0.000000,-0.118617,-5.648463;;, + 107;3; 0.000000,-0.118617,-5.648463;;, + 108;3; 0.000000,-0.118617,-5.648463;;, + 109;3; 0.000000,-0.118617,-5.648463;;, + 110;3; 0.000000,-0.118617,-5.648463;;, + 111;3; 0.000000,-0.118617,-5.648463;;, + 112;3; 0.000000,-0.118617,-5.648463;;, + 113;3; 0.000000,-0.118617,-5.648463;;, + 114;3; 0.000000,-0.118617,-5.648463;;, + 115;3; 0.000000,-0.118617,-5.648463;;, + 116;3; 0.000000,-0.118617,-5.648463;;, + 117;3; 0.000000,-0.118617,-5.648463;;, + 118;3; 0.000000,-0.118617,-5.648463;;, + 119;3; 0.000000,-0.118617,-5.648463;;, + 120;3; 0.000000,-0.118617,-5.648463;;, + 121;3; 0.000000,-0.118617,-5.648463;;, + 122;3; 0.000000,-0.118617,-5.648463;;, + 123;3; 0.000000,-0.118617,-5.648463;;, + 124;3; 0.000000,-0.118617,-5.648463;;, + 125;3; 0.000000,-0.118617,-5.648463;;, + 126;3; 0.000000,-0.118617,-5.648463;;, + 127;3; 0.000000,-0.118617,-5.648463;;, + 128;3; 0.000000,-0.118617,-5.648463;;, + 129;3; 0.000000,-0.118617,-5.648463;;, + 130;3; 0.000000,-0.118617,-5.648463;;, + 131;3; 0.000000,-0.118617,-5.648463;;, + 132;3; 0.000000,-0.118617,-5.648463;;, + 133;3; 0.000000,-0.118617,-5.648463;;, + 134;3; 0.000000,-0.118617,-5.648463;;, + 135;3; 0.000000,-0.118617,-5.648463;;, + 136;3; 0.000000,-0.118617,-5.648463;;, + 137;3; 0.000000,-0.118617,-5.648463;;, + 138;3; 0.000000,-0.118617,-5.648463;;, + 139;3; 0.000000,-0.118617,-5.648463;;, + 140;3; 0.000000,-0.118617,-5.648463;;, + 141;3; 0.000000,-0.118617,-5.648463;;, + 142;3; 0.000000,-0.118617,-5.648463;;, + 143;3; 0.000000,-0.118617,-5.648463;;, + 144;3; 0.000000,-0.118617,-5.648463;;, + 145;3; 0.000000,-0.118617,-5.648463;;, + 146;3; 0.000000,-0.118617,-5.648463;;, + 147;3; 0.000000,-0.118617,-5.648463;;, + 148;3; 0.000000,-0.118617,-5.648463;;, + 149;3; 0.000000,-0.118617,-5.648463;;, + 150;3; 0.000000,-0.118617,-5.648463;;, + 151;3; 0.000000,-0.118617,-5.648463;;, + 152;3; 0.000000,-0.118617,-5.648463;;, + 153;3; 0.000000,-0.118617,-5.648463;;, + 154;3; 0.000000,-0.118617,-5.648463;;, + 155;3; 0.000000,-0.118617,-5.648463;;, + 156;3; 0.000000,-0.118617,-5.648463;;, + 157;3; 0.000000,-0.118617,-5.648463;;, + 158;3; 0.000000,-0.118617,-5.648463;;, + 159;3; 0.000000,-0.118617,-5.648463;;, + 160;3; 0.000000,-0.118617,-5.648463;;, + 161;3; 0.000000,-0.118617,-5.648463;;, + 162;3; 0.000000,-0.118617,-5.648463;;, + 163;3; 0.000000,-0.118617,-5.648463;;, + 164;3; 0.000000,-0.118617,-5.648463;;, + 165;3; 0.000000,-0.118617,-5.648463;;, + 166;3; 0.000000,-0.118617,-5.648463;;, + 167;3; 0.000000,-0.118617,-5.648463;;, + 168;3; 0.000000,-0.118617,-5.648463;;, + 169;3; 0.000000,-0.118617,-5.648463;;, + 170;3; 0.000000,-0.118617,-5.648463;;, + 171;3; 0.000000,-0.118617,-5.648463;;, + 172;3; 0.000000,-0.118617,-5.648463;;, + 173;3; 0.000000,-0.118617,-5.648463;;, + 174;3; 0.000000,-0.118617,-5.648463;;, + 175;3; 0.000000,-0.118617,-5.648463;;, + 176;3; 0.000000,-0.118617,-5.648463;;, + 177;3; 0.000000,-0.118617,-5.648463;;, + 178;3; 0.000000,-0.118617,-5.648463;;, + 179;3; 0.000000,-0.118617,-5.648463;;, + 180;3; 0.000000,-0.118617,-5.648463;;, + 181;3; 0.000000,-0.118617,-5.648463;;, + 182;3; 0.000000,-0.118617,-5.648463;;, + 183;3; 0.000000,-0.118617,-5.648463;;, + 184;3; 0.000000,-0.118617,-5.648463;;, + 185;3; 0.000000,-0.118617,-5.648463;;, + 186;3; 0.000000,-0.118617,-5.648463;;, + 187;3; 0.000000,-0.118617,-5.648463;;, + 188;3; 0.000000,-0.118617,-5.648463;;, + 189;3; 0.000000,-0.118617,-5.648463;;; + } + } + Animation { + {Creeper_Rig_Body} + AnimationKey { // Rotation + 0; + 190; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-0.999998, 0.000000, 0.000000,-0.000396;;, + 26;4;-0.999993, 0.000000, 0.000000,-0.001567;;, + 27;4;-0.999985, 0.000000, 0.000000,-0.003351;;, + 28;4;-0.999977, 0.000000, 0.000000,-0.005375;;, + 29;4;-0.999969, 0.000000, 0.000000,-0.007160;;, + 30;4;-0.999964, 0.000000, 0.000000,-0.008331;;, + 31;4;-0.999962, 0.000000, 0.000000,-0.008726;;, + 32;4;-0.999964, 0.000000, 0.000000,-0.008386;;, + 33;4;-0.999971, 0.000000, 0.000000,-0.007330;;, + 34;4;-0.999981, 0.000000, 0.000000,-0.005641;;, + 35;4;-0.999991, 0.000000, 0.000000,-0.003620;;, + 36;4;-0.999998, 0.000000, 0.000000,-0.001653;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-0.999998, 0.000000,-0.000000, 0.001653;;, + 39;4;-0.999991, 0.000000,-0.000000, 0.003620;;, + 40;4;-0.999981, 0.000000,-0.000000, 0.005641;;, + 41;4;-0.999971, 0.000000,-0.000000, 0.007330;;, + 42;4;-0.999964, 0.000000,-0.000000, 0.008386;;, + 43;4;-0.999962, 0.000000,-0.000000, 0.008726;;, + 44;4;-0.999964, 0.000000,-0.000000, 0.008187;;, + 45;4;-0.999971, 0.000000,-0.000000, 0.006619;;, + 46;4;-0.999981, 0.000000,-0.000000, 0.004363;;, + 47;4;-0.999991, 0.000000,-0.000000, 0.002108;;, + 48;4;-0.999998, 0.000000,-0.000000, 0.000539;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 110;4;-0.998297, 0.000000, 0.045261, 0.000000;;, + 111;4;-0.993259, 0.000000, 0.098502, 0.000000;;, + 112;4;-0.985584, 0.000000, 0.152553, 0.000000;;, + 113;4;-0.976878, 0.000000, 0.201050, 0.000000;;, + 114;4;-0.969202, 0.000000, 0.239039, 0.000000;;, + 115;4;-0.964165, 0.000000, 0.263145, 0.000000;;, + 116;4;-0.962462, 0.000000, 0.271417, 0.000000;;, + 117;4;-0.964165, 0.000000, 0.263175, 0.000000;;, + 118;4;-0.969202, 0.000000, 0.239645, 0.000000;;, + 119;4;-0.976878, 0.000000, 0.203012, 0.000000;;, + 120;4;-0.985584, 0.000000, 0.156133, 0.000000;;, + 121;4;-0.993259, 0.000000, 0.102826, 0.000000;;, + 122;4;-0.998297, 0.000000, 0.048318, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-0.991873,-0.000000,-0.000000, 0.019487;;, + 150;4;-0.967493,-0.000000,-0.000000, 0.077893;;, + 151;4;-0.928354,-0.000000,-0.000000, 0.171588;;, + 152;4;-0.878568,-0.000000,-0.000000, 0.290735;;, + 153;4;-0.824849,-0.000000,-0.000000, 0.419331;;, + 154;4;-0.775049,-0.000000,-0.000000, 0.538664;;, + 155;4;-0.735890,-0.000000,-0.000000, 0.632631;;, + 156;4;-0.711494,-0.000000,-0.000000, 0.691261;;, + 157;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 158;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 159;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 160;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 161;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 162;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 163;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 164;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 165;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 166;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 167;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 168;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 169;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 170;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 171;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 172;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 173;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 174;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 175;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 176;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 177;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 178;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 179;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 180;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 181;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 182;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 183;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 184;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 185;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 186;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 187;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 188;4;-0.703360,-0.000000,-0.000000, 0.710833;;, + 189;4;-0.703360,-0.000000,-0.000000, 0.710833;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3; 0.000000, 3.684099,-0.118617;;, + 1;3; 0.000000, 3.684099,-0.118617;;, + 2;3; 0.000000, 3.684099,-0.118617;;, + 3;3; 0.000000, 3.684099,-0.118617;;, + 4;3; 0.000000, 3.684099,-0.118617;;, + 5;3; 0.000000, 3.684099,-0.118617;;, + 6;3; 0.000000, 3.684099,-0.118617;;, + 7;3; 0.000000, 3.684099,-0.118617;;, + 8;3; 0.000000, 3.684099,-0.118617;;, + 9;3; 0.000000, 3.684099,-0.118617;;, + 10;3; 0.000000, 3.684099,-0.118617;;, + 11;3; 0.000000, 3.684099,-0.118617;;, + 12;3; 0.000000, 3.684099,-0.118617;;, + 13;3; 0.000000, 3.684099,-0.118617;;, + 14;3; 0.000000, 3.684099,-0.118617;;, + 15;3; 0.000000, 3.684099,-0.118617;;, + 16;3; 0.000000, 3.684099,-0.118617;;, + 17;3; 0.000000, 3.684099,-0.118617;;, + 18;3; 0.000000, 3.684099,-0.118617;;, + 19;3; 0.000000, 3.684099,-0.118617;;, + 20;3; 0.000000, 3.684099,-0.118617;;, + 21;3; 0.000000, 3.684099,-0.118617;;, + 22;3; 0.000000, 3.684099,-0.118617;;, + 23;3; 0.000000, 3.684099,-0.118617;;, + 24;3; 0.000000, 3.684099,-0.118617;;, + 25;3; 0.000000, 3.684099,-0.118617;;, + 26;3; 0.000000, 3.684099,-0.118617;;, + 27;3; 0.000000, 3.684099,-0.118617;;, + 28;3; 0.000000, 3.684099,-0.118617;;, + 29;3; 0.000000, 3.684099,-0.118617;;, + 30;3; 0.000000, 3.684099,-0.118617;;, + 31;3; 0.000000, 3.684099,-0.118617;;, + 32;3; 0.000000, 3.684099,-0.118617;;, + 33;3; 0.000000, 3.684099,-0.118617;;, + 34;3; 0.000000, 3.684099,-0.118617;;, + 35;3; 0.000000, 3.684099,-0.118617;;, + 36;3; 0.000000, 3.684099,-0.118617;;, + 37;3; 0.000000, 3.684099,-0.118617;;, + 38;3; 0.000000, 3.684099,-0.118617;;, + 39;3; 0.000000, 3.684099,-0.118617;;, + 40;3; 0.000000, 3.684099,-0.118617;;, + 41;3; 0.000000, 3.684099,-0.118617;;, + 42;3; 0.000000, 3.684099,-0.118617;;, + 43;3; 0.000000, 3.684099,-0.118617;;, + 44;3; 0.000000, 3.684099,-0.118617;;, + 45;3; 0.000000, 3.684099,-0.118617;;, + 46;3; 0.000000, 3.684099,-0.118617;;, + 47;3; 0.000000, 3.684099,-0.118617;;, + 48;3; 0.000000, 3.684099,-0.118617;;, + 49;3; 0.000000, 3.684099,-0.118617;;, + 50;3; 0.000000, 3.684099,-0.118617;;, + 51;3; 0.000000, 3.684099,-0.118617;;, + 52;3; 0.000000, 3.684099,-0.118617;;, + 53;3; 0.000000, 3.684099,-0.118617;;, + 54;3; 0.000000, 3.684099,-0.118617;;, + 55;3; 0.000000, 3.684099,-0.118617;;, + 56;3; 0.000000, 3.684099,-0.118617;;, + 57;3; 0.000000, 3.684099,-0.118617;;, + 58;3; 0.000000, 3.684099,-0.118617;;, + 59;3; 0.000000, 3.684099,-0.118617;;, + 60;3; 0.000000, 3.684099,-0.118617;;, + 61;3; 0.000000, 3.684099,-0.118617;;, + 62;3; 0.000000, 3.684099,-0.118617;;, + 63;3; 0.000000, 3.684099,-0.118617;;, + 64;3; 0.000000, 3.684099,-0.118617;;, + 65;3; 0.000000, 3.684099,-0.118617;;, + 66;3; 0.000000, 3.684099,-0.118617;;, + 67;3; 0.000000, 3.684099,-0.118617;;, + 68;3; 0.000000, 3.684099,-0.118617;;, + 69;3; 0.000000, 3.684099,-0.118617;;, + 70;3; 0.000000, 3.684099,-0.118617;;, + 71;3; 0.000000, 3.684099,-0.118617;;, + 72;3; 0.000000, 3.684099,-0.118617;;, + 73;3; 0.000000, 3.684099,-0.118617;;, + 74;3; 0.000000, 3.684099,-0.118617;;, + 75;3; 0.000000, 3.684099,-0.118617;;, + 76;3; 0.000000, 3.684099,-0.118617;;, + 77;3; 0.000000, 3.684099,-0.118617;;, + 78;3; 0.000000, 3.684099,-0.118617;;, + 79;3; 0.000000, 3.684099,-0.118617;;, + 80;3; 0.000000, 3.684099,-0.118617;;, + 81;3; 0.000000, 3.684099,-0.118617;;, + 82;3; 0.000000, 3.684099,-0.118617;;, + 83;3; 0.000000, 3.684099,-0.118617;;, + 84;3; 0.000000, 3.684099,-0.118617;;, + 85;3; 0.000000, 3.684099,-0.118617;;, + 86;3; 0.000000, 3.684099,-0.118617;;, + 87;3; 0.000000, 3.684099,-0.118617;;, + 88;3; 0.000000, 3.684099,-0.118617;;, + 89;3; 0.000000, 3.684099,-0.118617;;, + 90;3; 0.000000, 3.684099,-0.118617;;, + 91;3; 0.000000, 3.684099,-0.118617;;, + 92;3; 0.000000, 3.684099,-0.118617;;, + 93;3; 0.000000, 3.684099,-0.118617;;, + 94;3; 0.000000, 3.684099,-0.118617;;, + 95;3; 0.000000, 3.684099,-0.118617;;, + 96;3; 0.000000, 3.684099,-0.118617;;, + 97;3; 0.000000, 3.684099,-0.118617;;, + 98;3; 0.000000, 3.684099,-0.118617;;, + 99;3; 0.000000, 3.684099,-0.118617;;, + 100;3; 0.000000, 3.684099,-0.118617;;, + 101;3; 0.000000, 3.684099,-0.118617;;, + 102;3; 0.000000, 3.684099,-0.118617;;, + 103;3; 0.000000, 3.684099,-0.118617;;, + 104;3; 0.000000, 3.684099,-0.118617;;, + 105;3; 0.000000, 3.684099,-0.118617;;, + 106;3; 0.000000, 3.684099,-0.118617;;, + 107;3; 0.000000, 3.684099,-0.118617;;, + 108;3; 0.000000, 3.684099,-0.118617;;, + 109;3; 0.000000, 3.684099,-0.118617;;, + 110;3; 0.000000, 4.790379,-0.118617;;, + 111;3; 0.000000, 5.906791,-0.118617;;, + 112;3; 0.000000, 6.925556,-0.118616;;, + 113;3; 0.000000, 7.811954,-0.118616;;, + 114;3; 0.000000, 8.529434,-0.118616;;, + 115;3; 0.000000, 9.026605,-0.118616;;, + 116;3; 0.000000, 9.220355,-0.118616;;, + 117;3; 0.000000, 9.027832,-0.118616;;, + 118;3; 0.000000, 8.552979,-0.118616;;, + 119;3; 0.000000, 7.883696,-0.118616;;, + 120;3; 0.000000, 7.063944,-0.118616;;, + 121;3; 0.000000, 6.114969,-0.118617;;, + 122;3; 0.000000, 5.037030,-0.118617;;, + 123;3; 0.000000, 3.684099,-0.118617;;, + 124;3; 0.000000, 3.684099,-0.118617;;, + 125;3; 0.000000, 3.684099,-0.118617;;, + 126;3; 0.000000, 3.684099,-0.118617;;, + 127;3; 0.000000, 3.684099,-0.118617;;, + 128;3; 0.000000, 3.684099,-0.118617;;, + 129;3; 0.000000, 3.684099,-0.118617;;, + 130;3; 0.000000, 3.684099,-0.118617;;, + 131;3; 0.000000, 3.684099,-0.118617;;, + 132;3; 0.000000, 3.684099,-0.118617;;, + 133;3; 0.000000, 3.684099,-0.118617;;, + 134;3; 0.000000, 3.684099,-0.118617;;, + 135;3; 0.000000, 3.684099,-0.118617;;, + 136;3; 0.000000, 3.684099,-0.118617;;, + 137;3; 0.000000, 3.684099,-0.118617;;, + 138;3; 0.000000, 3.684099,-0.118617;;, + 139;3; 0.000000, 3.684099,-0.118617;;, + 140;3; 0.000000, 4.477591,-0.118617;;, + 141;3; 0.000000, 5.256225,-0.118617;;, + 142;3; 0.000000, 5.983960,-0.118617;;, + 143;3; 0.000000, 6.641104,-0.118616;;, + 144;3; 0.000000, 7.212831,-0.118616;;, + 145;3; 0.000000, 7.685479,-0.118616;;, + 146;3; 0.000000, 8.044791,-0.118616;;, + 147;3; 0.000000, 8.274718,-0.118616;;, + 148;3; 0.000000, 8.356254,-0.118616;;, + 149;3; 0.054282, 8.262996,-0.118616;;, + 150;3; 0.215879, 8.003809,-0.118616;;, + 151;3; 0.473593, 7.603175,-0.118616;;, + 152;3; 0.800463, 7.079288,-0.118616;;, + 153;3; 1.154079, 6.445920,-0.118616;;, + 154;3; 1.484665, 5.713566,-0.118616;;, + 155;3; 1.747847, 4.890178,-0.118616;;, + 156;3; 1.914063, 3.981753,-0.118616;;, + 157;3; 1.970146, 2.994066,-0.118616;;, + 158;3; 1.970146, 2.994066,-0.118616;;, + 159;3; 1.970146, 2.994066,-0.118616;;, + 160;3; 1.970146, 2.994066,-0.118616;;, + 161;3; 1.970146, 2.994066,-0.118616;;, + 162;3; 1.970146, 2.994066,-0.118616;;, + 163;3; 1.970146, 2.994066,-0.118616;;, + 164;3; 1.970146, 2.994066,-0.118616;;, + 165;3; 1.970146, 2.994066,-0.118616;;, + 166;3; 1.970146, 2.994066,-0.118616;;, + 167;3; 1.970146, 2.994066,-0.118616;;, + 168;3; 1.970146, 2.994066,-0.118616;;, + 169;3; 1.970146, 2.994066,-0.118616;;, + 170;3; 1.970146, 2.994066,-0.118616;;, + 171;3; 1.970146, 2.994066,-0.118616;;, + 172;3; 1.970146, 2.994066,-0.118616;;, + 173;3; 1.970146, 2.994066,-0.118616;;, + 174;3; 1.970146, 2.994066,-0.118616;;, + 175;3; 1.970146, 2.994066,-0.118616;;, + 176;3; 1.970146, 2.994066,-0.118616;;, + 177;3; 1.970146, 2.994066,-0.118616;;, + 178;3; 1.970146, 2.994066,-0.118616;;, + 179;3; 1.970146, 2.994066,-0.118616;;, + 180;3; 1.970146, 2.994066,-0.118616;;, + 181;3; 1.970146, 2.994066,-0.118616;;, + 182;3; 1.970146, 2.994066,-0.118616;;, + 183;3; 1.970146, 2.994066,-0.118616;;, + 184;3; 1.970146, 2.994066,-0.118616;;, + 185;3; 1.970146, 2.994066,-0.118616;;, + 186;3; 1.970146, 2.994066,-0.118616;;, + 187;3; 1.970146, 2.994066,-0.118616;;, + 188;3; 1.970146, 2.994066,-0.118616;;, + 189;3; 1.970146, 2.994066,-0.118616;;; + } + } + Animation { + {Creeper_Rig_Head} + AnimationKey { // Rotation + 0; + 190; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-0.999986,-0.001551,-0.000000, 0.000000;;, + 2;4;-0.999948,-0.005921,-0.000000, 0.000000;;, + 3;4;-0.999899,-0.011532,-0.000000, 0.000000;;, + 4;4;-0.999861,-0.015901,-0.000000, 0.000000;;, + 5;4;-0.999848,-0.017452,-0.000000, 0.000000;;, + 6;4;-0.999857,-0.016743,-0.000000, 0.000000;;, + 7;4;-0.999884,-0.014558,-0.000000, 0.000000;;, + 8;4;-0.999924,-0.011099,-0.000000, 0.000000;;, + 9;4;-0.999963,-0.007024,-0.000000, 0.000000;;, + 10;4;-0.999991,-0.003147,-0.000000, 0.000000;;, + 11;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 12;4;-0.999993, 0.002954, 0.000000,-0.000000;;, + 13;4;-0.999973, 0.006321, 0.000000,-0.000000;;, + 14;4;-0.999942, 0.009824, 0.000000,-0.000000;;, + 15;4;-0.999906, 0.013030, 0.000000,-0.000000;;, + 16;4;-0.999875, 0.015498, 0.000000,-0.000000;;, + 17;4;-0.999855, 0.016980, 0.000000,-0.000000;;, + 18;4;-0.999848, 0.017452, 0.000000,-0.000000;;, + 19;4;-0.999857, 0.016374, 0.000000,-0.000000;;, + 20;4;-0.999884, 0.013237, 0.000000,-0.000000;;, + 21;4;-0.999924, 0.008726, 0.000000,-0.000000;;, + 22;4;-0.999963, 0.004216, 0.000000,-0.000000;;, + 23;4;-0.999991, 0.001078, 0.000000,-0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-0.999284, 0.000000, 0.003682, 0.000000;;, + 51;4;-0.997118, 0.000000, 0.014814, 0.000000;;, + 52;4;-0.993514, 0.000000, 0.033335, 0.000000;;, + 53;4;-0.988547, 0.000000, 0.058861, 0.000000;;, + 54;4;-0.982374, 0.000000, 0.090585, 0.000000;;, + 55;4;-0.975245, 0.000000, 0.127224, 0.000000;;, + 56;4;-0.967497, 0.000000, 0.167040, 0.000000;;, + 57;4;-0.959535, 0.000000, 0.207955, 0.000000;;, + 58;4;-0.951787, 0.000000, 0.247769, 0.000000;;, + 59;4;-0.944658, 0.000000, 0.284407, 0.000000;;, + 60;4;-0.938485, 0.000000, 0.316128, 0.000000;;, + 61;4;-0.933518, 0.000000, 0.341650, 0.000000;;, + 62;4;-0.929915, 0.000000, 0.360170, 0.000000;;, + 63;4;-0.927749, 0.000000, 0.371299, 0.000000;;, + 64;4;-0.927032, 0.000000, 0.374981, 0.000000;;, + 65;4;-0.927749, 0.000000, 0.372707, 0.000000;;, + 66;4;-0.929915, 0.000000, 0.365700, 0.000000;;, + 67;4;-0.933518, 0.000000, 0.353753, 0.000000;;, + 68;4;-0.938485, 0.000000, 0.336797, 0.000000;;, + 69;4;-0.944658, 0.000000, 0.314972, 0.000000;;, + 70;4;-0.951788, 0.000000, 0.288674, 0.000000;;, + 71;4;-0.959535, 0.000000, 0.258581, 0.000000;;, + 72;4;-0.967497, 0.000000, 0.225626, 0.000000;;, + 73;4;-0.975245, 0.000000, 0.190908, 0.000000;;, + 74;4;-0.982374, 0.000000, 0.155571, 0.000000;;, + 75;4;-0.988547, 0.000000, 0.120675, 0.000000;;, + 76;4;-0.993514, 0.000000, 0.087106, 0.000000;;, + 77;4;-0.997118, 0.000000, 0.055532, 0.000000;;, + 78;4;-0.999284, 0.000000, 0.026408, 0.000000;;, + 79;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 80;4;-0.999284,-0.000000,-0.026408,-0.000000;;, + 81;4;-0.997118,-0.000000,-0.055532,-0.000000;;, + 82;4;-0.993514,-0.000000,-0.087106,-0.000000;;, + 83;4;-0.988547,-0.000000,-0.120675,-0.000000;;, + 84;4;-0.982374,-0.000000,-0.155571,-0.000000;;, + 85;4;-0.975245,-0.000000,-0.190908,-0.000000;;, + 86;4;-0.967497,-0.000000,-0.225626,-0.000000;;, + 87;4;-0.959535,-0.000000,-0.258581,-0.000000;;, + 88;4;-0.951787,-0.000000,-0.288674,-0.000000;;, + 89;4;-0.944658,-0.000000,-0.314972,-0.000000;;, + 90;4;-0.938485,-0.000000,-0.336797,-0.000000;;, + 91;4;-0.933518,-0.000000,-0.353753,-0.000000;;, + 92;4;-0.929915,-0.000000,-0.365700,-0.000000;;, + 93;4;-0.927749,-0.000000,-0.372707,-0.000000;;, + 94;4;-0.927032,-0.000000,-0.374981,-0.000000;;, + 95;4;-0.927749,-0.000000,-0.371299,-0.000000;;, + 96;4;-0.929915,-0.000000,-0.360169,-0.000000;;, + 97;4;-0.933518,-0.000000,-0.341650,-0.000000;;, + 98;4;-0.938485,-0.000000,-0.316126,-0.000000;;, + 99;4;-0.944658,-0.000000,-0.284404,-0.000000;;, + 100;4;-0.951788,-0.000000,-0.247766,-0.000000;;, + 101;4;-0.959535,-0.000000,-0.207951,-0.000000;;, + 102;4;-0.967497,-0.000000,-0.167035,-0.000000;;, + 103;4;-0.975245,-0.000000,-0.127219,-0.000000;;, + 104;4;-0.982374,-0.000000,-0.090580,-0.000000;;, + 105;4;-0.988547,-0.000000,-0.058857,-0.000000;;, + 106;4;-0.993514,-0.000000,-0.033333,-0.000000;;, + 107;4;-0.997118,-0.000000,-0.014812,-0.000000;;, + 108;4;-0.999284,-0.000000,-0.003682,-0.000000;;, + 109;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 110;4;-0.998314, 0.000000,-0.012252,-0.000000;;, + 111;4;-0.993327, 0.000000,-0.048499,-0.000000;;, + 112;4;-0.985728, 0.000000,-0.103725,-0.000000;;, + 113;4;-0.977109, 0.000000,-0.166364,-0.000000;;, + 114;4;-0.969510, 0.000000,-0.221588,-0.000000;;, + 115;4;-0.964522, 0.000000,-0.257834,-0.000000;;, + 116;4;-0.962836, 0.000000,-0.270086,-0.000000;;, + 117;4;-0.964522, 0.000000,-0.257834,-0.000000;;, + 118;4;-0.969510, 0.000000,-0.221592,-0.000000;;, + 119;4;-0.977109, 0.000000,-0.166372,-0.000000;;, + 120;4;-0.985728, 0.000000,-0.103736,-0.000000;;, + 121;4;-0.993327, 0.000000,-0.048508,-0.000000;;, + 122;4;-0.998314, 0.000000,-0.012255,-0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 187;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 188;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 189;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3; 0.000000,11.125031,-0.000000;;, + 1;3; 0.000000,11.125031,-0.000000;;, + 2;3; 0.000000,11.125031,-0.000000;;, + 3;3; 0.000000,11.125031,-0.000000;;, + 4;3; 0.000000,11.125031,-0.000000;;, + 5;3; 0.000000,11.125031,-0.000000;;, + 6;3; 0.000000,11.125031,-0.000000;;, + 7;3; 0.000000,11.125031,-0.000000;;, + 8;3; 0.000000,11.125031,-0.000000;;, + 9;3; 0.000000,11.125031,-0.000000;;, + 10;3; 0.000000,11.125031,-0.000000;;, + 11;3; 0.000000,11.125031,-0.000000;;, + 12;3; 0.000000,11.125031,-0.000000;;, + 13;3; 0.000000,11.125031,-0.000000;;, + 14;3; 0.000000,11.125031,-0.000000;;, + 15;3; 0.000000,11.125031,-0.000000;;, + 16;3; 0.000000,11.125031,-0.000000;;, + 17;3; 0.000000,11.125031,-0.000000;;, + 18;3; 0.000000,11.125031,-0.000000;;, + 19;3; 0.000000,11.125031,-0.000000;;, + 20;3; 0.000000,11.125031,-0.000000;;, + 21;3; 0.000000,11.125031,-0.000000;;, + 22;3; 0.000000,11.125031,-0.000000;;, + 23;3; 0.000000,11.125031,-0.000000;;, + 24;3; 0.000000,11.125031,-0.000000;;, + 25;3;-0.000000,11.125031,-0.000000;;, + 26;3; 0.000000,11.125031,-0.000000;;, + 27;3;-0.000000,11.125031,-0.000000;;, + 28;3; 0.000000,11.125031,-0.000000;;, + 29;3;-0.000000,11.125031,-0.000000;;, + 30;3;-0.000000,11.125031,-0.000000;;, + 31;3; 0.000000,11.125030,-0.000000;;, + 32;3;-0.000000,11.125031,-0.000000;;, + 33;3; 0.000000,11.125031,-0.000000;;, + 34;3; 0.000000,11.125030,-0.000000;;, + 35;3;-0.000000,11.125031,-0.000000;;, + 36;3;-0.000000,11.125031,-0.000000;;, + 37;3; 0.000000,11.125031,-0.000000;;, + 38;3; 0.000000,11.125031,-0.000000;;, + 39;3; 0.000000,11.125031,-0.000000;;, + 40;3; 0.000000,11.125030,-0.000000;;, + 41;3; 0.000000,11.125031,-0.000000;;, + 42;3; 0.000000,11.125031,-0.000000;;, + 43;3;-0.000000,11.125030,-0.000000;;, + 44;3; 0.000000,11.125031,-0.000000;;, + 45;3; 0.000000,11.125031,-0.000000;;, + 46;3; 0.000000,11.125031,-0.000000;;, + 47;3; 0.000000,11.125031,-0.000000;;, + 48;3;-0.000000,11.125030,-0.000000;;, + 49;3; 0.000000,11.125031,-0.000000;;, + 50;3; 0.000000,11.125031,-0.000000;;, + 51;3; 0.000000,11.125031,-0.000000;;, + 52;3; 0.000000,11.125031,-0.000000;;, + 53;3; 0.000000,11.125031,-0.000000;;, + 54;3; 0.000000,11.125031,-0.000000;;, + 55;3; 0.000000,11.125031,-0.000000;;, + 56;3; 0.000000,11.125031,-0.000000;;, + 57;3; 0.000000,11.125031,-0.000000;;, + 58;3; 0.000000,11.125031,-0.000000;;, + 59;3; 0.000000,11.125031,-0.000000;;, + 60;3; 0.000000,11.125031,-0.000000;;, + 61;3; 0.000000,11.125031,-0.000000;;, + 62;3; 0.000000,11.125031,-0.000000;;, + 63;3; 0.000000,11.125031,-0.000000;;, + 64;3; 0.000000,11.125031,-0.000000;;, + 65;3; 0.000000,11.125031,-0.000000;;, + 66;3; 0.000000,11.125031,-0.000000;;, + 67;3; 0.000000,11.125031,-0.000000;;, + 68;3; 0.000000,11.125031,-0.000000;;, + 69;3; 0.000000,11.125031,-0.000000;;, + 70;3; 0.000000,11.125031,-0.000000;;, + 71;3; 0.000000,11.125031,-0.000000;;, + 72;3; 0.000000,11.125031,-0.000000;;, + 73;3; 0.000000,11.125031,-0.000000;;, + 74;3; 0.000000,11.125031,-0.000000;;, + 75;3; 0.000000,11.125031,-0.000000;;, + 76;3; 0.000000,11.125031,-0.000000;;, + 77;3; 0.000000,11.125031,-0.000000;;, + 78;3; 0.000000,11.125031,-0.000000;;, + 79;3; 0.000000,11.125031,-0.000000;;, + 80;3; 0.000000,11.125031,-0.000000;;, + 81;3; 0.000000,11.125031,-0.000000;;, + 82;3; 0.000000,11.125031,-0.000000;;, + 83;3; 0.000000,11.125031,-0.000000;;, + 84;3; 0.000000,11.125031,-0.000000;;, + 85;3; 0.000000,11.125031,-0.000000;;, + 86;3; 0.000000,11.125031,-0.000000;;, + 87;3; 0.000000,11.125031,-0.000000;;, + 88;3; 0.000000,11.125031,-0.000000;;, + 89;3; 0.000000,11.125031,-0.000000;;, + 90;3; 0.000000,11.125031,-0.000000;;, + 91;3; 0.000000,11.125031,-0.000000;;, + 92;3; 0.000000,11.125031,-0.000000;;, + 93;3; 0.000000,11.125031,-0.000000;;, + 94;3; 0.000000,11.125031,-0.000000;;, + 95;3; 0.000000,11.125031,-0.000000;;, + 96;3; 0.000000,11.125031,-0.000000;;, + 97;3; 0.000000,11.125031,-0.000000;;, + 98;3; 0.000000,11.125031,-0.000000;;, + 99;3; 0.000000,11.125031,-0.000000;;, + 100;3; 0.000000,11.125031,-0.000000;;, + 101;3; 0.000000,11.125031,-0.000000;;, + 102;3; 0.000000,11.125031,-0.000000;;, + 103;3; 0.000000,11.125031,-0.000000;;, + 104;3; 0.000000,11.125031,-0.000000;;, + 105;3; 0.000000,11.125031,-0.000000;;, + 106;3; 0.000000,11.125031,-0.000000;;, + 107;3; 0.000000,11.125031,-0.000000;;, + 108;3; 0.000000,11.125031,-0.000000;;, + 109;3; 0.000000,11.125031,-0.000000;;, + 110;3;-0.000000,11.125031,-0.000000;;, + 111;3; 0.000000,11.125031,-0.000000;;, + 112;3; 0.000000,11.125031,-0.000000;;, + 113;3; 0.000000,11.125031,-0.000000;;, + 114;3; 0.000000,11.125031,-0.000000;;, + 115;3;-0.000000,11.125031,-0.000000;;, + 116;3; 0.000000,11.125031,-0.000000;;, + 117;3; 0.000000,11.125031,-0.000000;;, + 118;3; 0.000000,11.125031,-0.000000;;, + 119;3; 0.000000,11.125031,-0.000000;;, + 120;3; 0.000000,11.125031,-0.000000;;, + 121;3;-0.000000,11.125031,-0.000000;;, + 122;3;-0.000000,11.125031,-0.000000;;, + 123;3; 0.000000,11.125031,-0.000000;;, + 124;3; 0.000000,11.125031,-0.000000;;, + 125;3; 0.000000,11.125031,-0.000000;;, + 126;3; 0.000000,11.125031,-0.000000;;, + 127;3; 0.000000,11.125031,-0.000000;;, + 128;3; 0.000000,11.125031,-0.000000;;, + 129;3; 0.000000,11.125031,-0.000000;;, + 130;3; 0.000000,11.125031,-0.000000;;, + 131;3; 0.000000,11.125031,-0.000000;;, + 132;3; 0.000000,11.125031,-0.000000;;, + 133;3; 0.000000,11.125031,-0.000000;;, + 134;3; 0.000000,11.125031,-0.000000;;, + 135;3; 0.000000,11.125031,-0.000000;;, + 136;3; 0.000000,11.125031,-0.000000;;, + 137;3; 0.000000,11.125031,-0.000000;;, + 138;3; 0.000000,11.125031,-0.000000;;, + 139;3; 0.000000,11.125031,-0.000000;;, + 140;3; 0.000000,11.125031,-0.000000;;, + 141;3; 0.000000,11.125031,-0.000000;;, + 142;3; 0.000000,11.125031,-0.000000;;, + 143;3; 0.000000,11.125031,-0.000000;;, + 144;3;-0.000000,11.125031,-0.000000;;, + 145;3; 0.000000,11.125031,-0.000000;;, + 146;3; 0.000000,11.125031,-0.000000;;, + 147;3; 0.000000,11.125031,-0.000000;;, + 148;3; 0.000000,11.125031,-0.000000;;, + 149;3; 0.000000,11.125031,-0.000000;;, + 150;3;-0.000000,11.125031,-0.000000;;, + 151;3;-0.000000,11.125031,-0.000000;;, + 152;3;-0.000000,11.125031,-0.000000;;, + 153;3; 0.000000,11.125031,-0.000000;;, + 154;3; 0.000000,11.125031,-0.000000;;, + 155;3;-0.000000,11.125031,-0.000000;;, + 156;3; 0.000000,11.125031,-0.000000;;, + 157;3; 0.000000,11.125030,-0.000000;;, + 158;3; 0.000000,11.125030,-0.000000;;, + 159;3; 0.000000,11.125030,-0.000000;;, + 160;3; 0.000000,11.125030,-0.000000;;, + 161;3; 0.000000,11.125030,-0.000000;;, + 162;3; 0.000000,11.125030,-0.000000;;, + 163;3; 0.000000,11.125030,-0.000000;;, + 164;3; 0.000000,11.125030,-0.000000;;, + 165;3; 0.000000,11.125030,-0.000000;;, + 166;3; 0.000000,11.125030,-0.000000;;, + 167;3; 0.000000,11.125030,-0.000000;;, + 168;3; 0.000000,11.125030,-0.000000;;, + 169;3; 0.000000,11.125030,-0.000000;;, + 170;3; 0.000000,11.125030,-0.000000;;, + 171;3; 0.000000,11.125030,-0.000000;;, + 172;3; 0.000000,11.125030,-0.000000;;, + 173;3; 0.000000,11.125030,-0.000000;;, + 174;3; 0.000000,11.125030,-0.000000;;, + 175;3; 0.000000,11.125030,-0.000000;;, + 176;3; 0.000000,11.125030,-0.000000;;, + 177;3; 0.000000,11.125030,-0.000000;;, + 178;3; 0.000000,11.125030,-0.000000;;, + 179;3; 0.000000,11.125030,-0.000000;;, + 180;3; 0.000000,11.125030,-0.000000;;, + 181;3; 0.000000,11.125030,-0.000000;;, + 182;3; 0.000000,11.125030,-0.000000;;, + 183;3; 0.000000,11.125030,-0.000000;;, + 184;3; 0.000000,11.125030,-0.000000;;, + 185;3; 0.000000,11.125030,-0.000000;;, + 186;3; 0.000000,11.125030,-0.000000;;, + 187;3; 0.000000,11.125030,-0.000000;;, + 188;3; 0.000000,11.125030,-0.000000;;, + 189;3; 0.000000,11.125030,-0.000000;;; + } + } + Animation { + {Creeper_Rig_Leg_B_L} + AnimationKey { // Rotation + 0; + 190; + 0;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 1;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 2;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 3;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 4;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 5;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 6;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 7;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 8;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 9;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 10;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 11;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 12;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 13;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 14;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 15;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 16;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 17;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 18;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 19;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 20;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 21;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 22;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 23;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 24;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 25;4;-0.317141, 0.947684,-0.000000,-0.000000;;, + 26;4;-0.338668, 0.938524,-0.000000,-0.000000;;, + 27;4;-0.371465, 0.924568,-0.000000,-0.000000;;, + 28;4;-0.408664, 0.908739,-0.000000,-0.000000;;, + 29;4;-0.441458, 0.894784,-0.000000,-0.000000;;, + 30;4;-0.462983, 0.885625,-0.000000,-0.000000;;, + 31;4;-0.470258, 0.882529,-0.000000,-0.000000;;, + 32;4;-0.464108, 0.885520,-0.000000,-0.000000;;, + 33;4;-0.444974, 0.894629,-0.000000,-0.000000;;, + 34;4;-0.414236, 0.908776,-0.000000,-0.000000;;, + 35;4;-0.377226, 0.924968,-0.000000,-0.000000;;, + 36;4;-0.340851, 0.939695,-0.000000,-0.000000;;, + 37;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 38;4;-0.278296, 0.960082,-0.000000,-0.000000;;, + 39;4;-0.240229, 0.969615,-0.000000,-0.000000;;, + 40;4;-0.200785, 0.978341,-0.000000,-0.000000;;, + 41;4;-0.167614, 0.985022,-0.000000,-0.000000;;, + 42;4;-0.146788, 0.988937,-0.000000,-0.000000;;, + 43;4;-0.140056, 0.990144,-0.000000,-0.000000;;, + 44;4;-0.150545, 0.987712,-0.000000,-0.000000;;, + 45;4;-0.181072, 0.980636,-0.000000,-0.000000;;, + 46;4;-0.224956, 0.970464,-0.000000,-0.000000;;, + 47;4;-0.268843, 0.960290,-0.000000,-0.000000;;, + 48;4;-0.299374, 0.953213,-0.000000,-0.000000;;, + 49;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 50;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 51;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 52;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 53;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 54;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 55;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 56;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 57;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 58;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 59;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 60;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 61;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 62;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 63;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 64;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 65;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 66;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 67;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 68;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 69;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 70;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 71;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 72;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 73;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 74;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 75;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 76;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 77;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 78;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 79;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 80;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 81;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 82;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 83;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 84;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 85;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 86;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 87;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 88;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 89;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 90;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 91;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 92;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 93;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 94;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 95;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 96;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 97;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 98;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 99;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 100;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 101;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 102;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 103;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 104;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 105;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 106;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 107;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 108;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 109;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 110;4;-0.327084, 0.943454,-0.000000,-0.000000;;, + 111;4;-0.387614, 0.917697,-0.000000,-0.000000;;, + 112;4;-0.451368, 0.890567,-0.000000,-0.000000;;, + 113;4;-0.470258, 0.882529,-0.000000,-0.000000;;, + 114;4;-0.448005, 0.892812,-0.000000,-0.000000;;, + 115;4;-0.366429, 0.928847,-0.000000,-0.000000;;, + 116;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 117;4;-0.263171, 0.963802,-0.000000,-0.000000;;, + 118;4;-0.196822, 0.978842,-0.000000,-0.000000;;, + 119;4;-0.151899, 0.987893,-0.000000,-0.000000;;, + 120;4;-0.140056, 0.990144,-0.000000,-0.000000;;, + 121;4;-0.243110, 0.966255,-0.000000,-0.000000;;, + 122;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 123;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 124;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 125;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 126;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 127;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 128;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 129;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 130;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 131;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 132;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 133;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 134;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 135;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 136;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 137;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 138;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 139;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 140;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 141;4;-0.334971, 0.940098,-0.000000,-0.000000;;, + 142;4;-0.405519, 0.910078,-0.000000,-0.000000;;, + 143;4;-0.456557, 0.888359,-0.000000,-0.000000;;, + 144;4;-0.470258, 0.882529,-0.000000,-0.000000;;, + 145;4;-0.457775, 0.888338,-0.000000,-0.000000;;, + 146;4;-0.407391, 0.911164,-0.000000,-0.000000;;, + 147;4;-0.345424, 0.937547,-0.000000,-0.000000;;, + 148;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 149;4;-0.271229, 0.961351,-0.000000,-0.000000;;, + 150;4;-0.213011, 0.974777,-0.000000,-0.000000;;, + 151;4;-0.168008, 0.984398,-0.000000,-0.000000;;, + 152;4;-0.145987, 0.988942,-0.000000,-0.000000;;, + 153;4;-0.140056, 0.990144,-0.000000,-0.000000;;, + 154;4;-0.267370, 0.960631,-0.000000,-0.000000;;, + 155;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 156;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 157;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 158;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 159;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 160;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 161;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 162;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 163;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 164;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 165;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 166;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 167;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 168;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 169;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 170;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 171;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 172;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 173;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 174;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 175;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 176;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 177;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 178;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 179;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 180;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 181;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 182;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 183;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 184;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 185;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 186;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 187;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 188;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 189;4;-0.309865, 0.950781,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3;-1.482709,-0.277360, 2.078758;;, + 1;3;-1.482709,-0.277360, 2.078758;;, + 2;3;-1.482709,-0.277360, 2.078758;;, + 3;3;-1.482709,-0.277360, 2.078758;;, + 4;3;-1.482709,-0.277360, 2.078758;;, + 5;3;-1.482709,-0.277360, 2.078758;;, + 6;3;-1.482709,-0.277360, 2.078758;;, + 7;3;-1.482709,-0.277360, 2.078758;;, + 8;3;-1.482709,-0.277360, 2.078758;;, + 9;3;-1.482709,-0.277360, 2.078758;;, + 10;3;-1.482709,-0.277360, 2.078758;;, + 11;3;-1.482709,-0.277360, 2.078758;;, + 12;3;-1.482709,-0.277360, 2.078758;;, + 13;3;-1.482709,-0.277360, 2.078758;;, + 14;3;-1.482709,-0.277360, 2.078758;;, + 15;3;-1.482709,-0.277360, 2.078758;;, + 16;3;-1.482709,-0.277360, 2.078758;;, + 17;3;-1.482709,-0.277360, 2.078758;;, + 18;3;-1.482709,-0.277360, 2.078758;;, + 19;3;-1.482709,-0.277360, 2.078758;;, + 20;3;-1.482709,-0.277360, 2.078758;;, + 21;3;-1.482709,-0.277360, 2.078758;;, + 22;3;-1.482709,-0.277360, 2.078758;;, + 23;3;-1.482709,-0.277360, 2.078758;;, + 24;3;-1.482709,-0.277360, 2.078758;;, + 25;3;-1.482709,-0.277360, 2.078758;;, + 26;3;-1.482709,-0.277360, 2.078758;;, + 27;3;-1.482709,-0.277360, 2.078758;;, + 28;3;-1.482709,-0.277360, 2.078758;;, + 29;3;-1.482709,-0.277360, 2.078758;;, + 30;3;-1.482709,-0.277360, 2.078758;;, + 31;3;-1.482709,-0.277360, 2.078758;;, + 32;3;-1.482709,-0.277360, 2.078758;;, + 33;3;-1.482709,-0.277360, 2.078758;;, + 34;3;-1.482709,-0.277360, 2.078758;;, + 35;3;-1.482709,-0.277360, 2.078758;;, + 36;3;-1.482709,-0.277360, 2.078758;;, + 37;3;-1.482709,-0.277360, 2.078758;;, + 38;3;-1.482709,-0.277360, 2.078758;;, + 39;3;-1.482709,-0.277360, 2.078758;;, + 40;3;-1.482709,-0.277360, 2.078758;;, + 41;3;-1.482709,-0.277360, 2.078758;;, + 42;3;-1.482709,-0.277360, 2.078758;;, + 43;3;-1.482709,-0.277360, 2.078758;;, + 44;3;-1.482709,-0.277360, 2.078758;;, + 45;3;-1.482709,-0.277360, 2.078758;;, + 46;3;-1.482709,-0.277360, 2.078758;;, + 47;3;-1.482709,-0.277360, 2.078758;;, + 48;3;-1.482709,-0.277360, 2.078758;;, + 49;3;-1.482709,-0.277360, 2.078758;;, + 50;3;-1.482709,-0.277360, 2.078758;;, + 51;3;-1.482709,-0.277360, 2.078758;;, + 52;3;-1.482709,-0.277360, 2.078758;;, + 53;3;-1.482709,-0.277360, 2.078758;;, + 54;3;-1.482709,-0.277360, 2.078758;;, + 55;3;-1.482709,-0.277360, 2.078758;;, + 56;3;-1.482709,-0.277360, 2.078758;;, + 57;3;-1.482709,-0.277360, 2.078758;;, + 58;3;-1.482709,-0.277360, 2.078758;;, + 59;3;-1.482709,-0.277360, 2.078758;;, + 60;3;-1.482709,-0.277360, 2.078758;;, + 61;3;-1.482709,-0.277360, 2.078758;;, + 62;3;-1.482709,-0.277360, 2.078758;;, + 63;3;-1.482709,-0.277360, 2.078758;;, + 64;3;-1.482709,-0.277360, 2.078758;;, + 65;3;-1.482709,-0.277360, 2.078758;;, + 66;3;-1.482709,-0.277360, 2.078758;;, + 67;3;-1.482709,-0.277360, 2.078758;;, + 68;3;-1.482709,-0.277360, 2.078758;;, + 69;3;-1.482709,-0.277360, 2.078758;;, + 70;3;-1.482709,-0.277360, 2.078758;;, + 71;3;-1.482709,-0.277360, 2.078758;;, + 72;3;-1.482709,-0.277360, 2.078758;;, + 73;3;-1.482709,-0.277360, 2.078758;;, + 74;3;-1.482709,-0.277360, 2.078758;;, + 75;3;-1.482709,-0.277360, 2.078758;;, + 76;3;-1.482709,-0.277360, 2.078758;;, + 77;3;-1.482709,-0.277360, 2.078758;;, + 78;3;-1.482709,-0.277360, 2.078758;;, + 79;3;-1.482709,-0.277360, 2.078758;;, + 80;3;-1.482709,-0.277360, 2.078758;;, + 81;3;-1.482709,-0.277360, 2.078758;;, + 82;3;-1.482709,-0.277360, 2.078758;;, + 83;3;-1.482709,-0.277360, 2.078758;;, + 84;3;-1.482709,-0.277360, 2.078758;;, + 85;3;-1.482709,-0.277360, 2.078758;;, + 86;3;-1.482709,-0.277360, 2.078758;;, + 87;3;-1.482709,-0.277360, 2.078758;;, + 88;3;-1.482709,-0.277360, 2.078758;;, + 89;3;-1.482709,-0.277360, 2.078758;;, + 90;3;-1.482709,-0.277360, 2.078758;;, + 91;3;-1.482709,-0.277360, 2.078758;;, + 92;3;-1.482709,-0.277360, 2.078758;;, + 93;3;-1.482709,-0.277360, 2.078758;;, + 94;3;-1.482709,-0.277360, 2.078758;;, + 95;3;-1.482709,-0.277360, 2.078758;;, + 96;3;-1.482709,-0.277360, 2.078758;;, + 97;3;-1.482709,-0.277360, 2.078758;;, + 98;3;-1.482709,-0.277360, 2.078758;;, + 99;3;-1.482709,-0.277360, 2.078758;;, + 100;3;-1.482709,-0.277360, 2.078758;;, + 101;3;-1.482709,-0.277360, 2.078758;;, + 102;3;-1.482709,-0.277360, 2.078758;;, + 103;3;-1.482709,-0.277360, 2.078758;;, + 104;3;-1.482709,-0.277360, 2.078758;;, + 105;3;-1.482709,-0.277360, 2.078758;;, + 106;3;-1.482709,-0.277360, 2.078758;;, + 107;3;-1.482709,-0.277360, 2.078758;;, + 108;3;-1.482709,-0.277360, 2.078758;;, + 109;3;-1.482709,-0.277360, 2.078758;;, + 110;3;-1.482709,-0.277360, 2.078759;;, + 111;3;-1.482709,-0.277360, 2.078759;;, + 112;3;-1.482709,-0.277360, 2.078758;;, + 113;3;-1.482709,-0.277360, 2.078759;;, + 114;3;-1.482709,-0.277360, 2.078759;;, + 115;3;-1.482709,-0.277360, 2.078758;;, + 116;3;-1.482709,-0.277360, 2.078758;;, + 117;3;-1.482709,-0.277360, 2.078758;;, + 118;3;-1.482709,-0.277360, 2.078758;;, + 119;3;-1.482709,-0.277360, 2.078758;;, + 120;3;-1.482709,-0.277360, 2.078759;;, + 121;3;-1.482709,-0.277360, 2.078759;;, + 122;3;-1.482709,-0.277360, 2.078758;;, + 123;3;-1.482709,-0.277360, 2.078758;;, + 124;3;-1.482709,-0.277360, 2.078758;;, + 125;3;-1.482709,-0.277360, 2.078758;;, + 126;3;-1.482709,-0.277360, 2.078758;;, + 127;3;-1.482709,-0.277360, 2.078758;;, + 128;3;-1.482709,-0.277360, 2.078758;;, + 129;3;-1.482709,-0.277360, 2.078758;;, + 130;3;-1.482709,-0.277360, 2.078758;;, + 131;3;-1.482709,-0.277360, 2.078758;;, + 132;3;-1.482709,-0.277360, 2.078758;;, + 133;3;-1.482709,-0.277360, 2.078758;;, + 134;3;-1.482709,-0.277360, 2.078758;;, + 135;3;-1.482709,-0.277360, 2.078758;;, + 136;3;-1.482709,-0.277360, 2.078758;;, + 137;3;-1.482709,-0.277360, 2.078758;;, + 138;3;-1.482709,-0.277360, 2.078758;;, + 139;3;-1.482709,-0.277360, 2.078758;;, + 140;3;-1.482709,-0.277360, 2.078758;;, + 141;3;-1.482709,-0.277360, 2.078758;;, + 142;3;-1.482709,-0.277360, 2.078758;;, + 143;3;-1.482709,-0.277360, 2.078758;;, + 144;3;-1.482709,-0.277360, 2.078758;;, + 145;3;-1.482709,-0.277360, 2.078758;;, + 146;3;-1.482709,-0.277360, 2.078758;;, + 147;3;-1.482709,-0.277360, 2.078758;;, + 148;3;-1.482709,-0.277360, 2.078758;;, + 149;3;-1.482709,-0.277360, 2.078758;;, + 150;3;-1.482709,-0.277360, 2.078758;;, + 151;3;-1.482709,-0.277360, 2.078758;;, + 152;3;-1.482709,-0.277360, 2.078758;;, + 153;3;-1.482709,-0.277360, 2.078758;;, + 154;3;-1.482709,-0.277360, 2.078758;;, + 155;3;-1.482709,-0.277360, 2.078758;;, + 156;3;-1.482709,-0.277360, 2.078758;;, + 157;3;-1.482709,-0.277360, 2.078758;;, + 158;3;-1.482709,-0.277360, 2.078758;;, + 159;3;-1.482709,-0.277360, 2.078758;;, + 160;3;-1.482709,-0.277360, 2.078758;;, + 161;3;-1.482709,-0.277360, 2.078758;;, + 162;3;-1.482709,-0.277360, 2.078758;;, + 163;3;-1.482709,-0.277360, 2.078758;;, + 164;3;-1.482709,-0.277360, 2.078758;;, + 165;3;-1.482709,-0.277360, 2.078758;;, + 166;3;-1.482709,-0.277360, 2.078758;;, + 167;3;-1.482709,-0.277360, 2.078758;;, + 168;3;-1.482709,-0.277360, 2.078758;;, + 169;3;-1.482709,-0.277360, 2.078758;;, + 170;3;-1.482709,-0.277360, 2.078758;;, + 171;3;-1.482709,-0.277360, 2.078758;;, + 172;3;-1.482709,-0.277360, 2.078758;;, + 173;3;-1.482709,-0.277360, 2.078758;;, + 174;3;-1.482709,-0.277360, 2.078758;;, + 175;3;-1.482709,-0.277360, 2.078758;;, + 176;3;-1.482709,-0.277360, 2.078758;;, + 177;3;-1.482709,-0.277360, 2.078758;;, + 178;3;-1.482709,-0.277360, 2.078758;;, + 179;3;-1.482709,-0.277360, 2.078758;;, + 180;3;-1.482709,-0.277360, 2.078758;;, + 181;3;-1.482709,-0.277360, 2.078758;;, + 182;3;-1.482709,-0.277360, 2.078758;;, + 183;3;-1.482709,-0.277360, 2.078758;;, + 184;3;-1.482709,-0.277360, 2.078758;;, + 185;3;-1.482709,-0.277360, 2.078758;;, + 186;3;-1.482709,-0.277360, 2.078758;;, + 187;3;-1.482709,-0.277360, 2.078758;;, + 188;3;-1.482709,-0.277360, 2.078758;;, + 189;3;-1.482709,-0.277360, 2.078758;;; + } + } + Animation { + {Creeper_Rig_Leg_F_L} + AnimationKey { // Rotation + 0; + 190; + 0;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 1;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 2;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 3;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 4;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 5;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 6;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 7;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 8;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 9;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 10;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 11;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 12;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 13;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 14;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 15;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 16;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 17;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 18;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 19;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 20;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 21;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 22;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 23;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 24;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 25;4;-0.317141,-0.947684,-0.000000, 0.000000;;, + 26;4;-0.338668,-0.938524,-0.000000, 0.000000;;, + 27;4;-0.371465,-0.924568,-0.000000, 0.000000;;, + 28;4;-0.408664,-0.908739,-0.000000, 0.000000;;, + 29;4;-0.441458,-0.894784,-0.000000, 0.000000;;, + 30;4;-0.462983,-0.885625,-0.000000, 0.000000;;, + 31;4;-0.470258,-0.882529,-0.000000, 0.000000;;, + 32;4;-0.464108,-0.885520,-0.000000, 0.000000;;, + 33;4;-0.444974,-0.894629,-0.000000, 0.000000;;, + 34;4;-0.414236,-0.908776,-0.000000, 0.000000;;, + 35;4;-0.377226,-0.924968,-0.000000, 0.000000;;, + 36;4;-0.340851,-0.939695,-0.000000, 0.000000;;, + 37;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 38;4;-0.278296,-0.960082,-0.000000, 0.000000;;, + 39;4;-0.240229,-0.969615,-0.000000, 0.000000;;, + 40;4;-0.200786,-0.978341,-0.000000, 0.000000;;, + 41;4;-0.167614,-0.985022,-0.000000, 0.000000;;, + 42;4;-0.146788,-0.988937,-0.000000, 0.000000;;, + 43;4;-0.140056,-0.990144,-0.000000, 0.000000;;, + 44;4;-0.150545,-0.987712,-0.000000, 0.000000;;, + 45;4;-0.181072,-0.980636,-0.000000, 0.000000;;, + 46;4;-0.224956,-0.970464,-0.000000, 0.000000;;, + 47;4;-0.268843,-0.960290,-0.000000, 0.000000;;, + 48;4;-0.299374,-0.953213,-0.000000, 0.000000;;, + 49;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 50;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 51;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 52;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 53;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 54;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 55;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 56;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 57;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 58;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 59;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 60;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 61;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 62;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 63;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 64;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 65;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 66;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 67;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 68;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 69;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 70;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 71;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 72;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 73;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 74;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 75;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 76;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 77;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 78;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 79;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 80;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 81;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 82;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 83;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 84;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 85;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 86;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 87;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 88;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 89;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 90;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 91;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 92;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 93;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 94;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 95;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 96;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 97;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 98;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 99;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 100;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 101;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 102;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 103;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 104;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 105;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 106;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 107;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 108;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 109;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 110;4;-0.327084,-0.943454,-0.000000, 0.000000;;, + 111;4;-0.387614,-0.917697,-0.000000, 0.000000;;, + 112;4;-0.451368,-0.890567,-0.000000, 0.000000;;, + 113;4;-0.470258,-0.882529,-0.000000, 0.000000;;, + 114;4;-0.448005,-0.892812,-0.000000, 0.000000;;, + 115;4;-0.366429,-0.928847,-0.000000, 0.000000;;, + 116;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 117;4;-0.263171,-0.963802,-0.000000, 0.000000;;, + 118;4;-0.196822,-0.978842,-0.000000, 0.000000;;, + 119;4;-0.151899,-0.987893,-0.000000, 0.000000;;, + 120;4;-0.140056,-0.990144,-0.000000, 0.000000;;, + 121;4;-0.243110,-0.966255,-0.000000, 0.000000;;, + 122;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 123;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 124;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 125;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 126;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 127;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 128;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 129;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 130;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 131;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 132;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 133;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 134;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 135;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 136;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 137;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 138;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 139;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 140;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 141;4;-0.334971,-0.940098,-0.000000, 0.000000;;, + 142;4;-0.405519,-0.910078,-0.000000, 0.000000;;, + 143;4;-0.456557,-0.888359,-0.000000, 0.000000;;, + 144;4;-0.470258,-0.882529,-0.000000, 0.000000;;, + 145;4;-0.457775,-0.888338,-0.000000, 0.000000;;, + 146;4;-0.407391,-0.911164,-0.000000, 0.000000;;, + 147;4;-0.345424,-0.937547,-0.000000, 0.000000;;, + 148;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 149;4;-0.271229,-0.961351,-0.000000, 0.000000;;, + 150;4;-0.213011,-0.974777,-0.000000, 0.000000;;, + 151;4;-0.168008,-0.984398,-0.000000, 0.000000;;, + 152;4;-0.145987,-0.988942,-0.000000, 0.000000;;, + 153;4;-0.140056,-0.990144,-0.000000, 0.000000;;, + 154;4;-0.267370,-0.960631,-0.000000, 0.000000;;, + 155;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 156;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 157;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 158;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 159;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 160;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 161;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 162;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 163;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 164;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 165;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 166;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 167;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 168;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 169;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 170;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 171;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 172;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 173;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 174;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 175;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 176;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 177;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 178;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 179;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 180;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 181;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 182;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 183;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 184;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 185;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 186;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 187;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 188;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 189;4;-0.309865,-0.950781,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3;-1.482709,-0.277360,-1.757913;;, + 1;3;-1.482709,-0.277360,-1.757913;;, + 2;3;-1.482709,-0.277360,-1.757913;;, + 3;3;-1.482709,-0.277360,-1.757913;;, + 4;3;-1.482709,-0.277360,-1.757913;;, + 5;3;-1.482709,-0.277360,-1.757913;;, + 6;3;-1.482709,-0.277360,-1.757913;;, + 7;3;-1.482709,-0.277360,-1.757913;;, + 8;3;-1.482709,-0.277360,-1.757913;;, + 9;3;-1.482709,-0.277360,-1.757913;;, + 10;3;-1.482709,-0.277360,-1.757913;;, + 11;3;-1.482709,-0.277360,-1.757913;;, + 12;3;-1.482709,-0.277360,-1.757913;;, + 13;3;-1.482709,-0.277360,-1.757913;;, + 14;3;-1.482709,-0.277360,-1.757913;;, + 15;3;-1.482709,-0.277360,-1.757913;;, + 16;3;-1.482709,-0.277360,-1.757913;;, + 17;3;-1.482709,-0.277360,-1.757913;;, + 18;3;-1.482709,-0.277360,-1.757913;;, + 19;3;-1.482709,-0.277360,-1.757913;;, + 20;3;-1.482709,-0.277360,-1.757913;;, + 21;3;-1.482709,-0.277360,-1.757913;;, + 22;3;-1.482709,-0.277360,-1.757913;;, + 23;3;-1.482709,-0.277360,-1.757913;;, + 24;3;-1.482709,-0.277360,-1.757913;;, + 25;3;-1.482709,-0.277360,-1.757913;;, + 26;3;-1.482709,-0.277360,-1.757913;;, + 27;3;-1.482709,-0.277360,-1.757913;;, + 28;3;-1.482709,-0.277360,-1.757913;;, + 29;3;-1.482709,-0.277360,-1.757913;;, + 30;3;-1.482709,-0.277360,-1.757913;;, + 31;3;-1.482709,-0.277360,-1.757913;;, + 32;3;-1.482709,-0.277360,-1.757913;;, + 33;3;-1.482709,-0.277360,-1.757913;;, + 34;3;-1.482709,-0.277360,-1.757913;;, + 35;3;-1.482709,-0.277360,-1.757913;;, + 36;3;-1.482709,-0.277360,-1.757913;;, + 37;3;-1.482709,-0.277360,-1.757913;;, + 38;3;-1.482709,-0.277360,-1.757913;;, + 39;3;-1.482709,-0.277360,-1.757913;;, + 40;3;-1.482709,-0.277360,-1.757913;;, + 41;3;-1.482709,-0.277360,-1.757913;;, + 42;3;-1.482709,-0.277360,-1.757913;;, + 43;3;-1.482709,-0.277360,-1.757913;;, + 44;3;-1.482709,-0.277360,-1.757913;;, + 45;3;-1.482709,-0.277360,-1.757913;;, + 46;3;-1.482709,-0.277360,-1.757913;;, + 47;3;-1.482709,-0.277360,-1.757913;;, + 48;3;-1.482709,-0.277360,-1.757913;;, + 49;3;-1.482709,-0.277360,-1.757913;;, + 50;3;-1.482709,-0.277360,-1.757913;;, + 51;3;-1.482709,-0.277360,-1.757913;;, + 52;3;-1.482709,-0.277360,-1.757913;;, + 53;3;-1.482709,-0.277360,-1.757913;;, + 54;3;-1.482709,-0.277360,-1.757913;;, + 55;3;-1.482709,-0.277360,-1.757913;;, + 56;3;-1.482709,-0.277360,-1.757913;;, + 57;3;-1.482709,-0.277360,-1.757913;;, + 58;3;-1.482709,-0.277360,-1.757913;;, + 59;3;-1.482709,-0.277360,-1.757913;;, + 60;3;-1.482709,-0.277360,-1.757913;;, + 61;3;-1.482709,-0.277360,-1.757913;;, + 62;3;-1.482709,-0.277360,-1.757913;;, + 63;3;-1.482709,-0.277360,-1.757913;;, + 64;3;-1.482709,-0.277360,-1.757913;;, + 65;3;-1.482709,-0.277360,-1.757913;;, + 66;3;-1.482709,-0.277360,-1.757913;;, + 67;3;-1.482709,-0.277360,-1.757913;;, + 68;3;-1.482709,-0.277360,-1.757913;;, + 69;3;-1.482709,-0.277360,-1.757913;;, + 70;3;-1.482709,-0.277360,-1.757913;;, + 71;3;-1.482709,-0.277360,-1.757913;;, + 72;3;-1.482709,-0.277360,-1.757913;;, + 73;3;-1.482709,-0.277360,-1.757913;;, + 74;3;-1.482709,-0.277360,-1.757913;;, + 75;3;-1.482709,-0.277360,-1.757913;;, + 76;3;-1.482709,-0.277360,-1.757913;;, + 77;3;-1.482709,-0.277360,-1.757913;;, + 78;3;-1.482709,-0.277360,-1.757913;;, + 79;3;-1.482709,-0.277360,-1.757913;;, + 80;3;-1.482709,-0.277360,-1.757913;;, + 81;3;-1.482709,-0.277360,-1.757913;;, + 82;3;-1.482709,-0.277360,-1.757913;;, + 83;3;-1.482709,-0.277360,-1.757913;;, + 84;3;-1.482709,-0.277360,-1.757913;;, + 85;3;-1.482709,-0.277360,-1.757913;;, + 86;3;-1.482709,-0.277360,-1.757913;;, + 87;3;-1.482709,-0.277360,-1.757913;;, + 88;3;-1.482709,-0.277360,-1.757913;;, + 89;3;-1.482709,-0.277360,-1.757913;;, + 90;3;-1.482709,-0.277360,-1.757913;;, + 91;3;-1.482709,-0.277360,-1.757913;;, + 92;3;-1.482709,-0.277360,-1.757913;;, + 93;3;-1.482709,-0.277360,-1.757913;;, + 94;3;-1.482709,-0.277360,-1.757913;;, + 95;3;-1.482709,-0.277360,-1.757913;;, + 96;3;-1.482709,-0.277360,-1.757913;;, + 97;3;-1.482709,-0.277360,-1.757913;;, + 98;3;-1.482709,-0.277360,-1.757913;;, + 99;3;-1.482709,-0.277360,-1.757913;;, + 100;3;-1.482709,-0.277360,-1.757913;;, + 101;3;-1.482709,-0.277360,-1.757913;;, + 102;3;-1.482709,-0.277360,-1.757913;;, + 103;3;-1.482709,-0.277360,-1.757913;;, + 104;3;-1.482709,-0.277360,-1.757913;;, + 105;3;-1.482709,-0.277360,-1.757913;;, + 106;3;-1.482709,-0.277360,-1.757913;;, + 107;3;-1.482709,-0.277360,-1.757913;;, + 108;3;-1.482709,-0.277360,-1.757913;;, + 109;3;-1.482709,-0.277360,-1.757913;;, + 110;3;-1.482709,-0.277360,-1.757913;;, + 111;3;-1.482709,-0.277360,-1.757913;;, + 112;3;-1.482709,-0.277360,-1.757913;;, + 113;3;-1.482709,-0.277360,-1.757913;;, + 114;3;-1.482709,-0.277360,-1.757913;;, + 115;3;-1.482709,-0.277360,-1.757913;;, + 116;3;-1.482709,-0.277360,-1.757913;;, + 117;3;-1.482709,-0.277360,-1.757913;;, + 118;3;-1.482709,-0.277360,-1.757913;;, + 119;3;-1.482709,-0.277360,-1.757913;;, + 120;3;-1.482709,-0.277360,-1.757913;;, + 121;3;-1.482709,-0.277360,-1.757913;;, + 122;3;-1.482709,-0.277360,-1.757913;;, + 123;3;-1.482709,-0.277360,-1.757913;;, + 124;3;-1.482709,-0.277360,-1.757913;;, + 125;3;-1.482709,-0.277360,-1.757913;;, + 126;3;-1.482709,-0.277360,-1.757913;;, + 127;3;-1.482709,-0.277360,-1.757913;;, + 128;3;-1.482709,-0.277360,-1.757913;;, + 129;3;-1.482709,-0.277360,-1.757913;;, + 130;3;-1.482709,-0.277360,-1.757913;;, + 131;3;-1.482709,-0.277360,-1.757913;;, + 132;3;-1.482709,-0.277360,-1.757913;;, + 133;3;-1.482709,-0.277360,-1.757913;;, + 134;3;-1.482709,-0.277360,-1.757913;;, + 135;3;-1.482709,-0.277360,-1.757913;;, + 136;3;-1.482709,-0.277360,-1.757913;;, + 137;3;-1.482709,-0.277360,-1.757913;;, + 138;3;-1.482709,-0.277360,-1.757913;;, + 139;3;-1.482709,-0.277360,-1.757913;;, + 140;3;-1.482709,-0.277360,-1.757913;;, + 141;3;-1.482709,-0.277360,-1.757913;;, + 142;3;-1.482709,-0.277360,-1.757913;;, + 143;3;-1.482709,-0.277360,-1.757913;;, + 144;3;-1.482709,-0.277360,-1.757913;;, + 145;3;-1.482709,-0.277360,-1.757913;;, + 146;3;-1.482709,-0.277360,-1.757913;;, + 147;3;-1.482709,-0.277360,-1.757913;;, + 148;3;-1.482709,-0.277360,-1.757913;;, + 149;3;-1.482709,-0.277360,-1.757913;;, + 150;3;-1.482709,-0.277360,-1.757913;;, + 151;3;-1.482709,-0.277360,-1.757913;;, + 152;3;-1.482709,-0.277360,-1.757913;;, + 153;3;-1.482709,-0.277360,-1.757913;;, + 154;3;-1.482709,-0.277360,-1.757913;;, + 155;3;-1.482709,-0.277360,-1.757913;;, + 156;3;-1.482709,-0.277360,-1.757913;;, + 157;3;-1.482709,-0.277360,-1.757913;;, + 158;3;-1.482709,-0.277360,-1.757913;;, + 159;3;-1.482709,-0.277360,-1.757913;;, + 160;3;-1.482709,-0.277360,-1.757913;;, + 161;3;-1.482709,-0.277360,-1.757913;;, + 162;3;-1.482709,-0.277360,-1.757913;;, + 163;3;-1.482709,-0.277360,-1.757913;;, + 164;3;-1.482709,-0.277360,-1.757913;;, + 165;3;-1.482709,-0.277360,-1.757913;;, + 166;3;-1.482709,-0.277360,-1.757913;;, + 167;3;-1.482709,-0.277360,-1.757913;;, + 168;3;-1.482709,-0.277360,-1.757913;;, + 169;3;-1.482709,-0.277360,-1.757913;;, + 170;3;-1.482709,-0.277360,-1.757913;;, + 171;3;-1.482709,-0.277360,-1.757913;;, + 172;3;-1.482709,-0.277360,-1.757913;;, + 173;3;-1.482709,-0.277360,-1.757913;;, + 174;3;-1.482709,-0.277360,-1.757913;;, + 175;3;-1.482709,-0.277360,-1.757913;;, + 176;3;-1.482709,-0.277360,-1.757913;;, + 177;3;-1.482709,-0.277360,-1.757913;;, + 178;3;-1.482709,-0.277360,-1.757913;;, + 179;3;-1.482709,-0.277360,-1.757913;;, + 180;3;-1.482709,-0.277360,-1.757913;;, + 181;3;-1.482709,-0.277360,-1.757913;;, + 182;3;-1.482709,-0.277360,-1.757913;;, + 183;3;-1.482709,-0.277360,-1.757913;;, + 184;3;-1.482709,-0.277360,-1.757913;;, + 185;3;-1.482709,-0.277360,-1.757913;;, + 186;3;-1.482709,-0.277360,-1.757913;;, + 187;3;-1.482709,-0.277360,-1.757913;;, + 188;3;-1.482709,-0.277360,-1.757913;;, + 189;3;-1.482709,-0.277360,-1.757913;;; + } + } + Animation { + {Creeper_Rig_Leg_F_R} + AnimationKey { // Rotation + 0; + 190; + 0;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 1;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 2;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 3;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 4;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 5;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 6;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 7;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 8;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 9;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 10;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 11;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 12;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 13;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 14;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 15;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 16;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 17;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 18;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 19;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 20;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 21;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 22;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 23;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 24;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 25;4;-0.302161,-0.952567,-0.000000, 0.000000;;, + 26;4;-0.279370,-0.957850,-0.000000, 0.000000;;, + 27;4;-0.244648,-0.965899,-0.000000, 0.000000;;, + 28;4;-0.205267,-0.975028,-0.000000, 0.000000;;, + 29;4;-0.170547,-0.983076,-0.000000, 0.000000;;, + 30;4;-0.147759,-0.988358,-0.000000, 0.000000;;, + 31;4;-0.140056,-0.990144,-0.000000, 0.000000;;, + 32;4;-0.146788,-0.988937,-0.000000, 0.000000;;, + 33;4;-0.167615,-0.985022,-0.000000, 0.000000;;, + 34;4;-0.200786,-0.978341,-0.000000, 0.000000;;, + 35;4;-0.240229,-0.969615,-0.000000, 0.000000;;, + 36;4;-0.278296,-0.960082,-0.000000, 0.000000;;, + 37;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 38;4;-0.340851,-0.939695,-0.000000, 0.000000;;, + 39;4;-0.377226,-0.924968,-0.000000, 0.000000;;, + 40;4;-0.414236,-0.908776,-0.000000, 0.000000;;, + 41;4;-0.444974,-0.894629, 0.000000, 0.000000;;, + 42;4;-0.464108,-0.885520, 0.000000, 0.000000;;, + 43;4;-0.470258,-0.882529, 0.000000, 0.000000;;, + 44;4;-0.460351,-0.886745, 0.000000, 0.000000;;, + 45;4;-0.431517,-0.899015, 0.000000, 0.000000;;, + 46;4;-0.390066,-0.916653,-0.000000, 0.000000;;, + 47;4;-0.348612,-0.934293,-0.000000, 0.000000;;, + 48;4;-0.319774,-0.946564,-0.000000, 0.000000;;, + 49;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 50;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 51;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 52;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 53;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 54;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 55;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 56;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 57;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 58;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 59;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 60;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 61;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 62;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 63;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 64;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 65;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 66;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 67;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 68;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 69;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 70;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 71;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 72;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 73;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 74;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 75;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 76;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 77;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 78;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 79;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 80;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 81;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 82;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 83;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 84;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 85;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 86;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 87;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 88;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 89;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 90;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 91;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 92;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 93;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 94;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 95;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 96;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 97;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 98;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 99;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 100;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 101;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 102;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 103;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 104;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 105;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 106;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 107;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 108;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 109;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 110;4;-0.291635,-0.955007,-0.000000, 0.000000;;, + 111;4;-0.227552,-0.969862,-0.000000, 0.000000;;, + 112;4;-0.160055,-0.985508,-0.000000, 0.000000;;, + 113;4;-0.140056,-0.990144,-0.000000, 0.000000;;, + 114;4;-0.164095,-0.985339,-0.000000, 0.000000;;, + 115;4;-0.251239,-0.966388,-0.000000, 0.000000;;, + 116;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 117;4;-0.355264,-0.933788,-0.000000, 0.000000;;, + 118;4;-0.417734,-0.906845,-0.000000, 0.000000;;, + 119;4;-0.459363,-0.887689, 0.000000, 0.000000;;, + 120;4;-0.470258,-0.882529, 0.000000, 0.000000;;, + 121;4;-0.372918,-0.923950,-0.000000, 0.000000;;, + 122;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 123;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 124;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 125;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 126;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 127;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 128;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 129;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 130;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 131;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 132;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 133;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 134;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 135;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 136;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 137;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 138;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 139;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 140;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 141;4;-0.283285,-0.956942,-0.000000, 0.000000;;, + 142;4;-0.208596,-0.974256,-0.000000, 0.000000;;, + 143;4;-0.154562,-0.986781,-0.000000, 0.000000;;, + 144;4;-0.140056,-0.990144,-0.000000, 0.000000;;, + 145;4;-0.153565,-0.987482,-0.000000, 0.000000;;, + 146;4;-0.207723,-0.976237,-0.000000, 0.000000;;, + 147;4;-0.273337,-0.961040,-0.000000, 0.000000;;, + 148;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 149;4;-0.347310,-0.936556,-0.000000, 0.000000;;, + 150;4;-0.402259,-0.913100,-0.000000, 0.000000;;, + 151;4;-0.444289,-0.894357, 0.000000, 0.000000;;, + 152;4;-0.464758,-0.885053, 0.000000, 0.000000;;, + 153;4;-0.470258,-0.882529, 0.000000, 0.000000;;, + 154;4;-0.350003,-0.933701,-0.000000, 0.000000;;, + 155;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 156;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 157;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 158;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 159;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 160;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 161;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 162;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 163;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 164;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 165;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 166;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 167;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 168;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 169;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 170;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 171;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 172;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 173;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 174;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 175;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 176;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 177;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 178;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 179;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 180;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 181;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 182;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 183;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 184;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 185;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 186;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 187;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 188;4;-0.309865,-0.950781,-0.000000, 0.000000;;, + 189;4;-0.309865,-0.950781,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3; 1.581556,-0.277360,-1.757913;;, + 1;3; 1.581556,-0.277360,-1.757913;;, + 2;3; 1.581556,-0.277360,-1.757913;;, + 3;3; 1.581556,-0.277360,-1.757913;;, + 4;3; 1.581556,-0.277360,-1.757913;;, + 5;3; 1.581556,-0.277360,-1.757913;;, + 6;3; 1.581556,-0.277360,-1.757913;;, + 7;3; 1.581556,-0.277360,-1.757913;;, + 8;3; 1.581556,-0.277360,-1.757913;;, + 9;3; 1.581556,-0.277360,-1.757913;;, + 10;3; 1.581556,-0.277360,-1.757913;;, + 11;3; 1.581556,-0.277360,-1.757913;;, + 12;3; 1.581556,-0.277360,-1.757913;;, + 13;3; 1.581556,-0.277360,-1.757913;;, + 14;3; 1.581556,-0.277360,-1.757913;;, + 15;3; 1.581556,-0.277360,-1.757913;;, + 16;3; 1.581556,-0.277360,-1.757913;;, + 17;3; 1.581556,-0.277360,-1.757913;;, + 18;3; 1.581556,-0.277360,-1.757913;;, + 19;3; 1.581556,-0.277360,-1.757913;;, + 20;3; 1.581556,-0.277360,-1.757913;;, + 21;3; 1.581556,-0.277360,-1.757913;;, + 22;3; 1.581556,-0.277360,-1.757913;;, + 23;3; 1.581556,-0.277360,-1.757913;;, + 24;3; 1.581556,-0.277360,-1.757913;;, + 25;3; 1.581556,-0.277360,-1.757913;;, + 26;3; 1.581556,-0.277360,-1.757913;;, + 27;3; 1.581556,-0.277360,-1.757913;;, + 28;3; 1.581556,-0.277360,-1.757913;;, + 29;3; 1.581556,-0.277360,-1.757913;;, + 30;3; 1.581556,-0.277360,-1.757913;;, + 31;3; 1.581556,-0.277360,-1.757913;;, + 32;3; 1.581556,-0.277360,-1.757913;;, + 33;3; 1.581556,-0.277360,-1.757913;;, + 34;3; 1.581556,-0.277360,-1.757913;;, + 35;3; 1.581556,-0.277360,-1.757913;;, + 36;3; 1.581556,-0.277360,-1.757913;;, + 37;3; 1.581556,-0.277360,-1.757913;;, + 38;3; 1.581556,-0.277360,-1.757913;;, + 39;3; 1.581556,-0.277360,-1.757913;;, + 40;3; 1.581556,-0.277360,-1.757913;;, + 41;3; 1.581556,-0.277360,-1.757913;;, + 42;3; 1.581556,-0.277360,-1.757913;;, + 43;3; 1.581556,-0.277360,-1.757913;;, + 44;3; 1.581556,-0.277360,-1.757913;;, + 45;3; 1.581556,-0.277360,-1.757913;;, + 46;3; 1.581556,-0.277360,-1.757913;;, + 47;3; 1.581556,-0.277360,-1.757913;;, + 48;3; 1.581556,-0.277360,-1.757913;;, + 49;3; 1.581556,-0.277360,-1.757913;;, + 50;3; 1.581556,-0.277360,-1.757913;;, + 51;3; 1.581556,-0.277360,-1.757913;;, + 52;3; 1.581556,-0.277360,-1.757913;;, + 53;3; 1.581556,-0.277360,-1.757913;;, + 54;3; 1.581556,-0.277360,-1.757913;;, + 55;3; 1.581556,-0.277360,-1.757913;;, + 56;3; 1.581556,-0.277360,-1.757913;;, + 57;3; 1.581556,-0.277360,-1.757913;;, + 58;3; 1.581556,-0.277360,-1.757913;;, + 59;3; 1.581556,-0.277360,-1.757913;;, + 60;3; 1.581556,-0.277360,-1.757913;;, + 61;3; 1.581556,-0.277360,-1.757913;;, + 62;3; 1.581556,-0.277360,-1.757913;;, + 63;3; 1.581556,-0.277360,-1.757913;;, + 64;3; 1.581556,-0.277360,-1.757913;;, + 65;3; 1.581556,-0.277360,-1.757913;;, + 66;3; 1.581556,-0.277360,-1.757913;;, + 67;3; 1.581556,-0.277360,-1.757913;;, + 68;3; 1.581556,-0.277360,-1.757913;;, + 69;3; 1.581556,-0.277360,-1.757913;;, + 70;3; 1.581556,-0.277360,-1.757913;;, + 71;3; 1.581556,-0.277360,-1.757913;;, + 72;3; 1.581556,-0.277360,-1.757913;;, + 73;3; 1.581556,-0.277360,-1.757913;;, + 74;3; 1.581556,-0.277360,-1.757913;;, + 75;3; 1.581556,-0.277360,-1.757913;;, + 76;3; 1.581556,-0.277360,-1.757913;;, + 77;3; 1.581556,-0.277360,-1.757913;;, + 78;3; 1.581556,-0.277360,-1.757913;;, + 79;3; 1.581556,-0.277360,-1.757913;;, + 80;3; 1.581556,-0.277360,-1.757913;;, + 81;3; 1.581556,-0.277360,-1.757913;;, + 82;3; 1.581556,-0.277360,-1.757913;;, + 83;3; 1.581556,-0.277360,-1.757913;;, + 84;3; 1.581556,-0.277360,-1.757913;;, + 85;3; 1.581556,-0.277360,-1.757913;;, + 86;3; 1.581556,-0.277360,-1.757913;;, + 87;3; 1.581556,-0.277360,-1.757913;;, + 88;3; 1.581556,-0.277360,-1.757913;;, + 89;3; 1.581556,-0.277360,-1.757913;;, + 90;3; 1.581556,-0.277360,-1.757913;;, + 91;3; 1.581556,-0.277360,-1.757913;;, + 92;3; 1.581556,-0.277360,-1.757913;;, + 93;3; 1.581556,-0.277360,-1.757913;;, + 94;3; 1.581556,-0.277360,-1.757913;;, + 95;3; 1.581556,-0.277360,-1.757913;;, + 96;3; 1.581556,-0.277360,-1.757913;;, + 97;3; 1.581556,-0.277360,-1.757913;;, + 98;3; 1.581556,-0.277360,-1.757913;;, + 99;3; 1.581556,-0.277360,-1.757913;;, + 100;3; 1.581556,-0.277360,-1.757913;;, + 101;3; 1.581556,-0.277360,-1.757913;;, + 102;3; 1.581556,-0.277360,-1.757913;;, + 103;3; 1.581556,-0.277360,-1.757913;;, + 104;3; 1.581556,-0.277360,-1.757913;;, + 105;3; 1.581556,-0.277360,-1.757913;;, + 106;3; 1.581556,-0.277360,-1.757913;;, + 107;3; 1.581556,-0.277360,-1.757913;;, + 108;3; 1.581556,-0.277360,-1.757913;;, + 109;3; 1.581556,-0.277360,-1.757913;;, + 110;3; 1.581556,-0.277360,-1.757913;;, + 111;3; 1.581556,-0.277360,-1.757913;;, + 112;3; 1.581556,-0.277360,-1.757913;;, + 113;3; 1.581556,-0.277360,-1.757913;;, + 114;3; 1.581556,-0.277360,-1.757913;;, + 115;3; 1.581556,-0.277360,-1.757913;;, + 116;3; 1.581556,-0.277360,-1.757913;;, + 117;3; 1.581556,-0.277360,-1.757913;;, + 118;3; 1.581556,-0.277360,-1.757913;;, + 119;3; 1.581556,-0.277360,-1.757913;;, + 120;3; 1.581556,-0.277360,-1.757913;;, + 121;3; 1.581556,-0.277360,-1.757913;;, + 122;3; 1.581556,-0.277360,-1.757913;;, + 123;3; 1.581556,-0.277360,-1.757913;;, + 124;3; 1.581556,-0.277360,-1.757913;;, + 125;3; 1.581556,-0.277360,-1.757913;;, + 126;3; 1.581556,-0.277360,-1.757913;;, + 127;3; 1.581556,-0.277360,-1.757913;;, + 128;3; 1.581556,-0.277360,-1.757913;;, + 129;3; 1.581556,-0.277360,-1.757913;;, + 130;3; 1.581556,-0.277360,-1.757913;;, + 131;3; 1.581556,-0.277360,-1.757913;;, + 132;3; 1.581556,-0.277360,-1.757913;;, + 133;3; 1.581556,-0.277360,-1.757913;;, + 134;3; 1.581556,-0.277360,-1.757913;;, + 135;3; 1.581556,-0.277360,-1.757913;;, + 136;3; 1.581556,-0.277360,-1.757913;;, + 137;3; 1.581556,-0.277360,-1.757913;;, + 138;3; 1.581556,-0.277360,-1.757913;;, + 139;3; 1.581556,-0.277360,-1.757913;;, + 140;3; 1.581556,-0.277360,-1.757913;;, + 141;3; 1.581556,-0.277360,-1.757913;;, + 142;3; 1.581556,-0.277360,-1.757913;;, + 143;3; 1.581556,-0.277360,-1.757913;;, + 144;3; 1.581556,-0.277360,-1.757913;;, + 145;3; 1.581556,-0.277360,-1.757913;;, + 146;3; 1.581556,-0.277360,-1.757913;;, + 147;3; 1.581556,-0.277360,-1.757913;;, + 148;3; 1.581556,-0.277360,-1.757913;;, + 149;3; 1.581556,-0.277360,-1.757913;;, + 150;3; 1.581556,-0.277360,-1.757913;;, + 151;3; 1.581556,-0.277360,-1.757913;;, + 152;3; 1.581556,-0.277360,-1.757913;;, + 153;3; 1.581556,-0.277360,-1.757913;;, + 154;3; 1.581556,-0.277360,-1.757913;;, + 155;3; 1.581556,-0.277360,-1.757913;;, + 156;3; 1.581556,-0.277360,-1.757913;;, + 157;3; 1.581556,-0.277360,-1.757913;;, + 158;3; 1.581556,-0.277360,-1.757913;;, + 159;3; 1.581556,-0.277360,-1.757913;;, + 160;3; 1.581556,-0.277360,-1.757913;;, + 161;3; 1.581556,-0.277360,-1.757913;;, + 162;3; 1.581556,-0.277360,-1.757913;;, + 163;3; 1.581556,-0.277360,-1.757913;;, + 164;3; 1.581556,-0.277360,-1.757913;;, + 165;3; 1.581556,-0.277360,-1.757913;;, + 166;3; 1.581556,-0.277360,-1.757913;;, + 167;3; 1.581556,-0.277360,-1.757913;;, + 168;3; 1.581556,-0.277360,-1.757913;;, + 169;3; 1.581556,-0.277360,-1.757913;;, + 170;3; 1.581556,-0.277360,-1.757913;;, + 171;3; 1.581556,-0.277360,-1.757913;;, + 172;3; 1.581556,-0.277360,-1.757913;;, + 173;3; 1.581556,-0.277360,-1.757913;;, + 174;3; 1.581556,-0.277360,-1.757913;;, + 175;3; 1.581556,-0.277360,-1.757913;;, + 176;3; 1.581556,-0.277360,-1.757913;;, + 177;3; 1.581556,-0.277360,-1.757913;;, + 178;3; 1.581556,-0.277360,-1.757913;;, + 179;3; 1.581556,-0.277360,-1.757913;;, + 180;3; 1.581556,-0.277360,-1.757913;;, + 181;3; 1.581556,-0.277360,-1.757913;;, + 182;3; 1.581556,-0.277360,-1.757913;;, + 183;3; 1.581556,-0.277360,-1.757913;;, + 184;3; 1.581556,-0.277360,-1.757913;;, + 185;3; 1.581556,-0.277360,-1.757913;;, + 186;3; 1.581556,-0.277360,-1.757913;;, + 187;3; 1.581556,-0.277360,-1.757913;;, + 188;3; 1.581556,-0.277360,-1.757913;;, + 189;3; 1.581556,-0.277360,-1.757913;;; + } + } + Animation { + {Creeper_Rig_Leg_B_R} + AnimationKey { // Rotation + 0; + 190; + 0;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 1;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 2;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 3;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 4;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 5;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 6;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 7;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 8;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 9;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 10;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 11;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 12;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 13;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 14;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 15;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 16;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 17;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 18;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 19;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 20;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 21;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 22;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 23;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 24;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 25;4;-0.302161, 0.952567,-0.000000,-0.000000;;, + 26;4;-0.279370, 0.957850,-0.000000,-0.000000;;, + 27;4;-0.244648, 0.965899,-0.000000,-0.000000;;, + 28;4;-0.205267, 0.975028,-0.000000,-0.000000;;, + 29;4;-0.170547, 0.983076,-0.000000,-0.000000;;, + 30;4;-0.147759, 0.988358,-0.000000,-0.000000;;, + 31;4;-0.140056, 0.990144,-0.000000,-0.000000;;, + 32;4;-0.146788, 0.988937,-0.000000,-0.000000;;, + 33;4;-0.167614, 0.985022,-0.000000,-0.000000;;, + 34;4;-0.200786, 0.978341,-0.000000,-0.000000;;, + 35;4;-0.240229, 0.969615,-0.000000,-0.000000;;, + 36;4;-0.278296, 0.960082,-0.000000,-0.000000;;, + 37;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 38;4;-0.340851, 0.939695,-0.000000,-0.000000;;, + 39;4;-0.377226, 0.924968,-0.000000,-0.000000;;, + 40;4;-0.414236, 0.908776,-0.000000,-0.000000;;, + 41;4;-0.444974, 0.894629, 0.000000,-0.000000;;, + 42;4;-0.464108, 0.885520, 0.000000,-0.000000;;, + 43;4;-0.470258, 0.882529, 0.000000,-0.000000;;, + 44;4;-0.460351, 0.886745, 0.000000,-0.000000;;, + 45;4;-0.431517, 0.899015, 0.000000,-0.000000;;, + 46;4;-0.390066, 0.916653,-0.000000,-0.000000;;, + 47;4;-0.348612, 0.934293,-0.000000,-0.000000;;, + 48;4;-0.319774, 0.946564,-0.000000,-0.000000;;, + 49;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 50;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 51;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 52;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 53;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 54;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 55;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 56;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 57;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 58;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 59;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 60;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 61;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 62;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 63;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 64;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 65;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 66;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 67;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 68;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 69;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 70;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 71;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 72;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 73;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 74;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 75;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 76;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 77;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 78;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 79;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 80;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 81;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 82;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 83;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 84;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 85;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 86;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 87;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 88;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 89;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 90;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 91;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 92;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 93;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 94;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 95;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 96;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 97;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 98;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 99;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 100;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 101;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 102;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 103;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 104;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 105;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 106;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 107;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 108;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 109;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 110;4;-0.291635, 0.955007,-0.000000,-0.000000;;, + 111;4;-0.227552, 0.969862,-0.000000,-0.000000;;, + 112;4;-0.160055, 0.985508,-0.000000,-0.000000;;, + 113;4;-0.140056, 0.990144,-0.000000,-0.000000;;, + 114;4;-0.164095, 0.985339,-0.000000,-0.000000;;, + 115;4;-0.251239, 0.966388,-0.000000,-0.000000;;, + 116;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 117;4;-0.355264, 0.933788,-0.000000,-0.000000;;, + 118;4;-0.417734, 0.906845, 0.000000,-0.000000;;, + 119;4;-0.459363, 0.887689, 0.000000,-0.000000;;, + 120;4;-0.470258, 0.882529, 0.000000,-0.000000;;, + 121;4;-0.372918, 0.923950,-0.000000,-0.000000;;, + 122;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 123;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 124;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 125;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 126;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 127;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 128;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 129;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 130;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 131;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 132;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 133;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 134;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 135;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 136;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 137;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 138;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 139;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 140;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 141;4;-0.283285, 0.956942,-0.000000,-0.000000;;, + 142;4;-0.208596, 0.974256,-0.000000,-0.000000;;, + 143;4;-0.154562, 0.986781,-0.000000,-0.000000;;, + 144;4;-0.140056, 0.990144,-0.000000,-0.000000;;, + 145;4;-0.153565, 0.987482,-0.000000,-0.000000;;, + 146;4;-0.207723, 0.976237,-0.000000,-0.000000;;, + 147;4;-0.273337, 0.961040,-0.000000,-0.000000;;, + 148;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 149;4;-0.347310, 0.936556,-0.000000,-0.000000;;, + 150;4;-0.402259, 0.913100,-0.000000,-0.000000;;, + 151;4;-0.444289, 0.894357, 0.000000,-0.000000;;, + 152;4;-0.464758, 0.885053, 0.000000,-0.000000;;, + 153;4;-0.470258, 0.882529, 0.000000,-0.000000;;, + 154;4;-0.350003, 0.933701,-0.000000,-0.000000;;, + 155;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 156;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 157;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 158;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 159;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 160;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 161;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 162;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 163;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 164;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 165;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 166;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 167;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 168;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 169;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 170;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 171;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 172;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 173;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 174;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 175;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 176;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 177;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 178;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 179;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 180;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 181;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 182;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 183;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 184;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 185;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 186;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 187;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 188;4;-0.309865, 0.950781,-0.000000,-0.000000;;, + 189;4;-0.309865, 0.950781,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 190; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;, + 187;3; 1.000000, 1.000000, 1.000000;;, + 188;3; 1.000000, 1.000000, 1.000000;;, + 189;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 190; + 0;3; 1.581556,-0.277360, 2.078758;;, + 1;3; 1.581556,-0.277360, 2.078758;;, + 2;3; 1.581556,-0.277360, 2.078758;;, + 3;3; 1.581556,-0.277360, 2.078758;;, + 4;3; 1.581556,-0.277360, 2.078758;;, + 5;3; 1.581556,-0.277360, 2.078758;;, + 6;3; 1.581556,-0.277360, 2.078758;;, + 7;3; 1.581556,-0.277360, 2.078758;;, + 8;3; 1.581556,-0.277360, 2.078758;;, + 9;3; 1.581556,-0.277360, 2.078758;;, + 10;3; 1.581556,-0.277360, 2.078758;;, + 11;3; 1.581556,-0.277360, 2.078758;;, + 12;3; 1.581556,-0.277360, 2.078758;;, + 13;3; 1.581556,-0.277360, 2.078758;;, + 14;3; 1.581556,-0.277360, 2.078758;;, + 15;3; 1.581556,-0.277360, 2.078758;;, + 16;3; 1.581556,-0.277360, 2.078758;;, + 17;3; 1.581556,-0.277360, 2.078758;;, + 18;3; 1.581556,-0.277360, 2.078758;;, + 19;3; 1.581556,-0.277360, 2.078758;;, + 20;3; 1.581556,-0.277360, 2.078758;;, + 21;3; 1.581556,-0.277360, 2.078758;;, + 22;3; 1.581556,-0.277360, 2.078758;;, + 23;3; 1.581556,-0.277360, 2.078758;;, + 24;3; 1.581556,-0.277360, 2.078758;;, + 25;3; 1.581556,-0.277360, 2.078758;;, + 26;3; 1.581556,-0.277360, 2.078758;;, + 27;3; 1.581556,-0.277360, 2.078758;;, + 28;3; 1.581556,-0.277360, 2.078758;;, + 29;3; 1.581556,-0.277360, 2.078758;;, + 30;3; 1.581556,-0.277360, 2.078758;;, + 31;3; 1.581556,-0.277360, 2.078758;;, + 32;3; 1.581556,-0.277360, 2.078758;;, + 33;3; 1.581556,-0.277360, 2.078758;;, + 34;3; 1.581556,-0.277360, 2.078758;;, + 35;3; 1.581556,-0.277360, 2.078758;;, + 36;3; 1.581556,-0.277360, 2.078758;;, + 37;3; 1.581556,-0.277360, 2.078758;;, + 38;3; 1.581556,-0.277360, 2.078758;;, + 39;3; 1.581556,-0.277360, 2.078758;;, + 40;3; 1.581556,-0.277360, 2.078758;;, + 41;3; 1.581556,-0.277360, 2.078758;;, + 42;3; 1.581556,-0.277360, 2.078758;;, + 43;3; 1.581556,-0.277360, 2.078758;;, + 44;3; 1.581556,-0.277360, 2.078758;;, + 45;3; 1.581556,-0.277360, 2.078758;;, + 46;3; 1.581556,-0.277360, 2.078758;;, + 47;3; 1.581556,-0.277360, 2.078758;;, + 48;3; 1.581556,-0.277360, 2.078758;;, + 49;3; 1.581556,-0.277360, 2.078758;;, + 50;3; 1.581556,-0.277360, 2.078758;;, + 51;3; 1.581556,-0.277360, 2.078758;;, + 52;3; 1.581556,-0.277360, 2.078758;;, + 53;3; 1.581556,-0.277360, 2.078758;;, + 54;3; 1.581556,-0.277360, 2.078758;;, + 55;3; 1.581556,-0.277360, 2.078758;;, + 56;3; 1.581556,-0.277360, 2.078758;;, + 57;3; 1.581556,-0.277360, 2.078758;;, + 58;3; 1.581556,-0.277360, 2.078758;;, + 59;3; 1.581556,-0.277360, 2.078758;;, + 60;3; 1.581556,-0.277360, 2.078758;;, + 61;3; 1.581556,-0.277360, 2.078758;;, + 62;3; 1.581556,-0.277360, 2.078758;;, + 63;3; 1.581556,-0.277360, 2.078758;;, + 64;3; 1.581556,-0.277360, 2.078758;;, + 65;3; 1.581556,-0.277360, 2.078758;;, + 66;3; 1.581556,-0.277360, 2.078758;;, + 67;3; 1.581556,-0.277360, 2.078758;;, + 68;3; 1.581556,-0.277360, 2.078758;;, + 69;3; 1.581556,-0.277360, 2.078758;;, + 70;3; 1.581556,-0.277360, 2.078758;;, + 71;3; 1.581556,-0.277360, 2.078758;;, + 72;3; 1.581556,-0.277360, 2.078758;;, + 73;3; 1.581556,-0.277360, 2.078758;;, + 74;3; 1.581556,-0.277360, 2.078758;;, + 75;3; 1.581556,-0.277360, 2.078758;;, + 76;3; 1.581556,-0.277360, 2.078758;;, + 77;3; 1.581556,-0.277360, 2.078758;;, + 78;3; 1.581556,-0.277360, 2.078758;;, + 79;3; 1.581556,-0.277360, 2.078758;;, + 80;3; 1.581556,-0.277360, 2.078758;;, + 81;3; 1.581556,-0.277360, 2.078758;;, + 82;3; 1.581556,-0.277360, 2.078758;;, + 83;3; 1.581556,-0.277360, 2.078758;;, + 84;3; 1.581556,-0.277360, 2.078758;;, + 85;3; 1.581556,-0.277360, 2.078758;;, + 86;3; 1.581556,-0.277360, 2.078758;;, + 87;3; 1.581556,-0.277360, 2.078758;;, + 88;3; 1.581556,-0.277360, 2.078758;;, + 89;3; 1.581556,-0.277360, 2.078758;;, + 90;3; 1.581556,-0.277360, 2.078758;;, + 91;3; 1.581556,-0.277360, 2.078758;;, + 92;3; 1.581556,-0.277360, 2.078758;;, + 93;3; 1.581556,-0.277360, 2.078758;;, + 94;3; 1.581556,-0.277360, 2.078758;;, + 95;3; 1.581556,-0.277360, 2.078758;;, + 96;3; 1.581556,-0.277360, 2.078758;;, + 97;3; 1.581556,-0.277360, 2.078758;;, + 98;3; 1.581556,-0.277360, 2.078758;;, + 99;3; 1.581556,-0.277360, 2.078758;;, + 100;3; 1.581556,-0.277360, 2.078758;;, + 101;3; 1.581556,-0.277360, 2.078758;;, + 102;3; 1.581556,-0.277360, 2.078758;;, + 103;3; 1.581556,-0.277360, 2.078758;;, + 104;3; 1.581556,-0.277360, 2.078758;;, + 105;3; 1.581556,-0.277360, 2.078758;;, + 106;3; 1.581556,-0.277360, 2.078758;;, + 107;3; 1.581556,-0.277360, 2.078758;;, + 108;3; 1.581556,-0.277360, 2.078758;;, + 109;3; 1.581556,-0.277360, 2.078758;;, + 110;3; 1.581556,-0.277360, 2.078758;;, + 111;3; 1.581556,-0.277360, 2.078759;;, + 112;3; 1.581556,-0.277360, 2.078758;;, + 113;3; 1.581556,-0.277360, 2.078758;;, + 114;3; 1.581556,-0.277360, 2.078758;;, + 115;3; 1.581556,-0.277360, 2.078758;;, + 116;3; 1.581556,-0.277360, 2.078758;;, + 117;3; 1.581556,-0.277360, 2.078758;;, + 118;3; 1.581556,-0.277360, 2.078758;;, + 119;3; 1.581556,-0.277360, 2.078759;;, + 120;3; 1.581556,-0.277360, 2.078758;;, + 121;3; 1.581556,-0.277360, 2.078758;;, + 122;3; 1.581556,-0.277360, 2.078758;;, + 123;3; 1.581556,-0.277360, 2.078758;;, + 124;3; 1.581556,-0.277360, 2.078758;;, + 125;3; 1.581556,-0.277360, 2.078758;;, + 126;3; 1.581556,-0.277360, 2.078758;;, + 127;3; 1.581556,-0.277360, 2.078758;;, + 128;3; 1.581556,-0.277360, 2.078758;;, + 129;3; 1.581556,-0.277360, 2.078758;;, + 130;3; 1.581556,-0.277360, 2.078758;;, + 131;3; 1.581556,-0.277360, 2.078758;;, + 132;3; 1.581556,-0.277360, 2.078758;;, + 133;3; 1.581556,-0.277360, 2.078758;;, + 134;3; 1.581556,-0.277360, 2.078758;;, + 135;3; 1.581556,-0.277360, 2.078758;;, + 136;3; 1.581556,-0.277360, 2.078758;;, + 137;3; 1.581556,-0.277360, 2.078758;;, + 138;3; 1.581556,-0.277360, 2.078758;;, + 139;3; 1.581556,-0.277360, 2.078758;;, + 140;3; 1.581556,-0.277360, 2.078758;;, + 141;3; 1.581556,-0.277360, 2.078758;;, + 142;3; 1.581556,-0.277360, 2.078758;;, + 143;3; 1.581556,-0.277360, 2.078758;;, + 144;3; 1.581556,-0.277360, 2.078758;;, + 145;3; 1.581556,-0.277360, 2.078758;;, + 146;3; 1.581556,-0.277360, 2.078758;;, + 147;3; 1.581556,-0.277360, 2.078758;;, + 148;3; 1.581556,-0.277360, 2.078758;;, + 149;3; 1.581556,-0.277360, 2.078758;;, + 150;3; 1.581556,-0.277360, 2.078758;;, + 151;3; 1.581556,-0.277360, 2.078758;;, + 152;3; 1.581556,-0.277360, 2.078758;;, + 153;3; 1.581556,-0.277360, 2.078758;;, + 154;3; 1.581556,-0.277360, 2.078758;;, + 155;3; 1.581556,-0.277360, 2.078758;;, + 156;3; 1.581556,-0.277360, 2.078758;;, + 157;3; 1.581556,-0.277360, 2.078758;;, + 158;3; 1.581556,-0.277360, 2.078758;;, + 159;3; 1.581556,-0.277360, 2.078758;;, + 160;3; 1.581556,-0.277360, 2.078758;;, + 161;3; 1.581556,-0.277360, 2.078758;;, + 162;3; 1.581556,-0.277360, 2.078758;;, + 163;3; 1.581556,-0.277360, 2.078758;;, + 164;3; 1.581556,-0.277360, 2.078758;;, + 165;3; 1.581556,-0.277360, 2.078758;;, + 166;3; 1.581556,-0.277360, 2.078758;;, + 167;3; 1.581556,-0.277360, 2.078758;;, + 168;3; 1.581556,-0.277360, 2.078758;;, + 169;3; 1.581556,-0.277360, 2.078758;;, + 170;3; 1.581556,-0.277360, 2.078758;;, + 171;3; 1.581556,-0.277360, 2.078758;;, + 172;3; 1.581556,-0.277360, 2.078758;;, + 173;3; 1.581556,-0.277360, 2.078758;;, + 174;3; 1.581556,-0.277360, 2.078758;;, + 175;3; 1.581556,-0.277360, 2.078758;;, + 176;3; 1.581556,-0.277360, 2.078758;;, + 177;3; 1.581556,-0.277360, 2.078758;;, + 178;3; 1.581556,-0.277360, 2.078758;;, + 179;3; 1.581556,-0.277360, 2.078758;;, + 180;3; 1.581556,-0.277360, 2.078758;;, + 181;3; 1.581556,-0.277360, 2.078758;;, + 182;3; 1.581556,-0.277360, 2.078758;;, + 183;3; 1.581556,-0.277360, 2.078758;;, + 184;3; 1.581556,-0.277360, 2.078758;;, + 185;3; 1.581556,-0.277360, 2.078758;;, + 186;3; 1.581556,-0.277360, 2.078758;;, + 187;3; 1.581556,-0.277360, 2.078758;;, + 188;3; 1.581556,-0.277360, 2.078758;;, + 189;3; 1.581556,-0.277360, 2.078758;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/models/mobs_horse.x b/mods/mobs_mc/models/mobs_horse.x new file mode 100644 index 000000000..f5b6e9e5b --- /dev/null +++ b/mods/mobs_mc/models/mobs_horse.x @@ -0,0 +1,5739 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 2.736834, 0.000000, 0.000000, 0.000000, + 0.000000, 2.736834, 0.000000, 0.000000, + 0.000000, 0.000000, 2.736834, 0.000000, + -14.781387, 0.005959, 0.326405, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 5.378092,-1.647068, 3.136816, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.618225, 0.089278,-0.876976, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.618225, 3.135167,-1.284375, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + -0.648382, 0.089278,-0.876976, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + -0.648382, 3.135167,-1.230253, 1.000000;; + } + } //End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.303766,-0.952747, 0.000000, + -0.000000, 0.952747,-0.303766, 0.000000, + 0.000000,-0.293364, 0.572615, 1.000000;; + } + } //End of Armature_Bone_005 + Frame Armature_Bone_006 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.681913, 0.731433, 0.000000, + 0.000000,-0.731433, 0.681913, 0.000000, + 0.000000, 3.228616, 0.252948, 1.000000;; + } + Frame Armature_Bone_007 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.700370,-0.713780, 0.000000, + 0.000000, 0.713780, 0.700370, 0.000000, + -0.000000, 1.500366, 0.161866, 1.000000;; + } + } //End of Armature_Bone_007 + } //End of Armature_Bone_006 + } //End of Armature_Body + Frame Cube_005 { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.018561,-0.012256,-0.107993, 1.000000;; + } + Mesh { //Mesh Mesh + 328; + 5.711963; 1.214301; 0.014691;, + 5.711963; 1.757811; 0.014691;, + 5.711963; 1.757811; 2.011055;, + 5.711963; 1.214301; 2.011055;, + 5.711963; 1.757811; 0.014691;, + 6.255472; 1.757811; 0.014691;, + 6.255472; 1.757811; 2.011055;, + 5.711963; 1.757811; 2.011055;, + 6.255472; 1.757811; 0.014691;, + 6.255472; 1.214301; 0.014691;, + 6.255472; 1.214301; 2.011055;, + 6.255472; 1.757811; 2.011055;, + 6.255472; 1.214301; 0.014691;, + 5.711963; 1.214301; 0.014691;, + 5.711963; 1.214301; 2.011055;, + 6.255472; 1.214301; 2.011055;, + 6.255472; 1.214301; 0.014691;, + 6.255472; 1.757811; 0.014691;, + 5.711963; 1.757811; 0.014691;, + 5.711963; 1.214301; 0.014691;, + 5.711963; 1.214301; 2.011055;, + 5.711963; 1.757811; 2.011055;, + 6.255472; 1.757811; 2.011055;, + 6.255472; 1.214301; 2.011055;, + 4.461220; 1.214301; 0.014691;, + 4.461220; 1.757811; 0.014691;, + 4.461220; 1.757811; 2.011055;, + 4.461220; 1.214301; 2.011055;, + 4.461220; 1.757811; 0.014691;, + 5.004729; 1.757811; 0.014691;, + 5.004729; 1.757811; 2.011055;, + 4.461220; 1.757811; 2.011055;, + 5.004729; 1.757811; 0.014691;, + 5.004729; 1.214301; 0.014691;, + 5.004729; 1.214301; 2.011055;, + 5.004729; 1.757811; 2.011055;, + 5.004729; 1.214301; 0.014691;, + 4.461220; 1.214301; 0.014691;, + 4.461220; 1.214301; 2.011055;, + 5.004729; 1.214301; 2.011055;, + 5.004729; 1.214301; 0.014691;, + 5.004729; 1.757811; 0.014691;, + 4.461220; 1.757811; 0.014691;, + 4.461220; 1.214301; 0.014691;, + 4.461220; 1.214301; 2.011055;, + 4.461220; 1.757811; 2.011055;, + 5.004729; 1.757811; 2.011055;, + 5.004729; 1.214301; 2.011055;, + 4.461220;-1.811143; 0.014691;, + 4.461220;-1.267634; 0.014691;, + 4.461220;-1.267634; 2.273839;, + 4.461220;-1.811143; 2.273839;, + 4.461220;-1.267634; 0.014691;, + 5.004729;-1.267634; 0.014691;, + 5.004729;-1.267634; 2.273839;, + 4.461220;-1.267634; 2.273839;, + 5.004729;-1.267634; 0.014691;, + 5.004729;-1.811143; 0.014691;, + 5.004729;-1.811143; 2.273839;, + 5.004729;-1.267634; 2.273839;, + 5.004729;-1.811143; 0.014691;, + 4.461220;-1.811143; 0.014691;, + 4.461220;-1.811143; 2.273839;, + 5.004729;-1.811143; 2.273839;, + 5.004729;-1.811143; 0.014691;, + 5.004729;-1.267634; 0.014691;, + 4.461220;-1.267634; 0.014691;, + 4.461220;-1.811143; 0.014691;, + 4.461220;-1.811143; 2.273839;, + 4.461220;-1.267634; 2.273839;, + 5.004729;-1.267634; 2.273839;, + 5.004729;-1.811143; 2.273839;, + 5.711963;-1.811143; 0.014691;, + 5.711963;-1.267634; 0.014691;, + 5.711963;-1.267634; 2.273839;, + 5.711963;-1.811143; 2.273839;, + 5.711963;-1.267634; 0.014691;, + 6.255472;-1.267634; 0.014691;, + 6.255472;-1.267634; 2.273839;, + 5.711963;-1.267634; 2.273839;, + 6.255472;-1.267634; 0.014691;, + 6.255472;-1.811143; 0.014691;, + 6.255472;-1.811143; 2.273839;, + 6.255472;-1.267634; 2.273839;, + 6.255472;-1.811143; 0.014691;, + 5.711963;-1.811143; 0.014691;, + 5.711963;-1.811143; 2.273839;, + 6.255472;-1.811143; 2.273839;, + 6.255472;-1.811143; 0.014691;, + 6.255472;-1.267634; 0.014691;, + 5.711963;-1.267634; 0.014691;, + 5.711963;-1.811143; 0.014691;, + 5.711963;-1.811143; 2.273839;, + 5.711963;-1.267634; 2.273839;, + 6.255472;-1.267634; 2.273839;, + 6.255472;-1.811143; 2.273839;, + 5.126820;-2.416029; 2.539834;, + 5.126820;-2.272505; 2.415637;, + 5.126820;-1.768297; 3.669943;, + 5.126820;-2.041777; 3.794139;, + 5.126820;-2.272505; 2.415637;, + 5.623676;-2.272505; 2.415637;, + 5.623676;-1.768297; 3.669943;, + 5.126820;-1.768297; 3.669943;, + 5.623676;-2.272505; 2.415637;, + 5.623676;-2.416029; 2.539834;, + 5.623676;-2.046629; 3.794139;, + 5.623676;-1.768297; 3.669943;, + 5.623676;-2.416029; 2.539834;, + 5.126820;-2.416029; 2.539834;, + 5.126820;-2.041777; 3.794139;, + 5.623676;-2.046629; 3.794139;, + 5.623676;-2.416029; 2.539834;, + 5.623676;-2.272505; 2.415637;, + 5.126820;-2.272505; 2.415637;, + 5.126820;-2.416029; 2.539834;, + 5.126820;-2.041777; 3.794139;, + 5.126820;-1.768297; 3.669943;, + 5.623676;-1.768297; 3.669943;, + 5.623676;-2.046629; 3.794139;, + 4.485567;-0.007471; 1.982810;, + 4.485567; 1.788138; 1.982810;, + 4.485567; 1.788138; 3.877114;, + 4.485567;-0.007471; 3.877114;, + 4.485567; 1.788138; 1.982810;, + 6.264929; 1.788138; 1.982810;, + 6.264929; 1.788138; 3.877114;, + 4.485567; 1.788138; 3.877114;, + 6.264929;-0.007471; 1.982810;, + 6.264929;-1.824568; 2.265056;, + 6.264929;-1.824568; 3.877114;, + 6.264929;-0.007471; 3.877114;, + 6.264929;-1.824568; 2.265056;, + 4.485567;-1.824568; 2.265056;, + 4.485567;-1.824568; 3.877114;, + 6.264929;-1.824568; 3.877114;, + 6.264929;-0.007471; 1.982810;, + 6.264929; 1.788138; 1.982810;, + 4.485567; 1.788138; 1.982810;, + 4.485567;-0.007471; 1.982810;, + 4.485567;-0.007471; 3.877114;, + 4.485567; 1.788138; 3.877114;, + 6.264929; 1.788138; 3.877114;, + 6.264929;-0.007471; 3.877114;, + 4.924141; 1.861983; 2.879276;, + 4.924141; 3.050116; 4.163679;, + 4.924141; 2.256643; 4.897679;, + 4.924141; 1.068510; 3.613276;, + 4.924141; 3.050116; 4.163679;, + 5.826355; 3.050116; 4.163679;, + 5.826355; 2.256643; 4.897679;, + 4.924141; 2.256643; 4.897679;, + 5.826355; 3.050116; 4.163679;, + 5.826355; 1.861983; 2.879276;, + 5.826355; 1.068510; 3.613276;, + 5.826355; 2.256643; 4.897679;, + 5.826355; 1.861983; 2.879276;, + 4.924141; 1.861983; 2.879276;, + 4.924141; 1.068510; 3.613276;, + 5.826355; 1.068510; 3.613276;, + 5.826355; 1.861983; 2.879276;, + 5.826355; 3.050116; 4.163679;, + 4.924141; 3.050116; 4.163679;, + 4.924141; 1.861983; 2.879276;, + 4.924141; 1.068510; 3.613276;, + 4.924141; 2.256643; 4.897679;, + 5.826355; 2.256643; 4.897679;, + 5.826355; 1.068510; 3.613276;, + 4.485567;-1.824568; 3.877114;, + 4.485567;-0.007471; 3.877114;, + 6.264929;-0.007471; 3.877114;, + 6.264929;-1.824568; 3.877114;, + 6.264929;-1.824568; 2.265056;, + 6.264929;-0.007471; 1.982810;, + 4.485567;-0.007471; 1.982810;, + 4.485567;-1.824568; 2.265056;, + 6.264929; 1.788138; 1.982810;, + 6.264929;-0.007471; 1.982810;, + 6.264929;-0.007471; 3.877114;, + 6.264929; 1.788138; 3.877114;, + 4.485567;-1.824568; 2.265056;, + 4.485567;-0.007471; 1.982810;, + 4.485567;-0.007471; 3.877114;, + 4.485567;-1.824568; 3.877114;, + 4.960369; 2.198520; 4.144218;, + 4.960369; 3.947400; 4.144217;, + 4.960369; 3.947400; 4.961417;, + 4.960369; 2.198520; 4.961417;, + 4.960369; 3.947400; 4.144217;, + 5.790127; 3.947400; 4.144217;, + 5.790127; 3.947400; 4.961417;, + 4.960369; 3.947400; 4.961417;, + 5.790127; 3.947400; 4.144217;, + 5.790127; 2.198520; 4.144218;, + 5.790127; 2.198520; 4.961417;, + 5.790127; 3.947400; 4.961417;, + 5.790127; 2.198520; 4.144218;, + 4.960369; 2.198520; 4.144218;, + 4.960369; 2.198520; 4.961417;, + 5.790127; 2.198520; 4.961417;, + 5.790127; 2.198520; 4.144218;, + 5.790127; 3.947400; 4.144217;, + 4.960369; 3.947400; 4.144217;, + 4.960369; 2.198520; 4.144218;, + 4.960369; 2.198520; 4.961417;, + 4.960369; 3.947400; 4.961417;, + 5.790127; 3.947400; 4.961417;, + 5.790127; 2.198520; 4.961417;, + 5.832705; 2.367353; 4.901549;, + 5.832705; 2.235041; 4.901549;, + 5.813271; 2.235041; 5.427129;, + 5.813271; 2.367353; 5.427129;, + 5.832705; 2.235041; 4.901549;, + 5.516937; 2.235041; 4.889873;, + 5.497502; 2.235041; 5.415453;, + 5.813271; 2.235041; 5.427129;, + 5.516937; 2.235041; 4.889873;, + 5.516937; 2.367352; 4.889873;, + 5.497502; 2.367353; 5.415453;, + 5.497502; 2.235041; 5.415453;, + 5.516937; 2.367352; 4.889873;, + 5.832705; 2.367353; 4.901549;, + 5.813271; 2.367353; 5.427129;, + 5.497502; 2.367353; 5.415453;, + 5.516937; 2.367352; 4.889873;, + 5.516937; 2.235041; 4.889873;, + 5.832705; 2.235041; 4.901549;, + 5.832705; 2.367353; 4.901549;, + 5.813271; 2.367353; 5.427129;, + 5.813271; 2.235041; 5.427129;, + 5.497502; 2.235041; 5.415453;, + 5.497502; 2.367353; 5.415453;, + 5.220055; 2.367353; 4.896557;, + 5.220055; 2.235041; 4.896557;, + 5.226921; 2.235041; 5.422451;, + 5.226921; 2.367353; 5.422451;, + 5.220055; 2.235041; 4.896557;, + 4.904097; 2.235041; 4.900682;, + 4.910963; 2.235041; 5.426576;, + 5.226921; 2.235041; 5.422451;, + 4.904097; 2.235041; 4.900682;, + 4.904097; 2.367353; 4.900682;, + 4.910964; 2.367353; 5.426576;, + 4.910963; 2.235041; 5.426576;, + 4.904097; 2.367353; 4.900682;, + 5.220055; 2.367353; 4.896557;, + 5.226921; 2.367353; 5.422451;, + 4.910964; 2.367353; 5.426576;, + 4.904097; 2.367353; 4.900682;, + 4.904097; 2.235041; 4.900682;, + 5.220055; 2.235041; 4.896557;, + 5.220055; 2.367353; 4.896557;, + 5.226921; 2.367353; 5.422451;, + 5.226921; 2.235041; 5.422451;, + 4.910963; 2.235041; 5.426576;, + 4.910964; 2.367353; 5.426576;, + 5.338617; 1.345061; 3.910203;, + 5.338617; 1.868306; 4.420342;, + 5.338617; 1.633551; 4.661128;, + 5.338617; 1.110306; 4.150990;, + 5.475039; 2.103096; 4.649252;, + 5.338617; 2.103096; 4.649252;, + 5.338617; 1.868306; 4.420342;, + 5.475039; 1.868306; 4.420342;, + 5.475039; 1.868306; 4.420342;, + 5.475039; 1.345061; 3.910203;, + 5.475039; 1.110306; 4.150990;, + 5.475039; 1.633551; 4.661128;, + 5.475039; 1.345061; 3.910203;, + 5.338617; 1.345061; 3.910203;, + 5.338617; 1.110306; 4.150990;, + 5.475039; 1.110306; 4.150990;, + 5.475039; 1.345061; 3.910203;, + 5.475039; 1.868306; 4.420342;, + 5.338617; 1.868306; 4.420342;, + 5.338617; 1.345061; 3.910203;, + 5.338617; 1.110306; 4.150990;, + 5.338617; 1.633551; 4.661128;, + 5.475039; 1.633551; 4.661128;, + 5.475039; 1.110306; 4.150990;, + 5.430524; 2.314306; 4.819111;, + 5.294102; 2.314306; 4.819111;, + 5.338617; 2.103096; 4.649252;, + 5.475039; 2.103096; 4.649252;, + 5.338617; 1.868341; 4.890038;, + 5.475039; 1.868341; 4.890038;, + 5.475039; 1.633551; 4.661128;, + 5.338617; 1.633551; 4.661128;, + 5.475039; 1.868341; 4.890038;, + 5.475039; 2.103096; 4.649252;, + 5.475039; 1.868306; 4.420342;, + 5.475039; 1.633551; 4.661128;, + 5.338617; 1.633551; 4.661128;, + 5.338617; 1.868306; 4.420342;, + 5.338617; 2.103096; 4.649252;, + 5.338617; 1.868341; 4.890038;, + 5.430524; 2.565614; 4.868924;, + 5.294102; 2.565614; 4.868924;, + 5.294102; 2.314306; 4.819111;, + 5.430524; 2.314306; 4.819111;, + 5.338617; 1.868341; 4.890038;, + 5.338617; 2.103096; 4.649252;, + 5.294102; 2.314306; 4.819111;, + 5.294102; 2.277202; 5.153343;, + 5.294102; 2.277202; 5.153343;, + 5.430524; 2.277202; 5.153343;, + 5.475039; 1.868341; 4.890038;, + 5.338617; 1.868341; 4.890038;, + 5.430524; 2.277202; 5.153343;, + 5.430524; 2.314306; 4.819111;, + 5.475039; 2.103096; 4.649252;, + 5.475039; 1.868341; 4.890038;, + 5.294102; 2.565614; 4.868924;, + 5.430524; 2.565614; 4.868924;, + 5.430524; 2.697835; 5.178125;, + 5.294102; 2.697835; 5.178125;, + 5.430524; 2.697835; 5.178125;, + 5.430524; 2.565614; 4.868924;, + 5.430524; 2.314306; 4.819111;, + 5.430524; 2.277202; 5.153343;, + 5.294102; 2.277202; 5.153343;, + 5.294102; 2.314306; 4.819111;, + 5.294102; 2.565614; 4.868924;, + 5.294102; 2.697835; 5.178125;, + 5.294102; 2.697835; 5.178125;, + 5.430524; 2.697835; 5.178125;, + 5.430524; 2.277202; 5.153343;, + 5.294102; 2.277202; 5.153343;; + 82; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;; + MeshNormals { //Mesh Normals + 328; + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.927841;-0.372975;, + 0.000000; 0.927841;-0.372975;, + 0.000000; 0.927841;-0.372975;, + 0.000000; 0.927841;-0.372975;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.004682;-0.958750; 0.284212;, + -0.004682;-0.958750; 0.284212;, + -0.004682;-0.958750; 0.284212;, + -0.004682;-0.958750; 0.284212;, + 0.000000;-0.654356;-0.756187;, + 0.000000;-0.654356;-0.756187;, + 0.000000;-0.654356;-0.756187;, + 0.000000;-0.654356;-0.756187;, + 0.002005; 0.410470; 0.911872;, + 0.002005; 0.410470; 0.911872;, + 0.002005; 0.410470; 0.911872;, + 0.002005; 0.410470; 0.911872;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.679060; 0.734082;, + 0.000000; 0.679060; 0.734082;, + 0.000000; 0.679060; 0.734082;, + 0.000000; 0.679060; 0.734082;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.679060;-0.734082;, + 0.000000;-0.679060;-0.734082;, + 0.000000;-0.679060;-0.734082;, + 0.000000;-0.679060;-0.734082;, + 0.000000; 0.734082;-0.679061;, + 0.000000; 0.734082;-0.679061;, + 0.000000; 0.734082;-0.679061;, + 0.000000; 0.734082;-0.679061;, + 0.000000;-0.734082; 0.679061;, + 0.000000;-0.734082; 0.679061;, + 0.000000;-0.734082; 0.679061;, + 0.000000;-0.734082; 0.679061;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.153487;-0.988151;, + 0.000000;-0.153487;-0.988151;, + 0.000000;-0.153487;-0.988151;, + 0.000000;-0.153487;-0.988151;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.999317; 0.000000; 0.036952;, + 0.999317; 0.000000; 0.036952;, + 0.999317; 0.000000; 0.036952;, + 0.999317; 0.000000; 0.036952;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.999317; 0.000000;-0.036952;, + -0.999317; 0.000000;-0.036952;, + -0.999317; 0.000000;-0.036952;, + -0.999317; 0.000000;-0.036952;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.036952; 0.000000;-0.999317;, + 0.036952; 0.000000;-0.999317;, + 0.036952; 0.000000;-0.999317;, + 0.036952; 0.000000;-0.999317;, + -0.036951; 0.000000; 0.999317;, + -0.036951; 0.000000; 0.999317;, + -0.036951; 0.000000; 0.999317;, + -0.036951; 0.000000; 0.999317;, + 0.999915; 0.000000;-0.013055;, + 0.999915; 0.000000;-0.013055;, + 0.999915; 0.000000;-0.013055;, + 0.999915; 0.000000;-0.013055;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.999915; 0.000002; 0.013055;, + -0.999915; 0.000002; 0.013055;, + -0.999915; 0.000002; 0.013055;, + -0.999915; 0.000002; 0.013055;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.013055; 0.000000;-0.999915;, + -0.013055; 0.000000;-0.999915;, + -0.013055; 0.000000;-0.999915;, + -0.013055; 0.000000;-0.999915;, + 0.013054;-0.000002; 0.999915;, + 0.013054;-0.000002; 0.999915;, + 0.013054;-0.000002; 0.999915;, + 0.013054;-0.000002; 0.999915;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.698083;-0.716016;, + 0.000000; 0.698083;-0.716016;, + 0.000000; 0.698083;-0.716016;, + 0.000000; 0.698083;-0.716016;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.716017;-0.698083;, + 0.000000;-0.716017;-0.698083;, + 0.000000;-0.716017;-0.698083;, + 0.000000;-0.716017;-0.698083;, + 0.000000; 0.698083;-0.716017;, + 0.000000; 0.698083;-0.716017;, + 0.000000; 0.698083;-0.716017;, + 0.000000; 0.698083;-0.716017;, + 0.000000;-0.698082; 0.716018;, + 0.000000;-0.698082; 0.716018;, + 0.000000;-0.698082; 0.716018;, + 0.000000;-0.698082; 0.716018;, + 0.000000; 0.626696;-0.779264;, + 0.000000; 0.626696;-0.779264;, + 0.000000; 0.626696;-0.779264;, + 0.000000; 0.626696;-0.779264;, + 0.000000;-0.698083; 0.716016;, + 0.000000;-0.698083; 0.716016;, + 0.000000;-0.698083; 0.716016;, + 0.000000;-0.698083; 0.716016;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.194434;-0.980916;, + 0.000000; 0.194434;-0.980916;, + 0.000000; 0.194434;-0.980916;, + 0.000000; 0.194434;-0.980916;, + -0.992949;-0.107171;-0.050669;, + -0.992949;-0.107171;-0.050669;, + -0.992949;-0.107171;-0.050669;, + -0.992949;-0.107171;-0.050669;, + 0.000000;-0.541436; 0.840742;, + 0.000000;-0.541436; 0.840742;, + 0.000000;-0.541436; 0.840742;, + 0.000000;-0.541436; 0.840742;, + 0.992949; 0.107171; 0.050669;, + 0.992949; 0.107171; 0.050669;, + 0.992949; 0.107171; 0.050669;, + 0.992949; 0.107171; 0.050669;, + 0.000000; 0.919461;-0.393182;, + 0.000000; 0.919461;-0.393182;, + 0.000000; 0.919461;-0.393182;, + 0.000000; 0.919461;-0.393182;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.058814; 0.998269;, + 0.000000;-0.058814; 0.998269;, + 0.000000;-0.058814; 0.998269;, + 0.000000;-0.058814; 0.998269;; + 82; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 328; + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.294340; 0.094340;, + 0.267925; 0.094340;, + 0.267925; 0.037736;, + 0.294340; 0.037736;, + 0.264151; 0.090566;, + 0.237736; 0.090566;, + 0.237736; 0.037736;, + 0.264151; 0.037736;, + 0.294340; 0.090566;, + 0.267925; 0.090566;, + 0.267925; 0.037736;, + 0.294340; 0.037736;, + 0.264151; 0.090566;, + 0.237736; 0.090566;, + 0.237736; 0.037736;, + 0.264151; 0.037736;, + 0.294340; 0.007547;, + 0.294340; 0.033962;, + 0.267925; 0.033962;, + 0.267925; 0.007547;, + 0.237736; 0.033962;, + 0.237736; 0.011321;, + 0.264151; 0.011321;, + 0.264151; 0.033962;, + 0.320755; 0.220755;, + 0.320755; 0.324528;, + 0.226415; 0.316981;, + 0.226415; 0.213208;, + 0.109434; 0.007547;, + 0.218868; 0.007547;, + 0.218868; 0.101887;, + 0.109434; 0.101887;, + 0.320755; 0.213208;, + 0.320755; 0.316981;, + 0.222642; 0.316981;, + 0.222642; 0.213208;, + 0.422642; 0.101887;, + 0.313208; 0.101887;, + 0.313208; 0.007547;, + 0.422642; 0.007547;, + 0.430189; 0.213208;, + 0.430189; 0.320755;, + 0.320755; 0.324528;, + 0.320755; 0.220755;, + 0.109434; 0.213208;, + 0.109434; 0.101887;, + 0.218868; 0.101887;, + 0.218868; 0.213208;, + 0.309434; 0.335849;, + 0.309434; 0.460377;, + 0.237736; 0.460377;, + 0.237736; 0.335849;, + 0.305660; 0.464151;, + 0.305660; 0.532075;, + 0.226415; 0.532075;, + 0.226415; 0.464151;, + 0.305660; 0.532075;, + 0.305660; 0.660377;, + 0.241509; 0.660377;, + 0.241509; 0.532075;, + 0.011321; 0.532075;, + 0.011321; 0.464151;, + 0.094340; 0.464151;, + 0.094340; 0.532075;, + 0.452830; 0.532075;, + 0.328302; 0.532075;, + 0.328302; 0.464151;, + 0.452830; 0.464151;, + 0.090566; 0.464151;, + 0.222642; 0.464151;, + 0.222642; 0.532075;, + 0.094340; 0.532075;, + 0.109434; 0.324528;, + 0.109434; 0.213208;, + 0.218868; 0.213208;, + 0.218868; 0.324528;, + 0.430189; 0.105660;, + 0.430189; 0.213208;, + 0.320755; 0.220755;, + 0.320755; 0.116981;, + 0.320755; 0.109434;, + 0.320755; 0.213208;, + 0.222642; 0.213208;, + 0.222642; 0.109434;, + 0.320755; 0.116981;, + 0.320755; 0.220755;, + 0.226415; 0.213208;, + 0.226415; 0.109434;, + 0.544681; 0.870305;, + 0.544681; 0.437432;, + 0.686609; 0.437432;, + 0.686609; 0.870305;, + 0.686609; 0.295504;, + 0.847048; 0.295504;, + 0.847048; 0.437432;, + 0.686609; 0.437432;, + 0.982805; 0.437432;, + 0.982805; 0.870305;, + 0.847048; 0.870305;, + 0.847048; 0.437432;, + 0.847048; 0.981379;, + 0.686609; 0.981379;, + 0.686609; 0.870305;, + 0.847048; 0.870305;, + 0.847048; 0.011650;, + 0.847048; 0.295504;, + 0.686609; 0.295504;, + 0.686609; 0.011650;, + 0.686609; 0.870305;, + 0.686609; 0.437432;, + 0.847048; 0.437432;, + 0.847048; 0.870305;, + 0.011321; 0.362264;, + 0.011321; 0.350943;, + 0.094340; 0.350943;, + 0.094340; 0.362264;, + 0.011321; 0.449057;, + 0.011321; 0.407547;, + 0.094340; 0.407547;, + 0.094340; 0.449057;, + 0.120755; 0.449057;, + 0.094340; 0.449057;, + 0.094340; 0.381132;, + 0.120755; 0.381132;, + 0.011321; 0.407547;, + 0.011321; 0.362264;, + 0.094340; 0.362264;, + 0.094340; 0.407547;, + 0.124528; 0.407547;, + 0.135849; 0.407547;, + 0.135849; 0.449057;, + 0.124528; 0.449057;, + 0.135849; 0.350943;, + 0.135849; 0.362264;, + 0.094340; 0.362264;, + 0.094340; 0.350943;, + 0.094340; 0.350943;, + 0.094340; 0.362264;, + 0.011321; 0.362264;, + 0.011321; 0.350943;, + 0.094340; 0.407547;, + 0.094340; 0.449057;, + 0.011321; 0.449057;, + 0.011321; 0.407547;, + 0.120755; 0.449057;, + 0.094340; 0.449057;, + 0.094340; 0.381132;, + 0.120755; 0.381132;, + 0.094340; 0.362264;, + 0.094340; 0.407547;, + 0.011321; 0.407547;, + 0.011321; 0.362264;, + 0.135849; 0.350943;, + 0.135849; 0.362264;, + 0.094340; 0.362264;, + 0.094340; 0.350943;, + 0.135849; 0.449057;, + 0.124528; 0.449057;, + 0.124528; 0.407547;, + 0.135849; 0.407547;, + 0.353869; 0.965635;, + 0.363032; 0.880275;, + 0.402328; 0.884482;, + 0.393165; 0.969843;, + 0.459044; 0.845672;, + 0.475068; 0.845131;, + 0.476366; 0.883591;, + 0.460342; 0.884132;, + 0.449847; 0.880275;, + 0.459010; 0.965635;, + 0.419714; 0.969843;, + 0.410551; 0.884482;, + 0.499060; 0.930272;, + 0.515093; 0.930321;, + 0.514972; 0.969843;, + 0.498939; 0.969794;, + 0.463236; 0.969843;, + 0.460342; 0.884132;, + 0.476366; 0.883591;, + 0.479260; 0.969302;, + 0.498635; 0.747638;, + 0.496324; 0.831331;, + 0.480297; 0.830888;, + 0.482608; 0.747195;, + 0.463198; 0.813687;, + 0.479222; 0.813146;, + 0.475068; 0.845131;, + 0.459044; 0.845672;, + 0.495287; 0.868885;, + 0.479260; 0.868443;, + 0.480297; 0.830888;, + 0.496324; 0.831331;, + 0.406439; 0.846179;, + 0.445735; 0.841972;, + 0.449847; 0.880275;, + 0.410551; 0.884482;, + 0.402328; 0.884482;, + 0.363032; 0.880275;, + 0.367143; 0.841972;, + 0.406439; 0.846179;, + 0.462318; 0.787618;, + 0.478342; 0.787077;, + 0.479222; 0.813146;, + 0.463198; 0.813687;, + 0.406439; 0.846179;, + 0.367143; 0.841972;, + 0.367475; 0.809982;, + 0.401058; 0.789149;, + 0.498939; 0.926145;, + 0.482912; 0.925703;, + 0.479260; 0.868443;, + 0.495287; 0.868885;, + 0.411820; 0.789149;, + 0.445404; 0.809982;, + 0.445735; 0.841972;, + 0.406439; 0.846179;, + 0.478342; 0.787077;, + 0.462318; 0.787618;, + 0.461116; 0.752015;, + 0.477140; 0.751474;, + 0.440065; 0.748496;, + 0.459044; 0.783153;, + 0.445404; 0.809982;, + 0.411820; 0.789149;, + 0.401058; 0.789149;, + 0.367475; 0.809982;, + 0.353835; 0.783153;, + 0.372813; 0.748496;, + 0.497732; 0.969843;, + 0.481705; 0.969400;, + 0.482912; 0.925703;, + 0.498939; 0.926145;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 7; + 21; + 8; + } + SkinWeights { + "Armature_Bone_004"; + 61; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 176, + 177, + 178, + 179, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002447, + 0.000000, + 0.000000, + 0.001221, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.001221, + 0.002447, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.001221, + 0.000000, + 0.002447, + 0.001221, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.500354, 2.014556,-4.748270, 1.000000;; + } //End of Armature_Bone_004 Skin Weights + SkinWeights { + "Armature_Bone_005"; + 64; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000199, + 0.000000, + 0.010375, + 0.005223, + 0.000000, + 0.000000, + 0.000000, + 0.010375, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000399, + 0.000016, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000199, + 0.005223, + 0.010375, + 0.000000, + 0.000000, + 0.000016, + 0.005223, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000199, + 0.000399, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000399, + 0.000199, + 0.005223, + 0.000016; + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.303766, 0.952747, 0.000000, + -0.000000,-0.952747,-0.303766, 0.000000, + -5.396651, 3.051325, 2.996668, 1.000000;; + } //End of Armature_Bone_005 Skin Weights + SkinWeights { + "Armature_Body"; + 52; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 149, + 152, + 153, + 154, + 156, + 157, + 159, + 160, + 161, + 163, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183; + 0.999800, + 0.999998, + 0.989625, + 0.994777, + 0.999998, + 0.997553, + 0.990579, + 0.989625, + 0.995233, + 0.992923, + 0.996743, + 0.993652, + 0.992923, + 0.999601, + 0.999984, + 0.996743, + 0.995233, + 0.997553, + 0.999998, + 0.999800, + 0.994777, + 0.989625, + 0.990579, + 0.993652, + 0.054215, + 0.017137, + 0.017137, + 0.270764, + 0.041779, + 0.270764, + 0.054215, + 0.041779, + 0.270764, + 0.017137, + 0.054215, + 0.041779, + 0.999984, + 0.994777, + 0.993652, + 0.996743, + 0.992923, + 0.995233, + 0.999800, + 0.999601, + 0.997553, + 0.995233, + 0.993652, + 0.990579, + 0.999601, + 0.999800, + 0.994777, + 0.999984; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -5.396652, 1.634812,-3.244809, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_Bone_007"; + 168; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327; + 0.473249, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.491432, + 0.500000, + 0.500000, + 0.491432, + 0.364634, + 0.479111, + 0.500000, + 0.364634, + 0.473249, + 0.500000, + 0.479111, + 0.364634, + 0.491432, + 0.500000, + 0.473249, + 0.500000, + 0.500000, + 0.500000, + 0.479111, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.999674,-0.025538, 0.000000, + -0.000000, 0.025538, 0.999674, 0.000000, + -5.396651,-2.617884,-4.640213, 1.000000;; + } //End of Armature_Bone_007 Skin Weights + SkinWeights { + "Armature_Bone_006"; + 75; + 122, + 123, + 125, + 126, + 127, + 128, + 130, + 131, + 134, + 135, + 136, + 137, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 173, + 176, + 177, + 178, + 179, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.472536, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.491432, + 0.500000, + 0.500000, + 0.491432, + 0.364602, + 0.479110, + 0.500000, + 0.364602, + 0.472536, + 0.500000, + 0.479110, + 0.364602, + 0.491432, + 0.500000, + 0.472536, + 0.500000, + 0.500000, + 0.500000, + 0.479110, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.681913,-0.731433, 0.000000, + -0.000000, 0.731433, 0.681913, 0.000000, + -5.396652,-3.645211,-1.219408, 1.000000;; + } //End of Armature_Bone_006 Skin Weights + SkinWeights { + "Armature_Bone_002"; + 58; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 169, + 170, + 171, + 172, + 173, + 174, + 176, + 177, + 178, + 179, + 181, + 182; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000001, + 0.000002, + 0.000000, + 0.000000, + 0.000002, + 0.000000, + 0.009421, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.004725, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000002, + 0.000001, + 0.000000, + 0.000000, + 0.009421, + 0.004725, + 0.000000, + 0.004725, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.004725, + 0.009421, + 0.000001, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.500354, 1.960434,-6.014877, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Bone_003"; + 61; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 120, + 121, + 123, + 124, + 125, + 126, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 142, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.003547, + 0.007077, + 0.000000, + 0.000000, + 0.007077, + 0.000000, + 0.000000, + 0.000000, + 0.003547, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.007077, + 0.003547, + 0.000000, + 0.000000, + 0.000000, + 0.003547, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.545534, 2.367833,-4.748270, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_Bone_001"; + 52; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 120, + 123, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 139, + 140, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 177, + 178, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.003256, + 0.001623, + 0.000000, + 0.000000, + 0.000000, + 0.003256, + 0.000000, + 0.000000, + 0.000000, + 0.001623, + 0.000000, + 0.000000, + 0.001623, + 0.003256, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.001623, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.545534, 2.367833,-6.014877, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + } //End of Mesh Mesh + } //End of Cube_005 + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 102; + 0;3; -14.781387, 0.005959, 0.326405;;, + 1;3; -14.781387, 0.005959, 0.326405;;, + 2;3; -14.781387, 0.005959, 0.326405;;, + 3;3; -14.781387, 0.005959, 0.326405;;, + 4;3; -14.781387, 0.005959, 0.326405;;, + 5;3; -14.781387, 0.005959, 0.326405;;, + 6;3; -14.781387, 0.005959, 0.326405;;, + 7;3; -14.781387, 0.005959, 0.326405;;, + 8;3; -14.781387, 0.005959, 0.326405;;, + 9;3; -14.781387, 0.005959, 0.326405;;, + 10;3; -14.781387, 0.005959, 0.326405;;, + 11;3; -14.781387, 0.005959, 0.326405;;, + 12;3; -14.781387, 0.005959, 0.326405;;, + 13;3; -14.781387, 0.005959, 0.326405;;, + 14;3; -14.781387, 0.005959, 0.326405;;, + 15;3; -14.781387, 0.005959, 0.326405;;, + 16;3; -14.781387, 0.005959, 0.326405;;, + 17;3; -14.781387, 0.005959, 0.326405;;, + 18;3; -14.781387, 0.005959, 0.326405;;, + 19;3; -14.781387, 0.005959, 0.326405;;, + 20;3; -14.781387, 0.005959, 0.326405;;, + 21;3; -14.781387, 0.005959, 0.326405;;, + 22;3; -14.781387, 0.005959, 0.326405;;, + 23;3; -14.781387, 0.005959, 0.326405;;, + 24;3; -14.781387, 0.005959, 0.326405;;, + 25;3; -14.781387, 0.005959, 0.326405;;, + 26;3; -14.781387, 0.005959, 0.326405;;, + 27;3; -14.781387, 0.005959, 0.326405;;, + 28;3; -14.781387, 0.005959, 0.326405;;, + 29;3; -14.781387, 0.005959, 0.326405;;, + 30;3; -14.781387, 0.005959, 0.326405;;, + 31;3; -14.781387, 0.005959, 0.326405;;, + 32;3; -14.781387, 0.005959, 0.326405;;, + 33;3; -14.781387, 0.005959, 0.326405;;, + 34;3; -14.781387, 0.005959, 0.326405;;, + 35;3; -14.781387, 0.005959, 0.326405;;, + 36;3; -14.781387, 0.005959, 0.326405;;, + 37;3; -14.781387, 0.005959, 0.326405;;, + 38;3; -14.781387, 0.005959, 0.326405;;, + 39;3; -14.781387, 0.005959, 0.326405;;, + 40;3; -14.781387, 0.005959, 0.326405;;, + 41;3; -14.781387, 0.005959, 0.326405;;, + 42;3; -14.781387, 0.005959, 0.326405;;, + 43;3; -14.781387, 0.005959, 0.326405;;, + 44;3; -14.781387, 0.005959, 0.326405;;, + 45;3; -14.781387, 0.005959, 0.326405;;, + 46;3; -14.781387, 0.005959, 0.326405;;, + 47;3; -14.781387, 0.005959, 0.326405;;, + 48;3; -14.781387, 0.005959, 0.326405;;, + 49;3; -14.781387, 0.005959, 0.326405;;, + 50;3; -14.781387, 0.005959, 0.326405;;, + 51;3; -14.781387, 0.005959, 0.326405;;, + 52;3; -14.781387, 0.005959, 0.326405;;, + 53;3; -14.781387, 0.005959, 0.326405;;, + 54;3; -14.781387, 0.005959, 0.326405;;, + 55;3; -14.781387, 0.005959, 0.326405;;, + 56;3; -14.781387, 0.005959, 0.326405;;, + 57;3; -14.781387, 0.005959, 0.326405;;, + 58;3; -14.781387, 0.005959, 0.326405;;, + 59;3; -14.781387, 0.005959, 0.326405;;, + 60;3; -14.781387, 0.005959, 0.326405;;, + 61;3; -14.781387, 0.005959, 0.326405;;, + 62;3; -14.781387, 0.005959, 0.326405;;, + 63;3; -14.781387, 0.005959, 0.326405;;, + 64;3; -14.781387, 0.005959, 0.326405;;, + 65;3; -14.781387, 0.005959, 0.326405;;, + 66;3; -14.781387, 0.005959, 0.326405;;, + 67;3; -14.781387, 0.005959, 0.326405;;, + 68;3; -14.781387, 0.005959, 0.326405;;, + 69;3; -14.781387, 0.005959, 0.326405;;, + 70;3; -14.781387, 0.005959, 0.326405;;, + 71;3; -14.781387, 0.005959, 0.326405;;, + 72;3; -14.781387, 0.005959, 0.326405;;, + 73;3; -14.781387, 0.005959, 0.326405;;, + 74;3; -14.781387, 0.005959, 0.326405;;, + 75;3; -14.781387, 0.005959, 0.326405;;, + 76;3; -14.781387, 0.005959, 0.326405;;, + 77;3; -14.781387, 0.005959, 0.326405;;, + 78;3; -14.781387, 0.005959, 0.326405;;, + 79;3; -14.781387, 0.005959, 0.326405;;, + 80;3; -14.781387, 0.005959, 0.326405;;, + 81;3; -14.781387, 0.005959, 0.326405;;, + 82;3; -14.781387, 0.005959, 0.326405;;, + 83;3; -14.781387, 0.005959, 0.326405;;, + 84;3; -14.781387, 0.005959, 0.326405;;, + 85;3; -14.781387, 0.005959, 0.326405;;, + 86;3; -14.781387, 0.005959, 0.326405;;, + 87;3; -14.781387, 0.005959, 0.326405;;, + 88;3; -14.781387, 0.005959, 0.326405;;, + 89;3; -14.781387, 0.005959, 0.326405;;, + 90;3; -14.781387, 0.005959, 0.326405;;, + 91;3; -14.781387, 0.005959, 0.326405;;, + 92;3; -14.781387, 0.005959, 0.326405;;, + 93;3; -14.781387, 0.005959, 0.326405;;, + 94;3; -14.781387, 0.005959, 0.326405;;, + 95;3; -14.781387, 0.005959, 0.326405;;, + 96;3; -14.781387, 0.005959, 0.326405;;, + 97;3; -14.781387, 0.005959, 0.326405;;, + 98;3; -14.781387, 0.005959, 0.326405;;, + 99;3; -14.781387, 0.005959, 0.326405;;, + 100;3; -14.781387, 0.005959, 0.326405;;, + 101;3; -14.781387, 0.005959, 0.326405;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 2.736834, 2.736834, 2.736834;;, + 1;3; 2.736834, 2.736834, 2.736834;;, + 2;3; 2.736834, 2.736834, 2.736834;;, + 3;3; 2.736834, 2.736834, 2.736834;;, + 4;3; 2.736834, 2.736834, 2.736834;;, + 5;3; 2.736834, 2.736834, 2.736834;;, + 6;3; 2.736834, 2.736834, 2.736834;;, + 7;3; 2.736834, 2.736834, 2.736834;;, + 8;3; 2.736834, 2.736834, 2.736834;;, + 9;3; 2.736834, 2.736834, 2.736834;;, + 10;3; 2.736834, 2.736834, 2.736834;;, + 11;3; 2.736834, 2.736834, 2.736834;;, + 12;3; 2.736834, 2.736834, 2.736834;;, + 13;3; 2.736834, 2.736834, 2.736834;;, + 14;3; 2.736834, 2.736834, 2.736834;;, + 15;3; 2.736834, 2.736834, 2.736834;;, + 16;3; 2.736834, 2.736834, 2.736834;;, + 17;3; 2.736834, 2.736834, 2.736834;;, + 18;3; 2.736834, 2.736834, 2.736834;;, + 19;3; 2.736834, 2.736834, 2.736834;;, + 20;3; 2.736834, 2.736834, 2.736834;;, + 21;3; 2.736834, 2.736834, 2.736834;;, + 22;3; 2.736834, 2.736834, 2.736834;;, + 23;3; 2.736834, 2.736834, 2.736834;;, + 24;3; 2.736834, 2.736834, 2.736834;;, + 25;3; 2.736834, 2.736834, 2.736834;;, + 26;3; 2.736834, 2.736834, 2.736834;;, + 27;3; 2.736834, 2.736834, 2.736834;;, + 28;3; 2.736834, 2.736834, 2.736834;;, + 29;3; 2.736834, 2.736834, 2.736834;;, + 30;3; 2.736834, 2.736834, 2.736834;;, + 31;3; 2.736834, 2.736834, 2.736834;;, + 32;3; 2.736834, 2.736834, 2.736834;;, + 33;3; 2.736834, 2.736834, 2.736834;;, + 34;3; 2.736834, 2.736834, 2.736834;;, + 35;3; 2.736834, 2.736834, 2.736834;;, + 36;3; 2.736834, 2.736834, 2.736834;;, + 37;3; 2.736834, 2.736834, 2.736834;;, + 38;3; 2.736834, 2.736834, 2.736834;;, + 39;3; 2.736834, 2.736834, 2.736834;;, + 40;3; 2.736834, 2.736834, 2.736834;;, + 41;3; 2.736834, 2.736834, 2.736834;;, + 42;3; 2.736834, 2.736834, 2.736834;;, + 43;3; 2.736834, 2.736834, 2.736834;;, + 44;3; 2.736834, 2.736834, 2.736834;;, + 45;3; 2.736834, 2.736834, 2.736834;;, + 46;3; 2.736834, 2.736834, 2.736834;;, + 47;3; 2.736834, 2.736834, 2.736834;;, + 48;3; 2.736834, 2.736834, 2.736834;;, + 49;3; 2.736834, 2.736834, 2.736834;;, + 50;3; 2.736834, 2.736834, 2.736834;;, + 51;3; 2.736834, 2.736834, 2.736834;;, + 52;3; 2.736834, 2.736834, 2.736834;;, + 53;3; 2.736834, 2.736834, 2.736834;;, + 54;3; 2.736834, 2.736834, 2.736834;;, + 55;3; 2.736834, 2.736834, 2.736834;;, + 56;3; 2.736834, 2.736834, 2.736834;;, + 57;3; 2.736834, 2.736834, 2.736834;;, + 58;3; 2.736834, 2.736834, 2.736834;;, + 59;3; 2.736834, 2.736834, 2.736834;;, + 60;3; 2.736834, 2.736834, 2.736834;;, + 61;3; 2.736834, 2.736834, 2.736834;;, + 62;3; 2.736834, 2.736834, 2.736834;;, + 63;3; 2.736834, 2.736834, 2.736834;;, + 64;3; 2.736834, 2.736834, 2.736834;;, + 65;3; 2.736834, 2.736834, 2.736834;;, + 66;3; 2.736834, 2.736834, 2.736834;;, + 67;3; 2.736834, 2.736834, 2.736834;;, + 68;3; 2.736834, 2.736834, 2.736834;;, + 69;3; 2.736834, 2.736834, 2.736834;;, + 70;3; 2.736834, 2.736834, 2.736834;;, + 71;3; 2.736834, 2.736834, 2.736834;;, + 72;3; 2.736834, 2.736834, 2.736834;;, + 73;3; 2.736834, 2.736834, 2.736834;;, + 74;3; 2.736834, 2.736834, 2.736834;;, + 75;3; 2.736834, 2.736834, 2.736834;;, + 76;3; 2.736834, 2.736834, 2.736834;;, + 77;3; 2.736834, 2.736834, 2.736834;;, + 78;3; 2.736834, 2.736834, 2.736834;;, + 79;3; 2.736834, 2.736834, 2.736834;;, + 80;3; 2.736834, 2.736834, 2.736834;;, + 81;3; 2.736834, 2.736834, 2.736834;;, + 82;3; 2.736834, 2.736834, 2.736834;;, + 83;3; 2.736834, 2.736834, 2.736834;;, + 84;3; 2.736834, 2.736834, 2.736834;;, + 85;3; 2.736834, 2.736834, 2.736834;;, + 86;3; 2.736834, 2.736834, 2.736834;;, + 87;3; 2.736834, 2.736834, 2.736834;;, + 88;3; 2.736834, 2.736834, 2.736834;;, + 89;3; 2.736834, 2.736834, 2.736834;;, + 90;3; 2.736834, 2.736834, 2.736834;;, + 91;3; 2.736834, 2.736834, 2.736834;;, + 92;3; 2.736834, 2.736834, 2.736834;;, + 93;3; 2.736834, 2.736834, 2.736834;;, + 94;3; 2.736834, 2.736834, 2.736834;;, + 95;3; 2.736834, 2.736834, 2.736834;;, + 96;3; 2.736834, 2.736834, 2.736834;;, + 97;3; 2.736834, 2.736834, 2.736834;;, + 98;3; 2.736834, 2.736834, 2.736834;;, + 99;3; 2.736834, 2.736834, 2.736834;;, + 100;3; 2.736834, 2.736834, 2.736834;;, + 101;3; 2.736834, 2.736834, 2.736834;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 102; + 0;3; 5.378092,-1.647068, 3.136816;;, + 1;3; 5.378092,-1.647068, 3.136816;;, + 2;3; 5.378092,-1.647068, 3.136816;;, + 3;3; 5.378092,-1.647068, 3.136816;;, + 4;3; 5.378092,-1.647068, 3.136816;;, + 5;3; 5.378092,-1.647068, 3.136816;;, + 6;3; 5.378092,-1.647068, 3.136816;;, + 7;3; 5.378092,-1.647068, 3.136816;;, + 8;3; 5.378092,-1.647068, 3.136816;;, + 9;3; 5.378092,-1.647068, 3.136816;;, + 10;3; 5.378092,-1.647068, 3.136816;;, + 11;3; 5.378092,-1.647068, 3.136816;;, + 12;3; 5.378092,-1.647068, 3.136816;;, + 13;3; 5.378092,-1.647068, 3.136816;;, + 14;3; 5.378092,-1.647068, 3.136816;;, + 15;3; 5.378092,-1.647068, 3.136816;;, + 16;3; 5.378092,-1.647068, 3.136816;;, + 17;3; 5.378092,-1.647068, 3.136816;;, + 18;3; 5.378092,-1.647068, 3.136816;;, + 19;3; 5.378092,-1.647068, 3.136816;;, + 20;3; 5.378092,-1.647068, 3.136816;;, + 21;3; 5.378092,-1.647068, 3.136816;;, + 22;3; 5.378092,-1.647068, 3.136816;;, + 23;3; 5.378092,-1.647068, 3.136816;;, + 24;3; 5.378092,-1.647068, 3.136816;;, + 25;3; 5.378092,-1.647068, 3.136816;;, + 26;3; 5.378092,-1.647068, 3.136816;;, + 27;3; 5.378092,-1.647068, 3.136816;;, + 28;3; 5.378092,-1.647068, 3.136816;;, + 29;3; 5.378092,-1.647068, 3.136816;;, + 30;3; 5.378092,-1.647068, 3.136816;;, + 31;3; 5.378092,-1.647068, 3.136816;;, + 32;3; 5.378092,-1.647068, 3.136816;;, + 33;3; 5.378092,-1.647068, 3.136816;;, + 34;3; 5.378092,-1.647068, 3.136816;;, + 35;3; 5.378092,-1.647068, 3.136816;;, + 36;3; 5.378092,-1.647068, 3.136816;;, + 37;3; 5.378092,-1.647068, 3.136816;;, + 38;3; 5.378092,-1.647068, 3.136816;;, + 39;3; 5.378092,-1.647068, 3.136816;;, + 40;3; 5.378092,-1.647068, 3.136816;;, + 41;3; 5.378092,-1.647068, 3.136816;;, + 42;3; 5.378092,-1.647068, 3.136816;;, + 43;3; 5.378092,-1.647068, 3.136816;;, + 44;3; 5.378092,-1.647068, 3.136816;;, + 45;3; 5.378092,-1.647068, 3.136816;;, + 46;3; 5.378092,-1.647068, 3.136816;;, + 47;3; 5.378092,-1.647068, 3.136816;;, + 48;3; 5.378092,-1.647068, 3.136816;;, + 49;3; 5.378092,-1.647068, 3.136816;;, + 50;3; 5.378092,-1.647068, 3.136816;;, + 51;3; 5.378092,-1.647068, 3.136816;;, + 52;3; 5.378092,-1.647068, 3.136816;;, + 53;3; 5.378092,-1.647068, 3.136816;;, + 54;3; 5.378092,-1.647068, 3.136816;;, + 55;3; 5.378092,-1.647068, 3.136816;;, + 56;3; 5.378092,-1.647068, 3.136816;;, + 57;3; 5.378092,-1.647068, 3.136816;;, + 58;3; 5.378092,-1.647068, 3.136816;;, + 59;3; 5.378092,-1.647068, 3.136816;;, + 60;3; 5.378092,-1.647068, 3.136816;;, + 61;3; 5.378092,-1.647068, 3.136816;;, + 62;3; 5.378092,-1.647068, 3.136816;;, + 63;3; 5.378092,-1.647068, 3.136816;;, + 64;3; 5.378092,-1.647068, 3.136816;;, + 65;3; 5.378092,-1.647068, 3.136816;;, + 66;3; 5.378092,-1.647068, 3.136816;;, + 67;3; 5.378092,-1.647068, 3.136816;;, + 68;3; 5.378092,-1.647068, 3.136816;;, + 69;3; 5.378092,-1.647068, 3.136816;;, + 70;3; 5.378092,-1.647068, 3.136816;;, + 71;3; 5.378092,-1.647068, 3.136816;;, + 72;3; 5.378092,-1.647068, 3.136816;;, + 73;3; 5.378092,-1.647068, 3.136816;;, + 74;3; 5.378092,-1.647068, 3.136816;;, + 75;3; 5.378092,-1.647068, 3.136816;;, + 76;3; 5.378092,-1.647068, 3.136816;;, + 77;3; 5.378092,-1.647068, 3.136816;;, + 78;3; 5.378092,-1.647068, 3.136816;;, + 79;3; 5.378092,-1.647068, 3.136816;;, + 80;3; 5.378092,-1.647068, 3.136816;;, + 81;3; 5.378092,-1.647068, 3.136816;;, + 82;3; 5.378092,-1.647068, 3.136816;;, + 83;3; 5.378092,-1.647068, 3.136816;;, + 84;3; 5.378092,-1.647068, 3.136816;;, + 85;3; 5.378092,-1.647068, 3.136816;;, + 86;3; 5.378092,-1.647068, 3.136816;;, + 87;3; 5.378092,-1.647068, 3.136816;;, + 88;3; 5.378092,-1.647068, 3.136816;;, + 89;3; 5.378092,-1.647068, 3.136816;;, + 90;3; 5.378092,-1.647068, 3.136816;;, + 91;3; 5.378092,-1.647068, 3.136816;;, + 92;3; 5.378092,-1.647068, 3.136816;;, + 93;3; 5.378092,-1.647068, 3.136816;;, + 94;3; 5.378092,-1.647068, 3.136816;;, + 95;3; 5.378092,-1.647068, 3.136816;;, + 96;3; 5.378092,-1.647068, 3.136816;;, + 97;3; 5.378092,-1.647068, 3.136816;;, + 98;3; 5.378092,-1.647068, 3.136816;;, + 99;3; 5.378092,-1.647068, 3.136816;;, + 100;3; 5.378092,-1.647068, 3.136816;;, + 101;3; 5.378092,-1.647068, 3.136816;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -0.989440, 0.034590, 0.000000, 0.000000;;, + 56;4; -0.958708, 0.135162, 0.000000, 0.000000;;, + 57;4; -0.914532, 0.279621, 0.000000, 0.000000;;, + 58;4; -0.870356, 0.424055, 0.000000, 0.000000;;, + 59;4; -0.839626, 0.524582, 0.000000, 0.000000;;, + 60;4; -0.829066, 0.559151, 0.000000, 0.000000;;, + 61;4; -0.829257, 0.558385, 0.000000, 0.000000;;, + 62;4; -0.830161, 0.555010, 0.000000, 0.000000;;, + 63;4; -0.832398, 0.547059, 0.000000, 0.000000;;, + 64;4; -0.836584, 0.532654, 0.000000, 0.000000;;, + 65;4; -0.843026, 0.510954, 0.000000, 0.000000;;, + 66;4; -0.851591, 0.482521, 0.000000, 0.000000;;, + 67;4; -0.861866, 0.448750, 0.000000, 0.000000;;, + 68;4; -0.875730, 0.403482, 0.000000, 0.000000;;, + 69;4; -0.895080, 0.340508, 0.000000, 0.000000;;, + 70;4; -0.918633, 0.264010, 0.000000, 0.000000;;, + 71;4; -0.943785, 0.182404, 0.000000, 0.000000;;, + 72;4; -0.967043, 0.106967, 0.000000, 0.000000;;, + 73;4; -0.985199, 0.048062, 0.000000, 0.000000;;, + 74;4; -0.996347, 0.011867, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 102; + 0;3; 0.618225, 0.089278,-0.876976;;, + 1;3; 0.618225, 0.089278,-0.876976;;, + 2;3; 0.618225, 0.089278,-0.876976;;, + 3;3; 0.618225, 0.089278,-0.876976;;, + 4;3; 0.618225, 0.089278,-0.876976;;, + 5;3; 0.618225, 0.089278,-0.876976;;, + 6;3; 0.618225, 0.089278,-0.876976;;, + 7;3; 0.618225, 0.089278,-0.876976;;, + 8;3; 0.618225, 0.089278,-0.876976;;, + 9;3; 0.618225, 0.089278,-0.876976;;, + 10;3; 0.618225, 0.089278,-0.876976;;, + 11;3; 0.618225, 0.089278,-0.876976;;, + 12;3; 0.618225, 0.089278,-0.876976;;, + 13;3; 0.618225, 0.089278,-0.876976;;, + 14;3; 0.618225, 0.089278,-0.876976;;, + 15;3; 0.618225, 0.089278,-0.876976;;, + 16;3; 0.618225, 0.089278,-0.876976;;, + 17;3; 0.618225, 0.089278,-0.876976;;, + 18;3; 0.618225, 0.089278,-0.876976;;, + 19;3; 0.618225, 0.089278,-0.876976;;, + 20;3; 0.618225, 0.089278,-0.876976;;, + 21;3; 0.618225, 0.089278,-0.876976;;, + 22;3; 0.618225, 0.089278,-0.876976;;, + 23;3; 0.618225, 0.089278,-0.876976;;, + 24;3; 0.618225, 0.089278,-0.876976;;, + 25;3; 0.618225, 0.089278,-0.876976;;, + 26;3; 0.618225, 0.089278,-0.876976;;, + 27;3; 0.618225, 0.089278,-0.876976;;, + 28;3; 0.618225, 0.089278,-0.876976;;, + 29;3; 0.618225, 0.089278,-0.876976;;, + 30;3; 0.618225, 0.089278,-0.876976;;, + 31;3; 0.618225, 0.089278,-0.876976;;, + 32;3; 0.618225, 0.089278,-0.876976;;, + 33;3; 0.618225, 0.089278,-0.876976;;, + 34;3; 0.618225, 0.089278,-0.876976;;, + 35;3; 0.618225, 0.089278,-0.876976;;, + 36;3; 0.618225, 0.089278,-0.876976;;, + 37;3; 0.618225, 0.089278,-0.876976;;, + 38;3; 0.618225, 0.089278,-0.876976;;, + 39;3; 0.618225, 0.089278,-0.876976;;, + 40;3; 0.618225, 0.089278,-0.876976;;, + 41;3; 0.618225, 0.089278,-0.876976;;, + 42;3; 0.618225, 0.089278,-0.876976;;, + 43;3; 0.618225, 0.089278,-0.876976;;, + 44;3; 0.618225, 0.089278,-0.876976;;, + 45;3; 0.618225, 0.089278,-0.876976;;, + 46;3; 0.618225, 0.089278,-0.876976;;, + 47;3; 0.618225, 0.089278,-0.876976;;, + 48;3; 0.618225, 0.089278,-0.876976;;, + 49;3; 0.618225, 0.089278,-0.876976;;, + 50;3; 0.618225, 0.089278,-0.876976;;, + 51;3; 0.618225, 0.089278,-0.876976;;, + 52;3; 0.618225, 0.089278,-0.876976;;, + 53;3; 0.618225, 0.089278,-0.876976;;, + 54;3; 0.618225, 0.089278,-0.876976;;, + 55;3; 0.618225, 0.089278,-0.876976;;, + 56;3; 0.618225, 0.089278,-0.876976;;, + 57;3; 0.618225, 0.089278,-0.876976;;, + 58;3; 0.618225, 0.089278,-0.876976;;, + 59;3; 0.618225, 0.089278,-0.876976;;, + 60;3; 0.618225, 0.089278,-0.876976;;, + 61;3; 0.618225, 0.089278,-0.876976;;, + 62;3; 0.618226, 0.089278,-0.876976;;, + 63;3; 0.618225, 0.089278,-0.876976;;, + 64;3; 0.618225, 0.089278,-0.876976;;, + 65;3; 0.618225, 0.089278,-0.876976;;, + 66;3; 0.618225, 0.089278,-0.876976;;, + 67;3; 0.618225, 0.089278,-0.876976;;, + 68;3; 0.618225, 0.089278,-0.876976;;, + 69;3; 0.618225, 0.089278,-0.876976;;, + 70;3; 0.618225, 0.089278,-0.876976;;, + 71;3; 0.618225, 0.089278,-0.876976;;, + 72;3; 0.618225, 0.089278,-0.876976;;, + 73;3; 0.618226, 0.089278,-0.876976;;, + 74;3; 0.618225, 0.089278,-0.876976;;, + 75;3; 0.618225, 0.089278,-0.876976;;, + 76;3; 0.618225, 0.089278,-0.876976;;, + 77;3; 0.618225, 0.089278,-0.876976;;, + 78;3; 0.618225, 0.089278,-0.876976;;, + 79;3; 0.618225, 0.089278,-0.876976;;, + 80;3; 0.618225, 0.089278,-0.876976;;, + 81;3; 0.618225, 0.089278,-0.876976;;, + 82;3; 0.618225, 0.089278,-0.876976;;, + 83;3; 0.618225, 0.089278,-0.876976;;, + 84;3; 0.618225, 0.089278,-0.876976;;, + 85;3; 0.618225, 0.089278,-0.876976;;, + 86;3; 0.618225, 0.089278,-0.876976;;, + 87;3; 0.618225, 0.089278,-0.876976;;, + 88;3; 0.618225, 0.089278,-0.876976;;, + 89;3; 0.618225, 0.089278,-0.876976;;, + 90;3; 0.618225, 0.089278,-0.876976;;, + 91;3; 0.618225, 0.089278,-0.876976;;, + 92;3; 0.618225, 0.089278,-0.876976;;, + 93;3; 0.618225, 0.089278,-0.876976;;, + 94;3; 0.618225, 0.089278,-0.876976;;, + 95;3; 0.618225, 0.089278,-0.876976;;, + 96;3; 0.618225, 0.089278,-0.876976;;, + 97;3; 0.618225, 0.089278,-0.876976;;, + 98;3; 0.618225, 0.089278,-0.876976;;, + 99;3; 0.618225, 0.089278,-0.876976;;, + 100;3; 0.618225, 0.089278,-0.876976;;, + 101;3; 0.618225, 0.089278,-0.876976;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.478256,-0.511844, 0.478256,-0.511844;;, + 56;4; -0.415019,-0.546269, 0.415019,-0.546269;;, + 57;4; -0.324169,-0.595704, 0.324169,-0.595704;;, + 58;4; -0.233331,-0.645127, 0.233331,-0.645127;;, + 59;4; -0.170118,-0.679530, 0.170118,-0.679529;;, + 60;4; -0.148386,-0.691362, 0.148385,-0.691362;;, + 61;4; -0.149170,-0.690628, 0.149170,-0.690628;;, + 62;4; -0.152167,-0.688052, 0.152167,-0.688052;;, + 63;4; -0.158443,-0.683100, 0.158443,-0.683100;;, + 64;4; -0.168844,-0.675511, 0.168844,-0.675511;;, + 65;4; -0.183500,-0.665525, 0.183500,-0.665525;;, + 66;4; -0.201765,-0.653774, 0.201765,-0.653774;;, + 67;4; -0.222659,-0.640955, 0.222659,-0.640955;;, + 68;4; -0.250378,-0.625186, 0.250378,-0.625186;;, + 69;4; -0.289169,-0.604535, 0.289169,-0.604535;;, + 70;4; -0.336449,-0.580314, 0.336449,-0.580314;;, + 71;4; -0.386978,-0.555058, 0.386978,-0.555058;;, + 72;4; -0.433724,-0.532077, 0.433724,-0.532077;;, + 73;4; -0.470228,-0.514335, 0.470228,-0.514335;;, + 74;4; -0.492651,-0.503524, 0.492651,-0.503524;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.495704,-0.503768, 0.495704,-0.503768;;, + 77;4; -0.483200,-0.514733, 0.483200,-0.514733;;, + 78;4; -0.465228,-0.530495, 0.465228,-0.530495;;, + 79;4; -0.447256,-0.546255, 0.447256,-0.546255;;, + 80;4; -0.434755,-0.557218, 0.434755,-0.557218;;, + 81;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 82;4; -0.432466,-0.558979, 0.432466,-0.558979;;, + 83;4; -0.438522,-0.552923, 0.438522,-0.552923;;, + 84;4; -0.448509,-0.542936, 0.448509,-0.542936;;, + 85;4; -0.461988,-0.529456, 0.461988,-0.529456;;, + 86;4; -0.478130,-0.513315, 0.478130,-0.513315;;, + 87;4; -0.495723,-0.495722, 0.495722,-0.495722;;, + 88;4; -0.513315,-0.478130, 0.513315,-0.478130;;, + 89;4; -0.529457,-0.461988, 0.529457,-0.461988;;, + 90;4; -0.542936,-0.448509, 0.542936,-0.448509;;, + 91;4; -0.552923,-0.438522, 0.552923,-0.438522;;, + 92;4; -0.558979,-0.432466, 0.558979,-0.432466;;, + 93;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 94;4; -0.557219,-0.434755, 0.557219,-0.434755;;, + 95;4; -0.546256,-0.447255, 0.546256,-0.447255;;, + 96;4; -0.530497,-0.465226, 0.530496,-0.465226;;, + 97;4; -0.514735,-0.483199, 0.514735,-0.483199;;, + 98;4; -0.503769,-0.495703, 0.503769,-0.495703;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 102; + 0;3; 0.618225, 3.135167,-1.284375;;, + 1;3; 0.618225, 3.135167,-1.284375;;, + 2;3; 0.618225, 3.135167,-1.284375;;, + 3;3; 0.618225, 3.135167,-1.284375;;, + 4;3; 0.618225, 3.135167,-1.284375;;, + 5;3; 0.618225, 3.135167,-1.284375;;, + 6;3; 0.618225, 3.135167,-1.284375;;, + 7;3; 0.618225, 3.135167,-1.284375;;, + 8;3; 0.618225, 3.135167,-1.284375;;, + 9;3; 0.618225, 3.135167,-1.284375;;, + 10;3; 0.618225, 3.135167,-1.284375;;, + 11;3; 0.618225, 3.135167,-1.284375;;, + 12;3; 0.618225, 3.135167,-1.284375;;, + 13;3; 0.618225, 3.135167,-1.284375;;, + 14;3; 0.618225, 3.135167,-1.284375;;, + 15;3; 0.618225, 3.135167,-1.284375;;, + 16;3; 0.618225, 3.135167,-1.284375;;, + 17;3; 0.618225, 3.135167,-1.284375;;, + 18;3; 0.618225, 3.135167,-1.284375;;, + 19;3; 0.618225, 3.135167,-1.284375;;, + 20;3; 0.618225, 3.135167,-1.284375;;, + 21;3; 0.618225, 3.135167,-1.284375;;, + 22;3; 0.618225, 3.135167,-1.284375;;, + 23;3; 0.618225, 3.135167,-1.284375;;, + 24;3; 0.618225, 3.135167,-1.284375;;, + 25;3; 0.618225, 3.135167,-1.284375;;, + 26;3; 0.618225, 3.135167,-1.284375;;, + 27;3; 0.618225, 3.135167,-1.284375;;, + 28;3; 0.618225, 3.135167,-1.284375;;, + 29;3; 0.618225, 3.135167,-1.284375;;, + 30;3; 0.618225, 3.135167,-1.284375;;, + 31;3; 0.618225, 3.135167,-1.284375;;, + 32;3; 0.618225, 3.135167,-1.284375;;, + 33;3; 0.618225, 3.135167,-1.284375;;, + 34;3; 0.618225, 3.135167,-1.284375;;, + 35;3; 0.618225, 3.135167,-1.284375;;, + 36;3; 0.618225, 3.135167,-1.284375;;, + 37;3; 0.618225, 3.135167,-1.284375;;, + 38;3; 0.618225, 3.135167,-1.284375;;, + 39;3; 0.618225, 3.135167,-1.284375;;, + 40;3; 0.618225, 3.135167,-1.284375;;, + 41;3; 0.618225, 3.135167,-1.284375;;, + 42;3; 0.618225, 3.135167,-1.284375;;, + 43;3; 0.618225, 3.135167,-1.284375;;, + 44;3; 0.618225, 3.135167,-1.284375;;, + 45;3; 0.618225, 3.135167,-1.284375;;, + 46;3; 0.618225, 3.135167,-1.284375;;, + 47;3; 0.618225, 3.135167,-1.284375;;, + 48;3; 0.618225, 3.135167,-1.284375;;, + 49;3; 0.618225, 3.135167,-1.284375;;, + 50;3; 0.618225, 3.135167,-1.284375;;, + 51;3; 0.618225, 3.135167,-1.284375;;, + 52;3; 0.618225, 3.135167,-1.284375;;, + 53;3; 0.618225, 3.135167,-1.284375;;, + 54;3; 0.618225, 3.135167,-1.284375;;, + 55;3; 0.618225, 3.135167,-1.284375;;, + 56;3; 0.618225, 3.135167,-1.284375;;, + 57;3; 0.618225, 3.135167,-1.284375;;, + 58;3; 0.618225, 3.135167,-1.284375;;, + 59;3; 0.618225, 3.135167,-1.284375;;, + 60;3; 0.618225, 3.135167,-1.284375;;, + 61;3; 0.618225, 3.135167,-1.284375;;, + 62;3; 0.618226, 3.135167,-1.284375;;, + 63;3; 0.618225, 3.135167,-1.284375;;, + 64;3; 0.618225, 3.135166,-1.284375;;, + 65;3; 0.618225, 3.135167,-1.284375;;, + 66;3; 0.618225, 3.135167,-1.284375;;, + 67;3; 0.618225, 3.135167,-1.284375;;, + 68;3; 0.618225, 3.135167,-1.284375;;, + 69;3; 0.618225, 3.135167,-1.284375;;, + 70;3; 0.618225, 3.135167,-1.284375;;, + 71;3; 0.618225, 3.135167,-1.284375;;, + 72;3; 0.618225, 3.135167,-1.284375;;, + 73;3; 0.618226, 3.135167,-1.284375;;, + 74;3; 0.618225, 3.135167,-1.284375;;, + 75;3; 0.618225, 3.135167,-1.284375;;, + 76;3; 0.618225, 3.135167,-1.284375;;, + 77;3; 0.618225, 3.135167,-1.284375;;, + 78;3; 0.618225, 3.135167,-1.284375;;, + 79;3; 0.618225, 3.135167,-1.284375;;, + 80;3; 0.618225, 3.135167,-1.284375;;, + 81;3; 0.618225, 3.135167,-1.284375;;, + 82;3; 0.618225, 3.135167,-1.284375;;, + 83;3; 0.618225, 3.135167,-1.284375;;, + 84;3; 0.618225, 3.135167,-1.284375;;, + 85;3; 0.618225, 3.135167,-1.284375;;, + 86;3; 0.618225, 3.135167,-1.284375;;, + 87;3; 0.618225, 3.135167,-1.284375;;, + 88;3; 0.618225, 3.135167,-1.284375;;, + 89;3; 0.618225, 3.135167,-1.284375;;, + 90;3; 0.618225, 3.135167,-1.284375;;, + 91;3; 0.618225, 3.135167,-1.284375;;, + 92;3; 0.618225, 3.135167,-1.284375;;, + 93;3; 0.618225, 3.135167,-1.284375;;, + 94;3; 0.618225, 3.135167,-1.284375;;, + 95;3; 0.618225, 3.135167,-1.284375;;, + 96;3; 0.618225, 3.135167,-1.284375;;, + 97;3; 0.618225, 3.135167,-1.284375;;, + 98;3; 0.618225, 3.135167,-1.284375;;, + 99;3; 0.618225, 3.135167,-1.284375;;, + 100;3; 0.618225, 3.135167,-1.284375;;, + 101;3; 0.618225, 3.135167,-1.284375;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.501697,-0.498267, 0.501696,-0.498267;;, + 56;4; -0.507434,-0.492223, 0.507434,-0.492223;;, + 57;4; -0.517777,-0.480915, 0.517777,-0.480915;;, + 58;4; -0.532186,-0.464522, 0.532186,-0.464522;;, + 59;4; -0.549104,-0.444500, 0.549104,-0.444500;;, + 60;4; -0.566914,-0.422621, 0.566914,-0.422621;;, + 61;4; -0.591676,-0.385693, 0.591676,-0.385693;;, + 62;4; -0.619875,-0.337660, 0.619875,-0.337660;;, + 63;4; -0.631009,-0.317774, 0.631009,-0.317774;;, + 64;4; -0.569991,-0.416549, 0.569991,-0.416549;;, + 65;4; -0.544001,-0.447528, 0.544001,-0.447528;;, + 66;4; -0.528725,-0.465743, 0.528725,-0.465743;;, + 67;4; -0.518688,-0.477713, 0.518688,-0.477713;;, + 68;4; -0.511850,-0.485867, 0.511850,-0.485867;;, + 69;4; -0.507176,-0.491442, 0.507176,-0.491442;;, + 70;4; -0.504043,-0.495178, 0.504043,-0.495178;;, + 71;4; -0.502037,-0.497571, 0.502037,-0.497571;;, + 72;4; -0.500854,-0.498982, 0.500854,-0.498982;;, + 73;4; -0.500254,-0.499698, 0.500254,-0.499698;;, + 74;4; -0.500032,-0.499962, 0.500032,-0.499962;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.503767,-0.495704, 0.503767,-0.495704;;, + 77;4; -0.514731,-0.483202, 0.514731,-0.483202;;, + 78;4; -0.530493,-0.465230, 0.530493,-0.465230;;, + 79;4; -0.546254,-0.447257, 0.546254,-0.447257;;, + 80;4; -0.557218,-0.434755, 0.557218,-0.434755;;, + 81;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 82;4; -0.558979,-0.432466, 0.558979,-0.432466;;, + 83;4; -0.552923,-0.438522, 0.552923,-0.438522;;, + 84;4; -0.542936,-0.448509, 0.542936,-0.448509;;, + 85;4; -0.529457,-0.461988, 0.529456,-0.461988;;, + 86;4; -0.513315,-0.478130, 0.513315,-0.478130;;, + 87;4; -0.495722,-0.495722, 0.495722,-0.495722;;, + 88;4; -0.478130,-0.513315, 0.478130,-0.513315;;, + 89;4; -0.461988,-0.529457, 0.461988,-0.529457;;, + 90;4; -0.448509,-0.542936, 0.448509,-0.542936;;, + 91;4; -0.438522,-0.552923, 0.438522,-0.552923;;, + 92;4; -0.432466,-0.558979, 0.432466,-0.558979;;, + 93;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 94;4; -0.434755,-0.557219, 0.434755,-0.557219;;, + 95;4; -0.447255,-0.546256, 0.447255,-0.546256;;, + 96;4; -0.465226,-0.530496, 0.465226,-0.530496;;, + 97;4; -0.483199,-0.514735, 0.483198,-0.514735;;, + 98;4; -0.495703,-0.503769, 0.495703,-0.503769;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 102; + 0;3; -0.648382, 0.089278,-0.876976;;, + 1;3; -0.648382, 0.089278,-0.876976;;, + 2;3; -0.648382, 0.089278,-0.876976;;, + 3;3; -0.648382, 0.089278,-0.876976;;, + 4;3; -0.648382, 0.089278,-0.876976;;, + 5;3; -0.648382, 0.089278,-0.876976;;, + 6;3; -0.648382, 0.089278,-0.876976;;, + 7;3; -0.648382, 0.089278,-0.876976;;, + 8;3; -0.648382, 0.089278,-0.876976;;, + 9;3; -0.648382, 0.089278,-0.876976;;, + 10;3; -0.648382, 0.089278,-0.876976;;, + 11;3; -0.648382, 0.089278,-0.876976;;, + 12;3; -0.648382, 0.089278,-0.876976;;, + 13;3; -0.648382, 0.089278,-0.876976;;, + 14;3; -0.648382, 0.089278,-0.876976;;, + 15;3; -0.648382, 0.089278,-0.876976;;, + 16;3; -0.648382, 0.089278,-0.876976;;, + 17;3; -0.648382, 0.089278,-0.876976;;, + 18;3; -0.648382, 0.089278,-0.876976;;, + 19;3; -0.648382, 0.089278,-0.876976;;, + 20;3; -0.648382, 0.089278,-0.876976;;, + 21;3; -0.648382, 0.089278,-0.876976;;, + 22;3; -0.648382, 0.089278,-0.876976;;, + 23;3; -0.648382, 0.089278,-0.876976;;, + 24;3; -0.648382, 0.089278,-0.876976;;, + 25;3; -0.648382, 0.089278,-0.876976;;, + 26;3; -0.648382, 0.089278,-0.876976;;, + 27;3; -0.648382, 0.089278,-0.876976;;, + 28;3; -0.648382, 0.089278,-0.876976;;, + 29;3; -0.648382, 0.089278,-0.876976;;, + 30;3; -0.648382, 0.089278,-0.876976;;, + 31;3; -0.648382, 0.089278,-0.876976;;, + 32;3; -0.648382, 0.089278,-0.876976;;, + 33;3; -0.648382, 0.089278,-0.876976;;, + 34;3; -0.648382, 0.089278,-0.876976;;, + 35;3; -0.648382, 0.089278,-0.876976;;, + 36;3; -0.648382, 0.089278,-0.876976;;, + 37;3; -0.648382, 0.089278,-0.876976;;, + 38;3; -0.648382, 0.089278,-0.876976;;, + 39;3; -0.648382, 0.089278,-0.876976;;, + 40;3; -0.648382, 0.089278,-0.876976;;, + 41;3; -0.648382, 0.089278,-0.876976;;, + 42;3; -0.648382, 0.089278,-0.876976;;, + 43;3; -0.648382, 0.089278,-0.876976;;, + 44;3; -0.648382, 0.089278,-0.876976;;, + 45;3; -0.648382, 0.089278,-0.876976;;, + 46;3; -0.648382, 0.089278,-0.876976;;, + 47;3; -0.648382, 0.089278,-0.876976;;, + 48;3; -0.648382, 0.089278,-0.876976;;, + 49;3; -0.648382, 0.089278,-0.876976;;, + 50;3; -0.648382, 0.089278,-0.876976;;, + 51;3; -0.648382, 0.089278,-0.876976;;, + 52;3; -0.648382, 0.089278,-0.876976;;, + 53;3; -0.648382, 0.089278,-0.876976;;, + 54;3; -0.648382, 0.089278,-0.876976;;, + 55;3; -0.648382, 0.089278,-0.876976;;, + 56;3; -0.648382, 0.089278,-0.876976;;, + 57;3; -0.648382, 0.089278,-0.876976;;, + 58;3; -0.648382, 0.089278,-0.876976;;, + 59;3; -0.648382, 0.089278,-0.876976;;, + 60;3; -0.648383, 0.089278,-0.876976;;, + 61;3; -0.648382, 0.089278,-0.876976;;, + 62;3; -0.648382, 0.089278,-0.876976;;, + 63;3; -0.648383, 0.089278,-0.876976;;, + 64;3; -0.648382, 0.089278,-0.876976;;, + 65;3; -0.648383, 0.089278,-0.876976;;, + 66;3; -0.648382, 0.089278,-0.876976;;, + 67;3; -0.648382, 0.089278,-0.876976;;, + 68;3; -0.648382, 0.089278,-0.876976;;, + 69;3; -0.648382, 0.089278,-0.876976;;, + 70;3; -0.648382, 0.089278,-0.876976;;, + 71;3; -0.648382, 0.089278,-0.876976;;, + 72;3; -0.648382, 0.089278,-0.876976;;, + 73;3; -0.648382, 0.089278,-0.876976;;, + 74;3; -0.648382, 0.089278,-0.876976;;, + 75;3; -0.648382, 0.089278,-0.876976;;, + 76;3; -0.648382, 0.089278,-0.876976;;, + 77;3; -0.648382, 0.089278,-0.876976;;, + 78;3; -0.648382, 0.089278,-0.876976;;, + 79;3; -0.648382, 0.089278,-0.876976;;, + 80;3; -0.648382, 0.089278,-0.876976;;, + 81;3; -0.648382, 0.089278,-0.876976;;, + 82;3; -0.648382, 0.089278,-0.876976;;, + 83;3; -0.648382, 0.089278,-0.876976;;, + 84;3; -0.648382, 0.089278,-0.876976;;, + 85;3; -0.648382, 0.089278,-0.876976;;, + 86;3; -0.648382, 0.089278,-0.876976;;, + 87;3; -0.648382, 0.089278,-0.876976;;, + 88;3; -0.648382, 0.089278,-0.876976;;, + 89;3; -0.648382, 0.089278,-0.876976;;, + 90;3; -0.648382, 0.089278,-0.876976;;, + 91;3; -0.648382, 0.089278,-0.876976;;, + 92;3; -0.648382, 0.089278,-0.876976;;, + 93;3; -0.648382, 0.089278,-0.876976;;, + 94;3; -0.648382, 0.089278,-0.876976;;, + 95;3; -0.648382, 0.089278,-0.876976;;, + 96;3; -0.648382, 0.089278,-0.876976;;, + 97;3; -0.648382, 0.089278,-0.876976;;, + 98;3; -0.648382, 0.089278,-0.876976;;, + 99;3; -0.648382, 0.089278,-0.876976;;, + 100;3; -0.648382, 0.089278,-0.876976;;, + 101;3; -0.648382, 0.089278,-0.876976;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.477401,-0.512019, 0.477401,-0.512019;;, + 56;4; -0.411680,-0.546952, 0.411680,-0.546952;;, + 57;4; -0.317264,-0.597112, 0.317264,-0.597112;;, + 58;4; -0.222860,-0.647261, 0.222860,-0.647261;;, + 59;4; -0.157160,-0.682173, 0.157160,-0.682173;;, + 60;4; -0.134571,-0.694183, 0.134571,-0.694183;;, + 61;4; -0.134909,-0.694142, 0.134908,-0.694142;;, + 62;4; -0.136630,-0.693635, 0.136630,-0.693635;;, + 63;4; -0.141087,-0.691891, 0.141087,-0.691891;;, + 64;4; -0.149660,-0.688050, 0.149660,-0.688050;;, + 65;4; -0.163093,-0.681551, 0.163093,-0.681550;;, + 66;4; -0.181171,-0.672376, 0.181170,-0.672376;;, + 67;4; -0.203049,-0.660915, 0.203049,-0.660915;;, + 68;4; -0.230682,-0.647108, 0.230682,-0.647108;;, + 69;4; -0.266530,-0.630412, 0.266530,-0.630412;;, + 70;4; -0.309286,-0.610872, 0.309285,-0.610872;;, + 71;4; -0.355862,-0.589024, 0.355861,-0.589024;;, + 72;4; -0.401798,-0.565913, 0.401798,-0.565913;;, + 73;4; -0.442733,-0.542775, 0.442733,-0.542775;;, + 74;4; -0.475813,-0.520613, 0.475813,-0.520613;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.518892,-0.480580, 0.518891,-0.480580;;, + 77;4; -0.535261,-0.462672, 0.535261,-0.462672;;, + 78;4; -0.547833,-0.447889, 0.547833,-0.447889;;, + 79;4; -0.555908,-0.437603, 0.555908,-0.437603;;, + 80;4; -0.559914,-0.432060, 0.559914,-0.432060;;, + 81;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 82;4; -0.558979,-0.432466, 0.558979,-0.432466;;, + 83;4; -0.552923,-0.438522, 0.552923,-0.438522;;, + 84;4; -0.542936,-0.448509, 0.542936,-0.448509;;, + 85;4; -0.529457,-0.461988, 0.529456,-0.461988;;, + 86;4; -0.513315,-0.478130, 0.513315,-0.478130;;, + 87;4; -0.495722,-0.495722, 0.495722,-0.495722;;, + 88;4; -0.478130,-0.513315, 0.478130,-0.513315;;, + 89;4; -0.461988,-0.529457, 0.461988,-0.529457;;, + 90;4; -0.448509,-0.542936, 0.448509,-0.542936;;, + 91;4; -0.438522,-0.552923, 0.438522,-0.552923;;, + 92;4; -0.432466,-0.558979, 0.432466,-0.558979;;, + 93;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 94;4; -0.434755,-0.557219, 0.434755,-0.557219;;, + 95;4; -0.447255,-0.546256, 0.447255,-0.546256;;, + 96;4; -0.465226,-0.530496, 0.465226,-0.530496;;, + 97;4; -0.483199,-0.514735, 0.483198,-0.514735;;, + 98;4; -0.495703,-0.503769, 0.495703,-0.503769;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { //Position + 2; + 102; + 0;3; -0.648382, 3.135167,-1.230253;;, + 1;3; -0.648382, 3.135167,-1.230253;;, + 2;3; -0.648382, 3.135167,-1.230253;;, + 3;3; -0.648382, 3.135167,-1.230253;;, + 4;3; -0.648382, 3.135167,-1.230253;;, + 5;3; -0.648382, 3.135167,-1.230253;;, + 6;3; -0.648382, 3.135167,-1.230253;;, + 7;3; -0.648382, 3.135167,-1.230253;;, + 8;3; -0.648382, 3.135167,-1.230253;;, + 9;3; -0.648382, 3.135167,-1.230253;;, + 10;3; -0.648382, 3.135167,-1.230253;;, + 11;3; -0.648382, 3.135167,-1.230253;;, + 12;3; -0.648382, 3.135167,-1.230253;;, + 13;3; -0.648382, 3.135167,-1.230253;;, + 14;3; -0.648382, 3.135167,-1.230253;;, + 15;3; -0.648382, 3.135167,-1.230253;;, + 16;3; -0.648382, 3.135167,-1.230253;;, + 17;3; -0.648382, 3.135167,-1.230253;;, + 18;3; -0.648382, 3.135167,-1.230253;;, + 19;3; -0.648382, 3.135167,-1.230253;;, + 20;3; -0.648382, 3.135167,-1.230253;;, + 21;3; -0.648382, 3.135167,-1.230253;;, + 22;3; -0.648382, 3.135167,-1.230253;;, + 23;3; -0.648382, 3.135167,-1.230253;;, + 24;3; -0.648382, 3.135167,-1.230253;;, + 25;3; -0.648382, 3.135167,-1.230253;;, + 26;3; -0.648382, 3.135167,-1.230253;;, + 27;3; -0.648382, 3.135167,-1.230253;;, + 28;3; -0.648382, 3.135167,-1.230253;;, + 29;3; -0.648382, 3.135167,-1.230253;;, + 30;3; -0.648382, 3.135167,-1.230253;;, + 31;3; -0.648382, 3.135167,-1.230253;;, + 32;3; -0.648382, 3.135167,-1.230253;;, + 33;3; -0.648382, 3.135167,-1.230253;;, + 34;3; -0.648382, 3.135167,-1.230253;;, + 35;3; -0.648382, 3.135167,-1.230253;;, + 36;3; -0.648382, 3.135167,-1.230253;;, + 37;3; -0.648382, 3.135167,-1.230253;;, + 38;3; -0.648382, 3.135167,-1.230253;;, + 39;3; -0.648382, 3.135167,-1.230253;;, + 40;3; -0.648382, 3.135167,-1.230253;;, + 41;3; -0.648382, 3.135167,-1.230253;;, + 42;3; -0.648382, 3.135167,-1.230253;;, + 43;3; -0.648382, 3.135167,-1.230253;;, + 44;3; -0.648382, 3.135167,-1.230253;;, + 45;3; -0.648382, 3.135167,-1.230253;;, + 46;3; -0.648382, 3.135167,-1.230253;;, + 47;3; -0.648382, 3.135167,-1.230253;;, + 48;3; -0.648382, 3.135167,-1.230253;;, + 49;3; -0.648382, 3.135167,-1.230253;;, + 50;3; -0.648382, 3.135167,-1.230253;;, + 51;3; -0.648382, 3.135167,-1.230253;;, + 52;3; -0.648382, 3.135167,-1.230253;;, + 53;3; -0.648382, 3.135167,-1.230253;;, + 54;3; -0.648382, 3.135167,-1.230253;;, + 55;3; -0.648382, 3.135167,-1.230253;;, + 56;3; -0.648382, 3.135167,-1.230253;;, + 57;3; -0.648382, 3.135167,-1.230253;;, + 58;3; -0.648382, 3.135167,-1.230253;;, + 59;3; -0.648382, 3.135166,-1.230253;;, + 60;3; -0.648383, 3.135167,-1.230253;;, + 61;3; -0.648382, 3.135167,-1.230253;;, + 62;3; -0.648382, 3.135167,-1.230253;;, + 63;3; -0.648383, 3.135167,-1.230253;;, + 64;3; -0.648382, 3.135166,-1.230253;;, + 65;3; -0.648383, 3.135167,-1.230253;;, + 66;3; -0.648382, 3.135167,-1.230253;;, + 67;3; -0.648382, 3.135166,-1.230252;;, + 68;3; -0.648382, 3.135166,-1.230253;;, + 69;3; -0.648382, 3.135167,-1.230252;;, + 70;3; -0.648382, 3.135167,-1.230253;;, + 71;3; -0.648382, 3.135167,-1.230253;;, + 72;3; -0.648382, 3.135167,-1.230253;;, + 73;3; -0.648382, 3.135167,-1.230253;;, + 74;3; -0.648382, 3.135167,-1.230253;;, + 75;3; -0.648382, 3.135167,-1.230253;;, + 76;3; -0.648382, 3.135167,-1.230253;;, + 77;3; -0.648382, 3.135167,-1.230253;;, + 78;3; -0.648382, 3.135167,-1.230253;;, + 79;3; -0.648382, 3.135167,-1.230253;;, + 80;3; -0.648382, 3.135167,-1.230253;;, + 81;3; -0.648382, 3.135167,-1.230253;;, + 82;3; -0.648382, 3.135167,-1.230253;;, + 83;3; -0.648382, 3.135167,-1.230253;;, + 84;3; -0.648382, 3.135167,-1.230253;;, + 85;3; -0.648382, 3.135167,-1.230253;;, + 86;3; -0.648382, 3.135167,-1.230253;;, + 87;3; -0.648382, 3.135167,-1.230253;;, + 88;3; -0.648382, 3.135167,-1.230253;;, + 89;3; -0.648382, 3.135167,-1.230253;;, + 90;3; -0.648382, 3.135167,-1.230253;;, + 91;3; -0.648382, 3.135167,-1.230253;;, + 92;3; -0.648382, 3.135167,-1.230253;;, + 93;3; -0.648382, 3.135167,-1.230253;;, + 94;3; -0.648382, 3.135167,-1.230253;;, + 95;3; -0.648382, 3.135167,-1.230253;;, + 96;3; -0.648382, 3.135167,-1.230253;;, + 97;3; -0.648382, 3.135167,-1.230253;;, + 98;3; -0.648382, 3.135167,-1.230253;;, + 99;3; -0.648382, 3.135167,-1.230253;;, + 100;3; -0.648382, 3.135167,-1.230253;;, + 101;3; -0.648382, 3.135167,-1.230253;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.495817,-0.503681, 0.495817,-0.503681;;, + 56;4; -0.483644,-0.514391, 0.483644,-0.514391;;, + 57;4; -0.466144,-0.529788, 0.466144,-0.529788;;, + 58;4; -0.448643,-0.545186, 0.448643,-0.545186;;, + 59;4; -0.436467,-0.555900, 0.436467,-0.555900;;, + 60;4; -0.432283,-0.559582, 0.432283,-0.559582;;, + 61;4; -0.436059,-0.557054, 0.436059,-0.557054;;, + 62;4; -0.464513,-0.531274, 0.464513,-0.531274;;, + 63;4; -0.532433,-0.464604, 0.532433,-0.464604;;, + 64;4; -0.651826,-0.273976, 0.651826,-0.273976;;, + 65;4; -0.646495,-0.283429, 0.646495,-0.283429;;, + 66;4; -0.635695,-0.302251, 0.635695,-0.302251;;, + 67;4; -0.622440,-0.324854, 0.622440,-0.324854;;, + 68;4; -0.607847,-0.349126, 0.607847,-0.349126;;, + 69;4; -0.592496,-0.373935, 0.592496,-0.373935;;, + 70;4; -0.576750,-0.398543, 0.576750,-0.398543;;, + 71;4; -0.560868,-0.422379, 0.560868,-0.422379;;, + 72;4; -0.545061,-0.444948, 0.545061,-0.444948;;, + 73;4; -0.529519,-0.465765, 0.529519,-0.465765;;, + 74;4; -0.514431,-0.484314, 0.514431,-0.484314;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.484961,-0.514511, 0.484961,-0.514511;;, + 77;4; -0.468617,-0.529316, 0.468617,-0.529316;;, + 78;4; -0.452909,-0.542813, 0.452909,-0.542813;;, + 79;4; -0.440398,-0.553114, 0.440397,-0.553114;;, + 80;4; -0.432840,-0.559133, 0.432840,-0.559133;;, + 81;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 82;4; -0.431600,-0.560142, 0.431600,-0.560142;;, + 83;4; -0.435279,-0.557349, 0.435279,-0.557349;;, + 84;4; -0.441746,-0.552277, 0.441746,-0.552277;;, + 85;4; -0.450899,-0.544824, 0.450898,-0.544824;;, + 86;4; -0.462164,-0.535258, 0.462164,-0.535258;;, + 87;4; -0.474650,-0.524167, 0.474650,-0.524167;;, + 88;4; -0.487474,-0.512229, 0.487474,-0.512229;;, + 89;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 90;4; -0.516302,-0.482515, 0.516302,-0.482515;;, + 91;4; -0.537661,-0.458062, 0.537660,-0.458062;;, + 92;4; -0.554951,-0.437677, 0.554951,-0.437677;;, + 93;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 94;4; -0.557219,-0.434755, 0.557219,-0.434755;;, + 95;4; -0.546256,-0.447256, 0.546256,-0.447256;;, + 96;4; -0.530496,-0.465226, 0.530496,-0.465226;;, + 97;4; -0.514735,-0.483199, 0.514735,-0.483199;;, + 98;4; -0.503769,-0.495703, 0.503769,-0.495703;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { //Position + 2; + 102; + 0;3; 0.000000,-0.293364, 0.572615;;, + 1;3; 0.000000,-0.293364, 0.572615;;, + 2;3; 0.000000,-0.293364, 0.572615;;, + 3;3; 0.000000,-0.293364, 0.572615;;, + 4;3; 0.000000,-0.293364, 0.572615;;, + 5;3; 0.000000,-0.293364, 0.572615;;, + 6;3; 0.000000,-0.293364, 0.572615;;, + 7;3; 0.000000,-0.293364, 0.572615;;, + 8;3; 0.000000,-0.293364, 0.572615;;, + 9;3; 0.000000,-0.293364, 0.572615;;, + 10;3; 0.000000,-0.293364, 0.572615;;, + 11;3; 0.000000,-0.293364, 0.572615;;, + 12;3; 0.000000,-0.293364, 0.572615;;, + 13;3; 0.000000,-0.293364, 0.572615;;, + 14;3; 0.000000,-0.293364, 0.572615;;, + 15;3; 0.000000,-0.293364, 0.572615;;, + 16;3; 0.000000,-0.293364, 0.572615;;, + 17;3; 0.000000,-0.293364, 0.572615;;, + 18;3; 0.000000,-0.293364, 0.572615;;, + 19;3; 0.000000,-0.293364, 0.572615;;, + 20;3; 0.000000,-0.293364, 0.572615;;, + 21;3; 0.000000,-0.293364, 0.572615;;, + 22;3; 0.000000,-0.293364, 0.572615;;, + 23;3; 0.000000,-0.293364, 0.572615;;, + 24;3; 0.000000,-0.293364, 0.572615;;, + 25;3; 0.000000,-0.293364, 0.572615;;, + 26;3; 0.000000,-0.293364, 0.572615;;, + 27;3; 0.000000,-0.293364, 0.572615;;, + 28;3; 0.000000,-0.293364, 0.572615;;, + 29;3; 0.000000,-0.293364, 0.572615;;, + 30;3; 0.000000,-0.293364, 0.572615;;, + 31;3; 0.000000,-0.293364, 0.572615;;, + 32;3; 0.000000,-0.293364, 0.572615;;, + 33;3; 0.000000,-0.293364, 0.572615;;, + 34;3; 0.000000,-0.293364, 0.572615;;, + 35;3; 0.000000,-0.293364, 0.572615;;, + 36;3; 0.000000,-0.293364, 0.572615;;, + 37;3; 0.000000,-0.293364, 0.572615;;, + 38;3; 0.000000,-0.293364, 0.572615;;, + 39;3; 0.000000,-0.293364, 0.572615;;, + 40;3; 0.000000,-0.293364, 0.572615;;, + 41;3; 0.000000,-0.293364, 0.572615;;, + 42;3; 0.000000,-0.293364, 0.572615;;, + 43;3; 0.000000,-0.293364, 0.572615;;, + 44;3; 0.000000,-0.293364, 0.572615;;, + 45;3; 0.000000,-0.293364, 0.572615;;, + 46;3; 0.000000,-0.293364, 0.572615;;, + 47;3; 0.000000,-0.293364, 0.572615;;, + 48;3; 0.000000,-0.293364, 0.572615;;, + 49;3; 0.000000,-0.293364, 0.572615;;, + 50;3; 0.000000,-0.293364, 0.572615;;, + 51;3; 0.000000,-0.293364, 0.572615;;, + 52;3; 0.000000,-0.293364, 0.572615;;, + 53;3; 0.000000,-0.293364, 0.572615;;, + 54;3; 0.000000,-0.293364, 0.572615;;, + 55;3; 0.000000,-0.293364, 0.572615;;, + 56;3; 0.000000,-0.293364, 0.572615;;, + 57;3; 0.000000,-0.293364, 0.572615;;, + 58;3; 0.000000,-0.293364, 0.572615;;, + 59;3; 0.000000,-0.293364, 0.572615;;, + 60;3; -0.000000,-0.293364, 0.572615;;, + 61;3; 0.000000,-0.293364, 0.572615;;, + 62;3; 0.000000,-0.293364, 0.572615;;, + 63;3; -0.000000,-0.293364, 0.572615;;, + 64;3; 0.000000,-0.293364, 0.572615;;, + 65;3; -0.000000,-0.293364, 0.572615;;, + 66;3; 0.000000,-0.293364, 0.572615;;, + 67;3; 0.000000,-0.293364, 0.572615;;, + 68;3; 0.000000,-0.293364, 0.572615;;, + 69;3; 0.000000,-0.293364, 0.572615;;, + 70;3; 0.000000,-0.293364, 0.572615;;, + 71;3; 0.000000,-0.293364, 0.572615;;, + 72;3; 0.000000,-0.293364, 0.572615;;, + 73;3; 0.000000,-0.293364, 0.572615;;, + 74;3; 0.000000,-0.293364, 0.572615;;, + 75;3; 0.000000,-0.293364, 0.572615;;, + 76;3; 0.000000,-0.293364, 0.572615;;, + 77;3; 0.000000,-0.293364, 0.572615;;, + 78;3; 0.000000,-0.293364, 0.572615;;, + 79;3; 0.000000,-0.293364, 0.572615;;, + 80;3; 0.000000,-0.293364, 0.572615;;, + 81;3; 0.000000,-0.293364, 0.572615;;, + 82;3; 0.000000,-0.293364, 0.572615;;, + 83;3; 0.000000,-0.293364, 0.572615;;, + 84;3; 0.000000,-0.293364, 0.572615;;, + 85;3; 0.000000,-0.293364, 0.572615;;, + 86;3; 0.000000,-0.293364, 0.572615;;, + 87;3; 0.000000,-0.293364, 0.572615;;, + 88;3; 0.000000,-0.293364, 0.572615;;, + 89;3; 0.000000,-0.293364, 0.572615;;, + 90;3; 0.000000,-0.293364, 0.572615;;, + 91;3; 0.000000,-0.293364, 0.572615;;, + 92;3; 0.000000,-0.293364, 0.572615;;, + 93;3; 0.000000,-0.293364, 0.572615;;, + 94;3; 0.000000,-0.293364, 0.572615;;, + 95;3; 0.000000,-0.293364, 0.572615;;, + 96;3; 0.000000,-0.293364, 0.572615;;, + 97;3; 0.000000,-0.293364, 0.572615;;, + 98;3; 0.000000,-0.293364, 0.572615;;, + 99;3; 0.000000,-0.293364, 0.572615;;, + 100;3; 0.000000,-0.293364, 0.572615;;, + 101;3; 0.000000,-0.293364, 0.572615;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 1;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 2;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 3;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 4;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 5;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 6;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 7;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 8;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 9;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 10;4; -0.321913,-0.818353, 0.030682,-0.007273;;, + 11;4; 0.245514,-0.839638, 0.096329,-0.022833;;, + 12;4; 0.510918,-0.849662, 0.127007,-0.030106;;, + 13;4; 0.443607,-0.845750, 0.115337,-0.036032;;, + 14;4; 0.247971,-0.834801, 0.081065,-0.052860;;, + 15;4; -0.033265,-0.819930, 0.030996,-0.075954;;, + 16;4; -0.315467,-0.806381,-0.020630,-0.096919;;, + 17;4; -0.513776,-0.799088,-0.059179,-0.107893;;, + 18;4; -0.584967,-0.800485,-0.077013,-0.105386;;, + 19;4; -0.588429,-0.805222,-0.061963,-0.075073;;, + 20;4; -0.589850,-0.807167,-0.020278,-0.023175;;, + 21;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 22;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 23;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 24;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 25;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 26;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 27;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 28;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 29;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 30;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 31;4; -0.588795,-0.805724, 0.018608, 0.025460;;, + 32;4; -0.586186,-0.802154, 0.058412, 0.079932;;, + 33;4; -0.584967,-0.800485, 0.077012, 0.105386;;, + 34;4; -0.584967,-0.800485, 0.067498, 0.092366;;, + 35;4; -0.584967,-0.800485, 0.039807, 0.054473;;, + 36;4; -0.584967,-0.800485,-0.000000, 0.000000;;, + 37;4; -0.584967,-0.800485,-0.039807,-0.054473;;, + 38;4; -0.584967,-0.800485,-0.067498,-0.092366;;, + 39;4; -0.584967,-0.800485,-0.077013,-0.105386;;, + 40;4; -0.586186,-0.802154,-0.058412,-0.079931;;, + 41;4; -0.588795,-0.805724,-0.018608,-0.025460;;, + 42;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 43;4; -0.590012,-0.807395,-0.000000, 0.000000;;, + 44;4; -0.589991,-0.807410,-0.000000, 0.000000;;, + 45;4; -0.589928,-0.807455,-0.000000, 0.000000;;, + 46;4; -0.589793,-0.807553,-0.000000, 0.000000;;, + 47;4; -0.589550,-0.807729,-0.000000, 0.000000;;, + 48;4; -0.589168,-0.808006,-0.000000, 0.000000;;, + 49;4; -0.588617,-0.808405,-0.000000, 0.000000;;, + 50;4; -0.587883,-0.808937,-0.000000, 0.000000;;, + 51;4; -0.586964,-0.809602,-0.000000, 0.000000;;, + 52;4; -0.585870,-0.810395,-0.000000, 0.000000;;, + 53;4; -0.584619,-0.811301,-0.000000, 0.000000;;, + 54;4; -0.583231,-0.812307,-0.000000, 0.000000;;, + 55;4; -0.547806,-0.827844,-0.000000, 0.000000;;, + 56;4; -0.446884,-0.869926,-0.000000, 0.000000;;, + 57;4; -0.300759,-0.927091,-0.000000, 0.000000;;, + 58;4; -0.151189,-0.978810,-0.000000, 0.000000;;, + 59;4; -0.040782,-1.005941,-0.000000, 0.000000;;, + 60;4; 0.008341,-0.999960, 0.000000, 0.000000;;, + 61;4; 0.025288,-0.975124, 0.009965,-0.007897;;, + 62;4; 0.041352,-0.946265, 0.039445,-0.031257;;, + 63;4; 0.053388,-0.914238, 0.084356,-0.066842;;, + 64;4; 0.057660,-0.880997, 0.135292,-0.107199;;, + 65;4; 0.051462,-0.849034, 0.180198,-0.142778;;, + 66;4; 0.034305,-0.820283, 0.209671,-0.166130;;, + 67;4; 0.007497,-0.795576, 0.219634,-0.174023;;, + 68;4; -0.038853,-0.777269, 0.212532,-0.168695;;, + 69;4; -0.114988,-0.768082, 0.191219,-0.152636;;, + 70;4; -0.215320,-0.767884, 0.157391,-0.126978;;, + 71;4; -0.327538,-0.774952, 0.115663,-0.095011;;, + 72;4; -0.434408,-0.785934, 0.073073,-0.061864;;, + 73;4; -0.519507,-0.796884, 0.036789,-0.032846;;, + 74;4; -0.572492,-0.804629, 0.011745,-0.011682;;, + 75;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 76;4; -0.589950,-0.807305,-0.001445, 0.008481;;, + 77;4; -0.589759,-0.807042, 0.004104, 0.019813;;, + 78;4; -0.589472,-0.806650, 0.014851, 0.032316;;, + 79;4; -0.589163,-0.806228, 0.026734, 0.043262;;, + 80;4; -0.588911,-0.805883, 0.035409, 0.050319;;, + 81;4; -0.588759,-0.805675, 0.038466, 0.052638;;, + 82;4; -0.588667,-0.805548, 0.037185, 0.050885;;, + 83;4; -0.588583,-0.805434, 0.033318, 0.045594;;, + 84;4; -0.588510,-0.805334, 0.026942, 0.036869;;, + 85;4; -0.588449,-0.805250, 0.018336, 0.025092;;, + 86;4; -0.588400,-0.805183, 0.008031, 0.010990;;, + 87;4; -0.588363,-0.805132,-0.003201,-0.004381;;, + 88;4; -0.588337,-0.805097,-0.014434,-0.019751;;, + 89;4; -0.588321,-0.805075,-0.024739,-0.033853;;, + 90;4; -0.588312,-0.805063,-0.033345,-0.045630;;, + 91;4; -0.588308,-0.805057,-0.039721,-0.054355;;, + 92;4; -0.588306,-0.805055,-0.043588,-0.059647;;, + 93;4; -0.588306,-0.805055,-0.044869,-0.061400;;, + 94;4; -0.588412,-0.805199,-0.042097,-0.057607;;, + 95;4; -0.588719,-0.805619,-0.034031,-0.046569;;, + 96;4; -0.589160,-0.806224,-0.022435,-0.030701;;, + 97;4; -0.589602,-0.806828,-0.010839,-0.014832;;, + 98;4; -0.589909,-0.807248,-0.002772,-0.003793;;, + 99;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 100;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 101;4; -0.590015,-0.807393,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { //Position + 2; + 102; + 0;3; 0.000000, 3.228616, 0.252948;;, + 1;3; 0.000000, 3.228616, 0.252948;;, + 2;3; 0.000000, 3.228616, 0.252948;;, + 3;3; 0.000000, 3.228616, 0.252948;;, + 4;3; 0.000000, 3.228616, 0.252948;;, + 5;3; 0.000000, 3.228616, 0.252948;;, + 6;3; 0.000000, 3.228616, 0.252948;;, + 7;3; 0.000000, 3.228616, 0.252948;;, + 8;3; 0.000000, 3.228616, 0.252948;;, + 9;3; 0.000000, 3.228616, 0.252948;;, + 10;3; 0.000000, 3.228616, 0.252948;;, + 11;3; 0.000000, 3.228616, 0.252948;;, + 12;3; 0.000000, 3.228616, 0.252948;;, + 13;3; 0.000000, 3.228616, 0.252948;;, + 14;3; 0.000000, 3.228616, 0.252948;;, + 15;3; 0.000000, 3.228616, 0.252948;;, + 16;3; 0.000000, 3.228616, 0.252948;;, + 17;3; 0.000000, 3.228616, 0.252948;;, + 18;3; 0.000000, 3.228616, 0.252948;;, + 19;3; 0.000000, 3.228616, 0.252948;;, + 20;3; 0.000000, 3.228616, 0.252948;;, + 21;3; 0.000000, 3.228616, 0.252948;;, + 22;3; 0.000000, 3.228616, 0.252948;;, + 23;3; 0.000000, 3.228616, 0.252948;;, + 24;3; 0.000000, 3.228616, 0.252948;;, + 25;3; 0.000000, 3.228616, 0.252948;;, + 26;3; 0.000000, 3.228616, 0.252948;;, + 27;3; 0.000000, 3.228616, 0.252948;;, + 28;3; 0.000000, 3.228616, 0.252948;;, + 29;3; 0.000000, 3.228616, 0.252948;;, + 30;3; 0.000000, 3.228616, 0.252948;;, + 31;3; 0.000000, 3.228616, 0.252948;;, + 32;3; 0.000000, 3.228616, 0.252948;;, + 33;3; 0.000000, 3.228616, 0.252948;;, + 34;3; 0.000000, 3.228616, 0.252948;;, + 35;3; 0.000000, 3.228616, 0.252948;;, + 36;3; 0.000000, 3.228616, 0.252948;;, + 37;3; 0.000000, 3.228616, 0.252948;;, + 38;3; 0.000000, 3.228616, 0.252948;;, + 39;3; 0.000000, 3.228616, 0.252948;;, + 40;3; 0.000000, 3.228616, 0.252948;;, + 41;3; 0.000000, 3.228616, 0.252948;;, + 42;3; 0.000000, 3.228616, 0.252948;;, + 43;3; 0.000000, 3.228616, 0.252948;;, + 44;3; 0.000000, 3.228616, 0.252948;;, + 45;3; 0.000000, 3.228616, 0.252948;;, + 46;3; 0.000000, 3.228616, 0.252948;;, + 47;3; 0.000000, 3.228616, 0.252948;;, + 48;3; 0.000000, 3.228616, 0.252948;;, + 49;3; 0.000000, 3.228616, 0.252948;;, + 50;3; 0.000000, 3.228616, 0.252948;;, + 51;3; 0.000000, 3.228616, 0.252948;;, + 52;3; 0.000000, 3.228616, 0.252948;;, + 53;3; 0.000000, 3.228616, 0.252948;;, + 54;3; 0.000000, 3.228616, 0.252948;;, + 55;3; 0.000000, 3.228616, 0.252948;;, + 56;3; 0.000000, 3.228616, 0.252948;;, + 57;3; 0.000000, 3.228616, 0.252948;;, + 58;3; 0.000000, 3.228617, 0.252948;;, + 59;3; 0.000000, 3.228616, 0.252947;;, + 60;3; -0.000000, 3.228616, 0.252947;;, + 61;3; 0.000000, 3.228617, 0.252948;;, + 62;3; 0.000000, 3.228617, 0.252948;;, + 63;3; -0.000000, 3.228616, 0.252947;;, + 64;3; 0.000000, 3.228616, 0.252947;;, + 65;3; -0.000000, 3.228616, 0.252947;;, + 66;3; 0.000000, 3.228617, 0.252948;;, + 67;3; 0.000000, 3.228616, 0.252948;;, + 68;3; 0.000000, 3.228616, 0.252948;;, + 69;3; 0.000000, 3.228616, 0.252948;;, + 70;3; 0.000000, 3.228616, 0.252948;;, + 71;3; 0.000000, 3.228616, 0.252948;;, + 72;3; 0.000000, 3.228616, 0.252948;;, + 73;3; 0.000000, 3.228616, 0.252947;;, + 74;3; 0.000000, 3.228616, 0.252948;;, + 75;3; 0.000000, 3.228616, 0.252948;;, + 76;3; 0.000000, 3.228616, 0.252948;;, + 77;3; 0.000000, 3.228616, 0.252948;;, + 78;3; 0.000000, 3.228616, 0.252948;;, + 79;3; 0.000000, 3.228616, 0.252948;;, + 80;3; 0.000000, 3.228616, 0.252948;;, + 81;3; 0.000000, 3.228616, 0.252948;;, + 82;3; 0.000000, 3.228616, 0.252948;;, + 83;3; 0.000000, 3.228616, 0.252948;;, + 84;3; 0.000000, 3.228616, 0.252948;;, + 85;3; 0.000000, 3.228616, 0.252948;;, + 86;3; 0.000000, 3.228616, 0.252948;;, + 87;3; 0.000000, 3.228616, 0.252948;;, + 88;3; 0.000000, 3.228616, 0.252948;;, + 89;3; 0.000000, 3.228616, 0.252948;;, + 90;3; 0.000000, 3.228616, 0.252948;;, + 91;3; 0.000000, 3.228616, 0.252948;;, + 92;3; 0.000000, 3.228616, 0.252948;;, + 93;3; 0.000000, 3.228616, 0.252948;;, + 94;3; 0.000000, 3.228616, 0.252948;;, + 95;3; 0.000000, 3.228616, 0.252948;;, + 96;3; 0.000000, 3.228616, 0.252948;;, + 97;3; 0.000000, 3.228616, 0.252948;;, + 98;3; 0.000000, 3.228616, 0.252948;;, + 99;3; 0.000000, 3.228616, 0.252948;;, + 100;3; 0.000000, 3.228616, 0.252948;;, + 101;3; 0.000000, 3.228616, 0.252948;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 1;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 2;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 3;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 4;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 5;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 6;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 7;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 8;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 9;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 10;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 11;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 12;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 13;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 14;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 15;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 16;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 17;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 18;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 19;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 20;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 21;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 22;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 23;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 24;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 25;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 26;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 27;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 28;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 29;4; -0.916951, 0.398765, 0.002500, 0.005748;;, + 30;4; -0.916237, 0.398455, 0.010631, 0.024444;;, + 31;4; -0.913988, 0.397477, 0.024884, 0.057217;;, + 32;4; -0.909210, 0.395398, 0.044634, 0.102632;;, + 33;4; -0.901276, 0.391948, 0.068036, 0.156447;;, + 34;4; -0.890205, 0.387134, 0.092835, 0.213473;;, + 35;4; -0.876483, 0.381166, 0.117284, 0.269692;;, + 36;4; -0.843436, 0.366795, 0.155312, 0.357134;;, + 37;4; -0.819081, 0.356203, 0.179340, 0.412387;;, + 38;4; -0.824950, 0.358755, 0.174193, 0.400554;;, + 39;4; -0.841601, 0.365997, 0.158578, 0.364645;;, + 40;4; -0.861760, 0.374763, 0.137137, 0.315342;;, + 41;4; -0.876483, 0.381166, 0.117284, 0.269692;;, + 42;4; -0.887073, 0.385772, 0.096610, 0.222152;;, + 43;4; -0.897254, 0.390199, 0.070722, 0.162624;;, + 44;4; -0.906032, 0.394016, 0.043242, 0.099435;;, + 45;4; -0.912404, 0.396787, 0.019759, 0.045433;;, + 46;4; -0.915973, 0.398340, 0.004853, 0.011157;;, + 47;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 48;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 49;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 50;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 51;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 52;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 53;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 54;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 55;4; -0.919039, 0.393560, 0.000000, 0.000000;;, + 56;4; -0.924865, 0.378303, 0.000000, 0.000000;;, + 57;4; -0.933240, 0.356371, 0.000000, 0.000000;;, + 58;4; -0.941615, 0.334438, 0.000000, 0.000000;;, + 59;4; -0.947441, 0.319181, 0.000000, 0.000000;;, + 60;4; -0.949443, 0.313939, 0.000000, 0.000000;;, + 61;4; -0.941668, 0.334010, 0.000000, 0.000000;;, + 62;4; -0.925020, 0.377048, 0.000000, 0.000000;;, + 63;4; -0.917210, 0.397396, 0.000000, 0.000000;;, + 64;4; -0.917168, 0.397738, 0.000000, 0.000000;;, + 65;4; -0.917131, 0.398038, 0.000000, 0.000000;;, + 66;4; -0.917100, 0.398288, 0.000000, 0.000000;;, + 67;4; -0.917076, 0.398485, 0.000000, 0.000000;;, + 68;4; -0.917059, 0.398627, 0.000000, 0.000000;;, + 69;4; -0.917047, 0.398718, 0.000000, 0.000000;;, + 70;4; -0.917041, 0.398770, 0.000000, 0.000000;;, + 71;4; -0.917038, 0.398794, 0.000000, 0.000000;;, + 72;4; -0.917037, 0.398801, 0.000000, 0.000000;;, + 73;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 74;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 75;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 76;4; -0.915889, 0.401289, 0.000000, 0.000000;;, + 77;4; -0.912550, 0.408525, 0.000000, 0.000000;;, + 78;4; -0.907749, 0.418928, 0.000000, 0.000000;;, + 79;4; -0.902948, 0.429331, 0.000000, 0.000000;;, + 80;4; -0.899608, 0.436568, 0.000000, 0.000000;;, + 81;4; -0.898461, 0.439054, 0.000000, 0.000000;;, + 82;4; -0.899608, 0.436568, 0.000000, 0.000000;;, + 83;4; -0.902948, 0.429331, 0.000000, 0.000000;;, + 84;4; -0.907749, 0.418928, 0.000000, 0.000000;;, + 85;4; -0.912550, 0.408525, 0.000000, 0.000000;;, + 86;4; -0.915890, 0.401289, 0.000000, 0.000000;;, + 87;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 88;4; -0.915567, 0.401940, 0.000000, 0.000000;;, + 89;4; -0.911287, 0.411071, 0.000000, 0.000000;;, + 90;4; -0.905135, 0.424198, 0.000000, 0.000000;;, + 91;4; -0.898983, 0.437325, 0.000000, 0.000000;;, + 92;4; -0.894703, 0.446457, 0.000000, 0.000000;;, + 93;4; -0.893233, 0.449594, 0.000000, 0.000000;;, + 94;4; -0.894703, 0.446457, 0.000000, 0.000000;;, + 95;4; -0.898983, 0.437325, 0.000000, 0.000000;;, + 96;4; -0.905135, 0.424199, 0.000000, 0.000000;;, + 97;4; -0.911287, 0.411072, 0.000000, 0.000000;;, + 98;4; -0.915566, 0.401940, 0.000000, 0.000000;;, + 99;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 100;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 101;4; -0.917037, 0.398802, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { //Position + 2; + 102; + 0;3; -0.000000, 1.500366, 0.161866;;, + 1;3; -0.000000, 1.500366, 0.161866;;, + 2;3; -0.000000, 1.500366, 0.161866;;, + 3;3; -0.000000, 1.500366, 0.161866;;, + 4;3; -0.000000, 1.500366, 0.161866;;, + 5;3; -0.000000, 1.500366, 0.161866;;, + 6;3; -0.000000, 1.500366, 0.161866;;, + 7;3; -0.000000, 1.500366, 0.161866;;, + 8;3; -0.000000, 1.500366, 0.161866;;, + 9;3; -0.000000, 1.500366, 0.161866;;, + 10;3; -0.000000, 1.500366, 0.161866;;, + 11;3; -0.000000, 1.500366, 0.161866;;, + 12;3; -0.000000, 1.500366, 0.161866;;, + 13;3; -0.000000, 1.500366, 0.161866;;, + 14;3; -0.000000, 1.500366, 0.161866;;, + 15;3; -0.000000, 1.500366, 0.161866;;, + 16;3; -0.000000, 1.500366, 0.161866;;, + 17;3; -0.000000, 1.500366, 0.161866;;, + 18;3; -0.000000, 1.500366, 0.161866;;, + 19;3; -0.000000, 1.500366, 0.161866;;, + 20;3; -0.000000, 1.500366, 0.161866;;, + 21;3; -0.000000, 1.500366, 0.161866;;, + 22;3; -0.000000, 1.500366, 0.161866;;, + 23;3; -0.000000, 1.500366, 0.161866;;, + 24;3; -0.000000, 1.500366, 0.161866;;, + 25;3; -0.000000, 1.500366, 0.161866;;, + 26;3; -0.000000, 1.500366, 0.161866;;, + 27;3; -0.000000, 1.500366, 0.161866;;, + 28;3; -0.000000, 1.500366, 0.161866;;, + 29;3; 0.000000, 1.500365, 0.161866;;, + 30;3; 0.000000, 1.500366, 0.161866;;, + 31;3; -0.000000, 1.500365, 0.161866;;, + 32;3; 0.000000, 1.500366, 0.161866;;, + 33;3; -0.000000, 1.500366, 0.161866;;, + 34;3; -0.000000, 1.500366, 0.161866;;, + 35;3; 0.000000, 1.500366, 0.161866;;, + 36;3; -0.000000, 1.500366, 0.161866;;, + 37;3; -0.000000, 1.500366, 0.161866;;, + 38;3; -0.000000, 1.500366, 0.161865;;, + 39;3; 0.000000, 1.500366, 0.161866;;, + 40;3; -0.000000, 1.500365, 0.161866;;, + 41;3; 0.000000, 1.500366, 0.161866;;, + 42;3; -0.000000, 1.500366, 0.161866;;, + 43;3; -0.000000, 1.500366, 0.161866;;, + 44;3; -0.000000, 1.500366, 0.161866;;, + 45;3; 0.000001, 1.500366, 0.161866;;, + 46;3; 0.000000, 1.500366, 0.161866;;, + 47;3; -0.000000, 1.500366, 0.161866;;, + 48;3; -0.000000, 1.500366, 0.161866;;, + 49;3; -0.000000, 1.500366, 0.161866;;, + 50;3; -0.000000, 1.500366, 0.161866;;, + 51;3; -0.000000, 1.500366, 0.161866;;, + 52;3; -0.000000, 1.500366, 0.161866;;, + 53;3; -0.000000, 1.500366, 0.161866;;, + 54;3; -0.000000, 1.500366, 0.161866;;, + 55;3; 0.000000, 1.500366, 0.161866;;, + 56;3; 0.000000, 1.500366, 0.161866;;, + 57;3; -0.000000, 1.500366, 0.161866;;, + 58;3; -0.000000, 1.500366, 0.161866;;, + 59;3; -0.000000, 1.500365, 0.161866;;, + 60;3; -0.000000, 1.500365, 0.161866;;, + 61;3; 0.000000, 1.500365, 0.161866;;, + 62;3; -0.000000, 1.500366, 0.161866;;, + 63;3; -0.000000, 1.500366, 0.161866;;, + 64;3; -0.000000, 1.500366, 0.161866;;, + 65;3; 0.000000, 1.500365, 0.161866;;, + 66;3; 0.000000, 1.500366, 0.161866;;, + 67;3; -0.000000, 1.500365, 0.161866;;, + 68;3; -0.000000, 1.500365, 0.161866;;, + 69;3; 0.000000, 1.500366, 0.161866;;, + 70;3; -0.000000, 1.500365, 0.161866;;, + 71;3; -0.000000, 1.500366, 0.161866;;, + 72;3; -0.000000, 1.500366, 0.161866;;, + 73;3; -0.000000, 1.500366, 0.161866;;, + 74;3; -0.000000, 1.500366, 0.161866;;, + 75;3; -0.000000, 1.500366, 0.161866;;, + 76;3; 0.000000, 1.500365, 0.161866;;, + 77;3; -0.000000, 1.500366, 0.161866;;, + 78;3; -0.000000, 1.500366, 0.161866;;, + 79;3; -0.000000, 1.500366, 0.161866;;, + 80;3; -0.000000, 1.500365, 0.161866;;, + 81;3; -0.000000, 1.500366, 0.161866;;, + 82;3; -0.000000, 1.500365, 0.161866;;, + 83;3; -0.000000, 1.500366, 0.161866;;, + 84;3; 0.000000, 1.500366, 0.161866;;, + 85;3; 0.000000, 1.500365, 0.161866;;, + 86;3; -0.000000, 1.500366, 0.161866;;, + 87;3; -0.000000, 1.500366, 0.161866;;, + 88;3; -0.000000, 1.500366, 0.161866;;, + 89;3; -0.000000, 1.500366, 0.161866;;, + 90;3; -0.000000, 1.500366, 0.161866;;, + 91;3; -0.000000, 1.500366, 0.161866;;, + 92;3; -0.000000, 1.500366, 0.161866;;, + 93;3; -0.000000, 1.500366, 0.161866;;, + 94;3; -0.000000, 1.500366, 0.161866;;, + 95;3; -0.000000, 1.500366, 0.161866;;, + 96;3; 0.000000, 1.500366, 0.161866;;, + 97;3; 0.000000, 1.500366, 0.161866;;, + 98;3; -0.000000, 1.500366, 0.161866;;, + 99;3; -0.000000, 1.500366, 0.161866;;, + 100;3; -0.000000, 1.500366, 0.161866;;, + 101;3; -0.000000, 1.500366, 0.161866;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 1;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 2;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 3;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 4;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 5;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 6;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 7;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 8;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 9;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 10;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 11;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 12;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 13;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 14;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 15;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 16;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 17;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 18;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 19;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 20;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 21;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 22;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 23;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 24;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 25;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 26;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 27;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 28;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 29;4; -0.916130,-0.376911,-0.020052,-0.017657;;, + 30;4; -0.898608,-0.346891,-0.079321,-0.069787;;, + 31;4; -0.871914,-0.301155,-0.169579,-0.149127;;, + 32;4; -0.841633,-0.249279,-0.271998,-0.239215;;, + 33;4; -0.814929,-0.203540,-0.362420,-0.318901;;, + 34;4; -0.797394,-0.173516,-0.421879,-0.371431;;, + 35;4; -0.791464,-0.163367,-0.442012,-0.389258;;, + 36;4; -0.862154,-0.220829,-0.270423,-0.221124;;, + 37;4; -0.926541,-0.293379,-0.037122, 0.037436;;, + 38;4; -0.909731,-0.319000, 0.056437, 0.177456;;, + 39;4; -0.884561,-0.341265, 0.119139, 0.277940;;, + 40;4; -0.862987,-0.354981, 0.147403, 0.328406;;, + 41;4; -0.855246,-0.359015, 0.153402, 0.340778;;, + 42;4; -0.859373,-0.360747, 0.143926, 0.319728;;, + 43;4; -0.871384,-0.365789, 0.116352, 0.258474;;, + 44;4; -0.888650,-0.373037, 0.076715, 0.170422;;, + 45;4; -0.905917,-0.380285, 0.037070, 0.082352;;, + 46;4; -0.917928,-0.385327, 0.009482, 0.021066;;, + 47;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 48;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 49;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 50;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 51;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 52;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 53;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 54;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 55;4; -0.916185,-0.397876, 0.000000,-0.000000;;, + 56;4; -0.899103,-0.429354, 0.000000,-0.000000;;, + 57;4; -0.874549,-0.474601, 0.000000,-0.000000;;, + 58;4; -0.849995,-0.519845, 0.000000,-0.000000;;, + 59;4; -0.832915,-0.551319, 0.000000,-0.000000;;, + 60;4; -0.827046,-0.562134, 0.000000,-0.000000;;, + 61;4; -0.828254,-0.559909, 0.000000,-0.000000;;, + 62;4; -0.831773,-0.553424, 0.000000,-0.000000;;, + 63;4; -0.837411,-0.543034, 0.000000,-0.000000;;, + 64;4; -0.844922,-0.529194, 0.000000,-0.000000;;, + 65;4; -0.853993,-0.512478, 0.000000,-0.000000;;, + 66;4; -0.864247,-0.493583, 0.000000,-0.000000;;, + 67;4; -0.875230,-0.473345, 0.000000,-0.000000;;, + 68;4; -0.886413,-0.452738, 0.000000,-0.000000;;, + 69;4; -0.897192,-0.432875, 0.000000,-0.000000;;, + 70;4; -0.906895,-0.414996, 0.000000,-0.000000;;, + 71;4; -0.914790,-0.400446, 0.000000,-0.000000;;, + 72;4; -0.920107,-0.390649, 0.000000,-0.000000;;, + 73;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 74;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 75;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 76;4; -0.921790,-0.386948,-0.005563, 0.002504;;, + 77;4; -0.921015,-0.386623,-0.021755, 0.009793;;, + 78;4; -0.919889,-0.386150,-0.045030, 0.020270;;, + 79;4; -0.918740,-0.385668,-0.068305, 0.030747;;, + 80;4; -0.917902,-0.385316,-0.084495, 0.038036;;, + 81;4; -0.917547,-0.385167,-0.090058, 0.040540;;, + 82;4; -0.917451,-0.385127,-0.087220, 0.039262;;, + 83;4; -0.917364,-0.385090,-0.078649, 0.035404;;, + 84;4; -0.917288,-0.385058,-0.064518, 0.029043;;, + 85;4; -0.917224,-0.385031,-0.045445, 0.020457;;, + 86;4; -0.917173,-0.385010,-0.022604, 0.010175;;, + 87;4; -0.917134,-0.384994, 0.002289,-0.001031;;, + 88;4; -0.917108,-0.384983, 0.027183,-0.012237;;, + 89;4; -0.917091,-0.384976, 0.050023,-0.022518;;, + 90;4; -0.917082,-0.384972, 0.069097,-0.031104;;, + 91;4; -0.917077,-0.384970, 0.083228,-0.037465;;, + 92;4; -0.917076,-0.384969, 0.091798,-0.041323;;, + 93;4; -0.917076,-0.384969, 0.094637,-0.042601;;, + 94;4; -0.917383,-0.385098, 0.088792,-0.039970;;, + 95;4; -0.918278,-0.385474, 0.071779,-0.032312;;, + 96;4; -0.919565,-0.386014, 0.047322,-0.021302;;, + 97;4; -0.920852,-0.386555, 0.022863,-0.010292;;, + 98;4; -0.921747,-0.386930, 0.005847,-0.002632;;, + 99;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 100;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 101;4; -0.922055,-0.387059, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube_005} + AnimationKey { //Position + 2; + 102; + 0;3; -0.018561,-0.012256,-0.107993;;, + 1;3; -0.018561,-0.012256,-0.107993;;, + 2;3; -0.018561,-0.012256,-0.107993;;, + 3;3; -0.018561,-0.012256,-0.107993;;, + 4;3; -0.018561,-0.012256,-0.107993;;, + 5;3; -0.018561,-0.012256,-0.107993;;, + 6;3; -0.018561,-0.012256,-0.107993;;, + 7;3; -0.018561,-0.012256,-0.107993;;, + 8;3; -0.018561,-0.012256,-0.107993;;, + 9;3; -0.018561,-0.012256,-0.107993;;, + 10;3; -0.018561,-0.012256,-0.107993;;, + 11;3; -0.018561,-0.012256,-0.107993;;, + 12;3; -0.018561,-0.012256,-0.107993;;, + 13;3; -0.018561,-0.012256,-0.107993;;, + 14;3; -0.018561,-0.012256,-0.107993;;, + 15;3; -0.018561,-0.012256,-0.107993;;, + 16;3; -0.018561,-0.012256,-0.107993;;, + 17;3; -0.018561,-0.012256,-0.107993;;, + 18;3; -0.018561,-0.012256,-0.107993;;, + 19;3; -0.018561,-0.012256,-0.107993;;, + 20;3; -0.018561,-0.012256,-0.107993;;, + 21;3; -0.018561,-0.012256,-0.107993;;, + 22;3; -0.018561,-0.012256,-0.107993;;, + 23;3; -0.018561,-0.012256,-0.107993;;, + 24;3; -0.018561,-0.012256,-0.107993;;, + 25;3; -0.018561,-0.012256,-0.107993;;, + 26;3; -0.018561,-0.012256,-0.107993;;, + 27;3; -0.018561,-0.012256,-0.107993;;, + 28;3; -0.018561,-0.012256,-0.107993;;, + 29;3; -0.018561,-0.012256,-0.107993;;, + 30;3; -0.018561,-0.012256,-0.107993;;, + 31;3; -0.018561,-0.012256,-0.107993;;, + 32;3; -0.018561,-0.012256,-0.107993;;, + 33;3; -0.018561,-0.012256,-0.107993;;, + 34;3; -0.018561,-0.012256,-0.107993;;, + 35;3; -0.018561,-0.012256,-0.107993;;, + 36;3; -0.018561,-0.012256,-0.107993;;, + 37;3; -0.018561,-0.012256,-0.107993;;, + 38;3; -0.018561,-0.012256,-0.107993;;, + 39;3; -0.018561,-0.012256,-0.107993;;, + 40;3; -0.018561,-0.012256,-0.107993;;, + 41;3; -0.018561,-0.012256,-0.107993;;, + 42;3; -0.018561,-0.012256,-0.107993;;, + 43;3; -0.018561,-0.012256,-0.107993;;, + 44;3; -0.018561,-0.012256,-0.107993;;, + 45;3; -0.018561,-0.012256,-0.107993;;, + 46;3; -0.018561,-0.012256,-0.107993;;, + 47;3; -0.018561,-0.012256,-0.107993;;, + 48;3; -0.018561,-0.012256,-0.107993;;, + 49;3; -0.018561,-0.012256,-0.107993;;, + 50;3; -0.018561,-0.012256,-0.107993;;, + 51;3; -0.018561,-0.012256,-0.107993;;, + 52;3; -0.018561,-0.012256,-0.107993;;, + 53;3; -0.018561,-0.012256,-0.107993;;, + 54;3; -0.018561,-0.012256,-0.107993;;, + 55;3; -0.018561,-0.012256,-0.107993;;, + 56;3; -0.018561,-0.012256,-0.107993;;, + 57;3; -0.018561,-0.012256,-0.107993;;, + 58;3; -0.018561,-0.012256,-0.107993;;, + 59;3; -0.018561,-0.012256,-0.107993;;, + 60;3; -0.018561,-0.012256,-0.107993;;, + 61;3; -0.018561,-0.012256,-0.107993;;, + 62;3; -0.018561,-0.012256,-0.107993;;, + 63;3; -0.018561,-0.012256,-0.107993;;, + 64;3; -0.018561,-0.012256,-0.107993;;, + 65;3; -0.018561,-0.012256,-0.107993;;, + 66;3; -0.018561,-0.012256,-0.107993;;, + 67;3; -0.018561,-0.012256,-0.107993;;, + 68;3; -0.018561,-0.012256,-0.107993;;, + 69;3; -0.018561,-0.012256,-0.107993;;, + 70;3; -0.018561,-0.012256,-0.107993;;, + 71;3; -0.018561,-0.012256,-0.107993;;, + 72;3; -0.018561,-0.012256,-0.107993;;, + 73;3; -0.018561,-0.012256,-0.107993;;, + 74;3; -0.018561,-0.012256,-0.107993;;, + 75;3; -0.018561,-0.012256,-0.107993;;, + 76;3; -0.018561,-0.012256,-0.107993;;, + 77;3; -0.018561,-0.012256,-0.107993;;, + 78;3; -0.018561,-0.012256,-0.107993;;, + 79;3; -0.018561,-0.012256,-0.107993;;, + 80;3; -0.018561,-0.012256,-0.107993;;, + 81;3; -0.018561,-0.012256,-0.107993;;, + 82;3; -0.018561,-0.012256,-0.107993;;, + 83;3; -0.018561,-0.012256,-0.107993;;, + 84;3; -0.018561,-0.012256,-0.107993;;, + 85;3; -0.018561,-0.012256,-0.107993;;, + 86;3; -0.018561,-0.012256,-0.107993;;, + 87;3; -0.018561,-0.012256,-0.107993;;, + 88;3; -0.018561,-0.012256,-0.107993;;, + 89;3; -0.018561,-0.012256,-0.107993;;, + 90;3; -0.018561,-0.012256,-0.107993;;, + 91;3; -0.018561,-0.012256,-0.107993;;, + 92;3; -0.018561,-0.012256,-0.107993;;, + 93;3; -0.018561,-0.012256,-0.107993;;, + 94;3; -0.018561,-0.012256,-0.107993;;, + 95;3; -0.018561,-0.012256,-0.107993;;, + 96;3; -0.018561,-0.012256,-0.107993;;, + 97;3; -0.018561,-0.012256,-0.107993;;, + 98;3; -0.018561,-0.012256,-0.107993;;, + 99;3; -0.018561,-0.012256,-0.107993;;, + 100;3; -0.018561,-0.012256,-0.107993;;, + 101;3; -0.018561,-0.012256,-0.107993;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs_mc/models/mobs_horseh1.x b/mods/mobs_mc/models/mobs_horseh1.x new file mode 100644 index 000000000..56e5496d0 --- /dev/null +++ b/mods/mobs_mc/models/mobs_horseh1.x @@ -0,0 +1,5821 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 0.000543,-2.736834, 0.000000, 0.000000, + 2.736834, 0.000543, 0.000000, 0.000000, + 0.000000, 0.000000, 2.736834, 0.000000, + -0.050547,14.702777, 0.326405, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 5.378092,-1.647068, 3.136816, 1.000000;; + } + Frame Armature_Bone_001 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.618225, 0.089278,-0.876976, 1.000000;; + } + } //End of Armature_Bone_001 + Frame Armature_Bone_002 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + 0.618225, 3.135167,-1.284375, 1.000000;; + } + } //End of Armature_Bone_002 + Frame Armature_Bone_003 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + -0.648382, 0.089278,-0.876976, 1.000000;; + } + } //End of Armature_Bone_003 + Frame Armature_Bone_004 { + FrameTransformMatrix { + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 1.000000, 0.000000, 0.000000, 0.000000, + -0.648382, 3.135167,-1.230253, 1.000000;; + } + } //End of Armature_Bone_004 + Frame Armature_Bone_005 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000,-0.303766,-0.952747, 0.000000, + -0.000000, 0.952747,-0.303766, 0.000000, + 0.000000,-0.293364, 0.572615, 1.000000;; + } + } //End of Armature_Bone_005 + Frame Armature_Bone_006 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + 0.000000, 0.681913, 0.731433, 0.000000, + 0.000000,-0.731433, 0.681913, 0.000000, + 0.000000, 3.228616, 0.252948, 1.000000;; + } + Frame Armature_Bone_007 { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.700370,-0.713780, 0.000000, + 0.000000, 0.713780, 0.700370, 0.000000, + -0.000000, 1.500366, 0.161866, 1.000000;; + } + } //End of Armature_Bone_007 + } //End of Armature_Bone_006 + } //End of Armature_Body + Frame Cube_005 { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.018560,-0.012256,-0.107993, 1.000000;; + } + Mesh { //Mesh Mesh + 328; + 5.711963; 1.214301; 0.014691;, + 5.711963; 1.757811; 0.014691;, + 5.711963; 1.757811; 2.011055;, + 5.711963; 1.214301; 2.011055;, + 5.711963; 1.757811; 0.014691;, + 6.255472; 1.757811; 0.014691;, + 6.255472; 1.757811; 2.011055;, + 5.711963; 1.757811; 2.011055;, + 6.255472; 1.757811; 0.014691;, + 6.255472; 1.214301; 0.014691;, + 6.255472; 1.214301; 2.011055;, + 6.255472; 1.757811; 2.011055;, + 6.255472; 1.214301; 0.014691;, + 5.711963; 1.214301; 0.014691;, + 5.711963; 1.214301; 2.011055;, + 6.255472; 1.214301; 2.011055;, + 6.255472; 1.214301; 0.014691;, + 6.255472; 1.757811; 0.014691;, + 5.711963; 1.757811; 0.014691;, + 5.711963; 1.214301; 0.014691;, + 5.711963; 1.214301; 2.011055;, + 5.711963; 1.757811; 2.011055;, + 6.255472; 1.757811; 2.011055;, + 6.255472; 1.214301; 2.011055;, + 4.461220; 1.214301; 0.014691;, + 4.461220; 1.757811; 0.014691;, + 4.461220; 1.757811; 2.011055;, + 4.461220; 1.214301; 2.011055;, + 4.461220; 1.757811; 0.014691;, + 5.004729; 1.757811; 0.014691;, + 5.004729; 1.757811; 2.011055;, + 4.461220; 1.757811; 2.011055;, + 5.004729; 1.757811; 0.014691;, + 5.004729; 1.214301; 0.014691;, + 5.004729; 1.214301; 2.011055;, + 5.004729; 1.757811; 2.011055;, + 5.004729; 1.214301; 0.014691;, + 4.461220; 1.214301; 0.014691;, + 4.461220; 1.214301; 2.011055;, + 5.004729; 1.214301; 2.011055;, + 5.004729; 1.214301; 0.014691;, + 5.004729; 1.757811; 0.014691;, + 4.461220; 1.757811; 0.014691;, + 4.461220; 1.214301; 0.014691;, + 4.461220; 1.214301; 2.011055;, + 4.461220; 1.757811; 2.011055;, + 5.004729; 1.757811; 2.011055;, + 5.004729; 1.214301; 2.011055;, + 4.461220;-1.811143; 0.014691;, + 4.461220;-1.267634; 0.014691;, + 4.461220;-1.267634; 2.273839;, + 4.461220;-1.811143; 2.273839;, + 4.461220;-1.267634; 0.014691;, + 5.004729;-1.267634; 0.014691;, + 5.004729;-1.267634; 2.273839;, + 4.461220;-1.267634; 2.273839;, + 5.004729;-1.267634; 0.014691;, + 5.004729;-1.811143; 0.014691;, + 5.004729;-1.811143; 2.273839;, + 5.004729;-1.267634; 2.273839;, + 5.004729;-1.811143; 0.014691;, + 4.461220;-1.811143; 0.014691;, + 4.461220;-1.811143; 2.273839;, + 5.004729;-1.811143; 2.273839;, + 5.004729;-1.811143; 0.014691;, + 5.004729;-1.267634; 0.014691;, + 4.461220;-1.267634; 0.014691;, + 4.461220;-1.811143; 0.014691;, + 4.461220;-1.811143; 2.273839;, + 4.461220;-1.267634; 2.273839;, + 5.004729;-1.267634; 2.273839;, + 5.004729;-1.811143; 2.273839;, + 5.711963;-1.811143; 0.014691;, + 5.711963;-1.267634; 0.014691;, + 5.711963;-1.267634; 2.273839;, + 5.711963;-1.811143; 2.273839;, + 5.711963;-1.267634; 0.014691;, + 6.255472;-1.267634; 0.014691;, + 6.255472;-1.267634; 2.273839;, + 5.711963;-1.267634; 2.273839;, + 6.255472;-1.267634; 0.014691;, + 6.255472;-1.811143; 0.014691;, + 6.255472;-1.811143; 2.273839;, + 6.255472;-1.267634; 2.273839;, + 6.255472;-1.811143; 0.014691;, + 5.711963;-1.811143; 0.014691;, + 5.711963;-1.811143; 2.273839;, + 6.255472;-1.811143; 2.273839;, + 6.255472;-1.811143; 0.014691;, + 6.255472;-1.267634; 0.014691;, + 5.711963;-1.267634; 0.014691;, + 5.711963;-1.811143; 0.014691;, + 5.711963;-1.811143; 2.273839;, + 5.711963;-1.267634; 2.273839;, + 6.255472;-1.267634; 2.273839;, + 6.255472;-1.811143; 2.273839;, + 5.126820;-2.416029; 2.539834;, + 5.126820;-2.272505; 2.415637;, + 5.126820;-1.768297; 3.669943;, + 5.126820;-2.041777; 3.794139;, + 5.126820;-2.272505; 2.415637;, + 5.623676;-2.272505; 2.415637;, + 5.623676;-1.768297; 3.669943;, + 5.126820;-1.768297; 3.669943;, + 5.623676;-2.272505; 2.415637;, + 5.623676;-2.416029; 2.539834;, + 5.623676;-2.046629; 3.794139;, + 5.623676;-1.768297; 3.669943;, + 5.623676;-2.416029; 2.539834;, + 5.126820;-2.416029; 2.539834;, + 5.126820;-2.041777; 3.794139;, + 5.623676;-2.046629; 3.794139;, + 5.623676;-2.416029; 2.539834;, + 5.623676;-2.272505; 2.415637;, + 5.126820;-2.272505; 2.415637;, + 5.126820;-2.416029; 2.539834;, + 5.126820;-2.041777; 3.794139;, + 5.126820;-1.768297; 3.669943;, + 5.623676;-1.768297; 3.669943;, + 5.623676;-2.046629; 3.794139;, + 4.485567;-0.007471; 1.982810;, + 4.485567; 1.788138; 1.982810;, + 4.485567; 1.788138; 3.877114;, + 4.485567;-0.007471; 3.877114;, + 4.485567; 1.788138; 1.982810;, + 6.264929; 1.788138; 1.982810;, + 6.264929; 1.788138; 3.877114;, + 4.485567; 1.788138; 3.877114;, + 6.264929;-0.007471; 1.982810;, + 6.264929;-1.824568; 2.265056;, + 6.264929;-1.824568; 3.877114;, + 6.264929;-0.007471; 3.877114;, + 6.264929;-1.824568; 2.265056;, + 4.485567;-1.824568; 2.265056;, + 4.485567;-1.824568; 3.877114;, + 6.264929;-1.824568; 3.877114;, + 6.264929;-0.007471; 1.982810;, + 6.264929; 1.788138; 1.982810;, + 4.485567; 1.788138; 1.982810;, + 4.485567;-0.007471; 1.982810;, + 4.485567;-0.007471; 3.877114;, + 4.485567; 1.788138; 3.877114;, + 6.264929; 1.788138; 3.877114;, + 6.264929;-0.007471; 3.877114;, + 4.924141; 1.861983; 2.879276;, + 4.924141; 3.050116; 4.163679;, + 4.924141; 2.256643; 4.897679;, + 4.924141; 1.068510; 3.613276;, + 4.924141; 3.050116; 4.163679;, + 5.826355; 3.050116; 4.163679;, + 5.826355; 2.256643; 4.897679;, + 4.924141; 2.256643; 4.897679;, + 5.826355; 3.050116; 4.163679;, + 5.826355; 1.861983; 2.879276;, + 5.826355; 1.068510; 3.613276;, + 5.826355; 2.256643; 4.897679;, + 5.826355; 1.861983; 2.879276;, + 4.924141; 1.861983; 2.879276;, + 4.924141; 1.068510; 3.613276;, + 5.826355; 1.068510; 3.613276;, + 5.826355; 1.861983; 2.879276;, + 5.826355; 3.050116; 4.163679;, + 4.924141; 3.050116; 4.163679;, + 4.924141; 1.861983; 2.879276;, + 4.924141; 1.068510; 3.613276;, + 4.924141; 2.256643; 4.897679;, + 5.826355; 2.256643; 4.897679;, + 5.826355; 1.068510; 3.613276;, + 4.485567;-1.824568; 3.877114;, + 4.485567;-0.007471; 3.877114;, + 6.264929;-0.007471; 3.877114;, + 6.264929;-1.824568; 3.877114;, + 6.264929;-1.824568; 2.265056;, + 6.264929;-0.007471; 1.982810;, + 4.485567;-0.007471; 1.982810;, + 4.485567;-1.824568; 2.265056;, + 6.264929; 1.788138; 1.982810;, + 6.264929;-0.007471; 1.982810;, + 6.264929;-0.007471; 3.877114;, + 6.264929; 1.788138; 3.877114;, + 4.485567;-1.824568; 2.265056;, + 4.485567;-0.007471; 1.982810;, + 4.485567;-0.007471; 3.877114;, + 4.485567;-1.824568; 3.877114;, + 4.960369; 2.198520; 4.144218;, + 4.960369; 3.947400; 4.144217;, + 4.960369; 3.947400; 4.961417;, + 4.960369; 2.198520; 4.961417;, + 4.960369; 3.947400; 4.144217;, + 5.790127; 3.947400; 4.144217;, + 5.790127; 3.947400; 4.961417;, + 4.960369; 3.947400; 4.961417;, + 5.790127; 3.947400; 4.144217;, + 5.790127; 2.198520; 4.144218;, + 5.790127; 2.198520; 4.961417;, + 5.790127; 3.947400; 4.961417;, + 5.790127; 2.198520; 4.144218;, + 4.960369; 2.198520; 4.144218;, + 4.960369; 2.198520; 4.961417;, + 5.790127; 2.198520; 4.961417;, + 5.790127; 2.198520; 4.144218;, + 5.790127; 3.947400; 4.144217;, + 4.960369; 3.947400; 4.144217;, + 4.960369; 2.198520; 4.144218;, + 4.960369; 2.198520; 4.961417;, + 4.960369; 3.947400; 4.961417;, + 5.790127; 3.947400; 4.961417;, + 5.790127; 2.198520; 4.961417;, + 5.832705; 2.367353; 4.901549;, + 5.832705; 2.235041; 4.901549;, + 5.813271; 2.235041; 5.427129;, + 5.813271; 2.367353; 5.427129;, + 5.832705; 2.235041; 4.901549;, + 5.516937; 2.235041; 4.889873;, + 5.497502; 2.235041; 5.415453;, + 5.813271; 2.235041; 5.427129;, + 5.516937; 2.235041; 4.889873;, + 5.516937; 2.367352; 4.889873;, + 5.497502; 2.367353; 5.415453;, + 5.497502; 2.235041; 5.415453;, + 5.516937; 2.367352; 4.889873;, + 5.832705; 2.367353; 4.901549;, + 5.813271; 2.367353; 5.427129;, + 5.497502; 2.367353; 5.415453;, + 5.516937; 2.367352; 4.889873;, + 5.516937; 2.235041; 4.889873;, + 5.832705; 2.235041; 4.901549;, + 5.832705; 2.367353; 4.901549;, + 5.813271; 2.367353; 5.427129;, + 5.813271; 2.235041; 5.427129;, + 5.497502; 2.235041; 5.415453;, + 5.497502; 2.367353; 5.415453;, + 5.220055; 2.367353; 4.896557;, + 5.220055; 2.235041; 4.896557;, + 5.226921; 2.235041; 5.422451;, + 5.226921; 2.367353; 5.422451;, + 5.220055; 2.235041; 4.896557;, + 4.904097; 2.235041; 4.900682;, + 4.910963; 2.235041; 5.426576;, + 5.226921; 2.235041; 5.422451;, + 4.904097; 2.235041; 4.900682;, + 4.904097; 2.367353; 4.900682;, + 4.910964; 2.367353; 5.426576;, + 4.910963; 2.235041; 5.426576;, + 4.904097; 2.367353; 4.900682;, + 5.220055; 2.367353; 4.896557;, + 5.226921; 2.367353; 5.422451;, + 4.910964; 2.367353; 5.426576;, + 4.904097; 2.367353; 4.900682;, + 4.904097; 2.235041; 4.900682;, + 5.220055; 2.235041; 4.896557;, + 5.220055; 2.367353; 4.896557;, + 5.226921; 2.367353; 5.422451;, + 5.226921; 2.235041; 5.422451;, + 4.910963; 2.235041; 5.426576;, + 4.910964; 2.367353; 5.426576;, + 5.338617; 1.345061; 3.910203;, + 5.338617; 1.868306; 4.420342;, + 5.338617; 1.633551; 4.661128;, + 5.338617; 1.110306; 4.150990;, + 5.475039; 2.103096; 4.649252;, + 5.338617; 2.103096; 4.649252;, + 5.338617; 1.868306; 4.420342;, + 5.475039; 1.868306; 4.420342;, + 5.475039; 1.868306; 4.420342;, + 5.475039; 1.345061; 3.910203;, + 5.475039; 1.110306; 4.150990;, + 5.475039; 1.633551; 4.661128;, + 5.475039; 1.345061; 3.910203;, + 5.338617; 1.345061; 3.910203;, + 5.338617; 1.110306; 4.150990;, + 5.475039; 1.110306; 4.150990;, + 5.475039; 1.345061; 3.910203;, + 5.475039; 1.868306; 4.420342;, + 5.338617; 1.868306; 4.420342;, + 5.338617; 1.345061; 3.910203;, + 5.338617; 1.110306; 4.150990;, + 5.338617; 1.633551; 4.661128;, + 5.475039; 1.633551; 4.661128;, + 5.475039; 1.110306; 4.150990;, + 5.430524; 2.314306; 4.819111;, + 5.294102; 2.314306; 4.819111;, + 5.338617; 2.103096; 4.649252;, + 5.475039; 2.103096; 4.649252;, + 5.338617; 1.868341; 4.890038;, + 5.475039; 1.868341; 4.890038;, + 5.475039; 1.633551; 4.661128;, + 5.338617; 1.633551; 4.661128;, + 5.475039; 1.868341; 4.890038;, + 5.475039; 2.103096; 4.649252;, + 5.475039; 1.868306; 4.420342;, + 5.475039; 1.633551; 4.661128;, + 5.338617; 1.633551; 4.661128;, + 5.338617; 1.868306; 4.420342;, + 5.338617; 2.103096; 4.649252;, + 5.338617; 1.868341; 4.890038;, + 5.430524; 2.565614; 4.868924;, + 5.294102; 2.565614; 4.868924;, + 5.294102; 2.314306; 4.819111;, + 5.430524; 2.314306; 4.819111;, + 5.338617; 1.868341; 4.890038;, + 5.338617; 2.103096; 4.649252;, + 5.294102; 2.314306; 4.819111;, + 5.294102; 2.277202; 5.153343;, + 5.294102; 2.277202; 5.153343;, + 5.430524; 2.277202; 5.153343;, + 5.475039; 1.868341; 4.890038;, + 5.338617; 1.868341; 4.890038;, + 5.430524; 2.277202; 5.153343;, + 5.430524; 2.314306; 4.819111;, + 5.475039; 2.103096; 4.649252;, + 5.475039; 1.868341; 4.890038;, + 5.294102; 2.565614; 4.868924;, + 5.430524; 2.565614; 4.868924;, + 5.430524; 2.697835; 5.178125;, + 5.294102; 2.697835; 5.178125;, + 5.430524; 2.697835; 5.178125;, + 5.430524; 2.565614; 4.868924;, + 5.430524; 2.314306; 4.819111;, + 5.430524; 2.277202; 5.153343;, + 5.294102; 2.277202; 5.153343;, + 5.294102; 2.314306; 4.819111;, + 5.294102; 2.565614; 4.868924;, + 5.294102; 2.697835; 5.178125;, + 5.294102; 2.697835; 5.178125;, + 5.430524; 2.697835; 5.178125;, + 5.430524; 2.277202; 5.153343;, + 5.294102; 2.277202; 5.153343;; + 82; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;; + MeshNormals { //Mesh Normals + 328; + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.927841;-0.372975;, + 0.000000; 0.927841;-0.372975;, + 0.000000; 0.927841;-0.372975;, + 0.000000; 0.927841;-0.372975;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.004682;-0.958750; 0.284212;, + -0.004682;-0.958750; 0.284212;, + -0.004682;-0.958750; 0.284212;, + -0.004682;-0.958750; 0.284212;, + 0.000000;-0.654356;-0.756187;, + 0.000000;-0.654356;-0.756187;, + 0.000000;-0.654356;-0.756187;, + 0.000000;-0.654356;-0.756187;, + 0.002005; 0.410470; 0.911872;, + 0.002005; 0.410470; 0.911872;, + 0.002005; 0.410470; 0.911872;, + 0.002005; 0.410470; 0.911872;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.679060; 0.734082;, + 0.000000; 0.679060; 0.734082;, + 0.000000; 0.679060; 0.734082;, + 0.000000; 0.679060; 0.734082;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.679060;-0.734082;, + 0.000000;-0.679060;-0.734082;, + 0.000000;-0.679060;-0.734082;, + 0.000000;-0.679060;-0.734082;, + 0.000000; 0.734082;-0.679061;, + 0.000000; 0.734082;-0.679061;, + 0.000000; 0.734082;-0.679061;, + 0.000000; 0.734082;-0.679061;, + 0.000000;-0.734082; 0.679061;, + 0.000000;-0.734082; 0.679061;, + 0.000000;-0.734082; 0.679061;, + 0.000000;-0.734082; 0.679061;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.153487;-0.988151;, + 0.000000;-0.153487;-0.988151;, + 0.000000;-0.153487;-0.988151;, + 0.000000;-0.153487;-0.988151;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.999317; 0.000000; 0.036952;, + 0.999317; 0.000000; 0.036952;, + 0.999317; 0.000000; 0.036952;, + 0.999317; 0.000000; 0.036952;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.999317; 0.000000;-0.036952;, + -0.999317; 0.000000;-0.036952;, + -0.999317; 0.000000;-0.036952;, + -0.999317; 0.000000;-0.036952;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + -0.000000; 1.000000;-0.000000;, + 0.036952; 0.000000;-0.999317;, + 0.036952; 0.000000;-0.999317;, + 0.036952; 0.000000;-0.999317;, + 0.036952; 0.000000;-0.999317;, + -0.036951; 0.000000; 0.999317;, + -0.036951; 0.000000; 0.999317;, + -0.036951; 0.000000; 0.999317;, + -0.036951; 0.000000; 0.999317;, + 0.999915; 0.000000;-0.013055;, + 0.999915; 0.000000;-0.013055;, + 0.999915; 0.000000;-0.013055;, + 0.999915; 0.000000;-0.013055;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.999915; 0.000002; 0.013055;, + -0.999915; 0.000002; 0.013055;, + -0.999915; 0.000002; 0.013055;, + -0.999915; 0.000002; 0.013055;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.013055; 0.000000;-0.999915;, + -0.013055; 0.000000;-0.999915;, + -0.013055; 0.000000;-0.999915;, + -0.013055; 0.000000;-0.999915;, + 0.013054;-0.000002; 0.999915;, + 0.013054;-0.000002; 0.999915;, + 0.013054;-0.000002; 0.999915;, + 0.013054;-0.000002; 0.999915;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.698083;-0.716016;, + 0.000000; 0.698083;-0.716016;, + 0.000000; 0.698083;-0.716016;, + 0.000000; 0.698083;-0.716016;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.716017;-0.698083;, + 0.000000;-0.716017;-0.698083;, + 0.000000;-0.716017;-0.698083;, + 0.000000;-0.716017;-0.698083;, + 0.000000; 0.698083;-0.716017;, + 0.000000; 0.698083;-0.716017;, + 0.000000; 0.698083;-0.716017;, + 0.000000; 0.698083;-0.716017;, + 0.000000;-0.698082; 0.716018;, + 0.000000;-0.698082; 0.716018;, + 0.000000;-0.698082; 0.716018;, + 0.000000;-0.698082; 0.716018;, + 0.000000; 0.626696;-0.779264;, + 0.000000; 0.626696;-0.779264;, + 0.000000; 0.626696;-0.779264;, + 0.000000; 0.626696;-0.779264;, + 0.000000;-0.698083; 0.716016;, + 0.000000;-0.698083; 0.716016;, + 0.000000;-0.698083; 0.716016;, + 0.000000;-0.698083; 0.716016;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.194434;-0.980916;, + 0.000000; 0.194434;-0.980916;, + 0.000000; 0.194434;-0.980916;, + 0.000000; 0.194434;-0.980916;, + -0.992949;-0.107171;-0.050669;, + -0.992949;-0.107171;-0.050669;, + -0.992949;-0.107171;-0.050669;, + -0.992949;-0.107171;-0.050669;, + 0.000000;-0.541436; 0.840742;, + 0.000000;-0.541436; 0.840742;, + 0.000000;-0.541436; 0.840742;, + 0.000000;-0.541436; 0.840742;, + 0.992949; 0.107171; 0.050669;, + 0.992949; 0.107171; 0.050669;, + 0.992949; 0.107171; 0.050669;, + 0.992949; 0.107171; 0.050669;, + 0.000000; 0.919461;-0.393182;, + 0.000000; 0.919461;-0.393182;, + 0.000000; 0.919461;-0.393182;, + 0.000000; 0.919461;-0.393182;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-0.058814; 0.998269;, + 0.000000;-0.058814; 0.998269;, + 0.000000;-0.058814; 0.998269;, + 0.000000;-0.058814; 0.998269;; + 82; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 82; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.000000; 0.000000; 0.000000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"mobs_horse.png";} + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 328; + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.649057; 0.260377;, + 0.592453; 0.260377;, + 0.592453; 0.007547;, + 0.649057; 0.007547;, + 0.479245; 0.260377;, + 0.426415; 0.260377;, + 0.426415; 0.007547;, + 0.479245; 0.007547;, + 0.592453; 0.260377;, + 0.535849; 0.260377;, + 0.535849; 0.007547;, + 0.592453; 0.007547;, + 0.535849; 0.260377;, + 0.479245; 0.260377;, + 0.479245; 0.007547;, + 0.535849; 0.007547;, + 0.532075; 0.264151;, + 0.532075; 0.316981;, + 0.479245; 0.316981;, + 0.479245; 0.264151;, + 0.422642; 0.316981;, + 0.422642; 0.264151;, + 0.475472; 0.264151;, + 0.475472; 0.316981;, + 0.294340; 0.094340;, + 0.267925; 0.094340;, + 0.267925; 0.037736;, + 0.294340; 0.037736;, + 0.264151; 0.090566;, + 0.237736; 0.090566;, + 0.237736; 0.037736;, + 0.264151; 0.037736;, + 0.294340; 0.090566;, + 0.267925; 0.090566;, + 0.267925; 0.037736;, + 0.294340; 0.037736;, + 0.264151; 0.090566;, + 0.237736; 0.090566;, + 0.237736; 0.037736;, + 0.264151; 0.037736;, + 0.294340; 0.007547;, + 0.294340; 0.033962;, + 0.267925; 0.033962;, + 0.267925; 0.007547;, + 0.237736; 0.033962;, + 0.237736; 0.011321;, + 0.264151; 0.011321;, + 0.264151; 0.033962;, + 0.320755; 0.220755;, + 0.320755; 0.324528;, + 0.226415; 0.316981;, + 0.226415; 0.213208;, + 0.109434; 0.007547;, + 0.218868; 0.007547;, + 0.218868; 0.101887;, + 0.109434; 0.101887;, + 0.320755; 0.213208;, + 0.320755; 0.316981;, + 0.222642; 0.316981;, + 0.222642; 0.213208;, + 0.422642; 0.101887;, + 0.313208; 0.101887;, + 0.313208; 0.007547;, + 0.422642; 0.007547;, + 0.430189; 0.213208;, + 0.430189; 0.320755;, + 0.320755; 0.324528;, + 0.320755; 0.220755;, + 0.109434; 0.213208;, + 0.109434; 0.101887;, + 0.218868; 0.101887;, + 0.218868; 0.213208;, + 0.309434; 0.335849;, + 0.309434; 0.460377;, + 0.237736; 0.460377;, + 0.237736; 0.335849;, + 0.305660; 0.464151;, + 0.305660; 0.532075;, + 0.226415; 0.532075;, + 0.226415; 0.464151;, + 0.305660; 0.532075;, + 0.305660; 0.660377;, + 0.241509; 0.660377;, + 0.241509; 0.532075;, + 0.011321; 0.532075;, + 0.011321; 0.464151;, + 0.094340; 0.464151;, + 0.094340; 0.532075;, + 0.452830; 0.532075;, + 0.328302; 0.532075;, + 0.328302; 0.464151;, + 0.452830; 0.464151;, + 0.090566; 0.464151;, + 0.222642; 0.464151;, + 0.222642; 0.532075;, + 0.094340; 0.532075;, + 0.109434; 0.324528;, + 0.109434; 0.213208;, + 0.218868; 0.213208;, + 0.218868; 0.324528;, + 0.430189; 0.105660;, + 0.430189; 0.213208;, + 0.320755; 0.220755;, + 0.320755; 0.116981;, + 0.320755; 0.109434;, + 0.320755; 0.213208;, + 0.222642; 0.213208;, + 0.222642; 0.109434;, + 0.320755; 0.116981;, + 0.320755; 0.220755;, + 0.226415; 0.213208;, + 0.226415; 0.109434;, + 0.544681; 0.870305;, + 0.544681; 0.437432;, + 0.686609; 0.437432;, + 0.686609; 0.870305;, + 0.686609; 0.295504;, + 0.847048; 0.295504;, + 0.847048; 0.437432;, + 0.686609; 0.437432;, + 0.982805; 0.437432;, + 0.982805; 0.870305;, + 0.847048; 0.870305;, + 0.847048; 0.437432;, + 0.847048; 0.981379;, + 0.686609; 0.981379;, + 0.686609; 0.870305;, + 0.847048; 0.870305;, + 0.847048; 0.011650;, + 0.847048; 0.295504;, + 0.686609; 0.295504;, + 0.686609; 0.011650;, + 0.686609; 0.870305;, + 0.686609; 0.437432;, + 0.847048; 0.437432;, + 0.847048; 0.870305;, + 0.011321; 0.362264;, + 0.011321; 0.350943;, + 0.094340; 0.350943;, + 0.094340; 0.362264;, + 0.011321; 0.449057;, + 0.011321; 0.407547;, + 0.094340; 0.407547;, + 0.094340; 0.449057;, + 0.120755; 0.449057;, + 0.094340; 0.449057;, + 0.094340; 0.381132;, + 0.120755; 0.381132;, + 0.011321; 0.407547;, + 0.011321; 0.362264;, + 0.094340; 0.362264;, + 0.094340; 0.407547;, + 0.124528; 0.407547;, + 0.135849; 0.407547;, + 0.135849; 0.449057;, + 0.124528; 0.449057;, + 0.135849; 0.350943;, + 0.135849; 0.362264;, + 0.094340; 0.362264;, + 0.094340; 0.350943;, + 0.094340; 0.350943;, + 0.094340; 0.362264;, + 0.011321; 0.362264;, + 0.011321; 0.350943;, + 0.094340; 0.407547;, + 0.094340; 0.449057;, + 0.011321; 0.449057;, + 0.011321; 0.407547;, + 0.120755; 0.449057;, + 0.094340; 0.449057;, + 0.094340; 0.381132;, + 0.120755; 0.381132;, + 0.094340; 0.362264;, + 0.094340; 0.407547;, + 0.011321; 0.407547;, + 0.011321; 0.362264;, + 0.135849; 0.350943;, + 0.135849; 0.362264;, + 0.094340; 0.362264;, + 0.094340; 0.350943;, + 0.135849; 0.449057;, + 0.124528; 0.449057;, + 0.124528; 0.407547;, + 0.135849; 0.407547;, + 0.353869; 0.965635;, + 0.363032; 0.880275;, + 0.402328; 0.884482;, + 0.393165; 0.969843;, + 0.459044; 0.845672;, + 0.475068; 0.845131;, + 0.476366; 0.883591;, + 0.460342; 0.884132;, + 0.449847; 0.880275;, + 0.459010; 0.965635;, + 0.419714; 0.969843;, + 0.410551; 0.884482;, + 0.499060; 0.930272;, + 0.515093; 0.930321;, + 0.514972; 0.969843;, + 0.498939; 0.969794;, + 0.463236; 0.969843;, + 0.460342; 0.884132;, + 0.476366; 0.883591;, + 0.479260; 0.969302;, + 0.498635; 0.747638;, + 0.496324; 0.831331;, + 0.480297; 0.830888;, + 0.482608; 0.747195;, + 0.463198; 0.813687;, + 0.479222; 0.813146;, + 0.475068; 0.845131;, + 0.459044; 0.845672;, + 0.495287; 0.868885;, + 0.479260; 0.868443;, + 0.480297; 0.830888;, + 0.496324; 0.831331;, + 0.406439; 0.846179;, + 0.445735; 0.841972;, + 0.449847; 0.880275;, + 0.410551; 0.884482;, + 0.402328; 0.884482;, + 0.363032; 0.880275;, + 0.367143; 0.841972;, + 0.406439; 0.846179;, + 0.462318; 0.787618;, + 0.478342; 0.787077;, + 0.479222; 0.813146;, + 0.463198; 0.813687;, + 0.406439; 0.846179;, + 0.367143; 0.841972;, + 0.367475; 0.809982;, + 0.401058; 0.789149;, + 0.498939; 0.926145;, + 0.482912; 0.925703;, + 0.479260; 0.868443;, + 0.495287; 0.868885;, + 0.411820; 0.789149;, + 0.445404; 0.809982;, + 0.445735; 0.841972;, + 0.406439; 0.846179;, + 0.478342; 0.787077;, + 0.462318; 0.787618;, + 0.461116; 0.752015;, + 0.477140; 0.751474;, + 0.440065; 0.748496;, + 0.459044; 0.783153;, + 0.445404; 0.809982;, + 0.411820; 0.789149;, + 0.401058; 0.789149;, + 0.367475; 0.809982;, + 0.353835; 0.783153;, + 0.372813; 0.748496;, + 0.497732; 0.969843;, + 0.481705; 0.969400;, + 0.482912; 0.925703;, + 0.498939; 0.926145;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 7; + 21; + 8; + } + SkinWeights { + "Armature_Body"; + 52; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 149, + 152, + 153, + 154, + 156, + 157, + 159, + 160, + 161, + 163, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183; + 0.999800, + 0.999998, + 0.989625, + 0.994777, + 0.999998, + 0.997553, + 0.990579, + 0.989625, + 0.995233, + 0.992923, + 0.996743, + 0.993652, + 0.992923, + 0.999601, + 0.999984, + 0.996743, + 0.995233, + 0.997553, + 0.999998, + 0.999800, + 0.994777, + 0.989625, + 0.990579, + 0.993652, + 0.054215, + 0.017137, + 0.017137, + 0.270764, + 0.041779, + 0.270764, + 0.054215, + 0.041779, + 0.270764, + 0.017137, + 0.054215, + 0.041779, + 0.999984, + 0.994777, + 0.993652, + 0.996743, + 0.992923, + 0.995233, + 0.999800, + 0.999601, + 0.997553, + 0.995233, + 0.993652, + 0.990579, + 0.999601, + 0.999800, + 0.994777, + 0.999984; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -5.396653, 1.634812,-3.244809, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_Bone_001"; + 52; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 120, + 123, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 139, + 140, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 177, + 178, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.003256, + 0.001623, + 0.000000, + 0.000000, + 0.000000, + 0.003256, + 0.000000, + 0.000000, + 0.000000, + 0.001623, + 0.000000, + 0.000000, + 0.001623, + 0.003256, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.001623, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.545534, 2.367833,-6.014878, 1.000000;; + } //End of Armature_Bone_001 Skin Weights + SkinWeights { + "Armature_Bone_002"; + 58; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 169, + 170, + 171, + 172, + 173, + 174, + 176, + 177, + 178, + 179, + 181, + 182; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000001, + 0.000002, + 0.000000, + 0.000000, + 0.000002, + 0.000000, + 0.009421, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.004725, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000002, + 0.000001, + 0.000000, + 0.000000, + 0.009421, + 0.004725, + 0.000000, + 0.004725, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.004725, + 0.009421, + 0.000001, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.500354, 1.960434,-6.014878, 1.000000;; + } //End of Armature_Bone_002 Skin Weights + SkinWeights { + "Armature_Bone_003"; + 61; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 120, + 121, + 123, + 124, + 125, + 126, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 142, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.003547, + 0.007077, + 0.000000, + 0.000000, + 0.007077, + 0.000000, + 0.000000, + 0.000000, + 0.003547, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.007077, + 0.003547, + 0.000000, + 0.000000, + 0.000000, + 0.003547, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.545534, 2.367833,-4.748271, 1.000000;; + } //End of Armature_Bone_003 Skin Weights + SkinWeights { + "Armature_Bone_004"; + 61; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 176, + 177, + 178, + 179, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.002447, + 0.000000, + 0.000000, + 0.001221, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.001221, + 0.002447, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.001221, + 0.000000, + 0.002447, + 0.001221, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 0.000000, 0.000000, 1.000000, 0.000000, + -1.000000, 0.000000, 0.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.500354, 2.014556,-4.748271, 1.000000;; + } //End of Armature_Bone_004 Skin Weights + SkinWeights { + "Armature_Bone_005"; + 64; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000199, + 0.000000, + 0.010375, + 0.005223, + 0.000000, + 0.000000, + 0.000000, + 0.010375, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000399, + 0.000016, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000199, + 0.005223, + 0.010375, + 0.000000, + 0.000000, + 0.000016, + 0.005223, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000199, + 0.000399, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000399, + 0.000199, + 0.005223, + 0.000016; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.303766, 0.952747, 0.000000, + -0.000000,-0.952747,-0.303766, 0.000000, + -5.396652, 3.051325, 2.996668, 1.000000;; + } //End of Armature_Bone_005 Skin Weights + SkinWeights { + "Armature_Bone_006"; + 75; + 122, + 123, + 125, + 126, + 127, + 128, + 130, + 131, + 134, + 135, + 136, + 137, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 173, + 176, + 177, + 178, + 179, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.472536, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.491432, + 0.500000, + 0.500000, + 0.491432, + 0.364602, + 0.479110, + 0.500000, + 0.364602, + 0.472536, + 0.500000, + 0.479110, + 0.364602, + 0.491432, + 0.500000, + 0.472536, + 0.500000, + 0.500000, + 0.500000, + 0.479110, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000001, + 0.000000, + 0.000000, + 0.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.681913,-0.731433, 0.000000, + -0.000000, 0.731433, 0.681913, 0.000000, + -5.396653,-3.645211,-1.219408, 1.000000;; + } //End of Armature_Bone_006 Skin Weights + SkinWeights { + "Armature_Bone_007"; + 168; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295, + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319, + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327; + 0.473249, + 0.500000, + 0.500000, + 0.500000, + 0.500000, + 0.491432, + 0.500000, + 0.500000, + 0.491432, + 0.364634, + 0.479111, + 0.500000, + 0.364634, + 0.473249, + 0.500000, + 0.479111, + 0.364634, + 0.491432, + 0.500000, + 0.473249, + 0.500000, + 0.500000, + 0.500000, + 0.479111, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999999, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.999674,-0.025538, 0.000000, + -0.000000, 0.025538, 0.999674, 0.000000, + -5.396651,-2.617884,-4.640213, 1.000000;; + } //End of Armature_Bone_007 Skin Weights + } //End of Mesh Mesh + } //End of Cube_005 + } //End of Armature +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 102; + 0;3; -0.050547,14.702777, 0.326405;;, + 1;3; -0.050547,14.702777, 0.326405;;, + 2;3; -0.050547,14.702777, 0.326405;;, + 3;3; -0.050547,14.702777, 0.326405;;, + 4;3; -0.050547,14.702777, 0.326405;;, + 5;3; -0.050547,14.702777, 0.326405;;, + 6;3; -0.050547,14.702777, 0.326405;;, + 7;3; -0.050547,14.702777, 0.326405;;, + 8;3; -0.050547,14.702777, 0.326405;;, + 9;3; -0.050547,14.702777, 0.326405;;, + 10;3; -0.050547,14.702777, 0.326405;;, + 11;3; -0.050547,14.702777, 0.326405;;, + 12;3; -0.050547,14.702777, 0.326405;;, + 13;3; -0.050547,14.702777, 0.326405;;, + 14;3; -0.050547,14.702777, 0.326405;;, + 15;3; -0.050547,14.702777, 0.326405;;, + 16;3; -0.050547,14.702777, 0.326405;;, + 17;3; -0.050547,14.702777, 0.326405;;, + 18;3; -0.050547,14.702777, 0.326405;;, + 19;3; -0.050547,14.702777, 0.326405;;, + 20;3; -0.050547,14.702777, 0.326405;;, + 21;3; -0.050547,14.702777, 0.326405;;, + 22;3; -0.050547,14.702777, 0.326405;;, + 23;3; -0.050547,14.702777, 0.326405;;, + 24;3; -0.050547,14.702777, 0.326405;;, + 25;3; -0.050547,14.702777, 0.326405;;, + 26;3; -0.050547,14.702777, 0.326405;;, + 27;3; -0.050547,14.702777, 0.326405;;, + 28;3; -0.050547,14.702777, 0.326405;;, + 29;3; -0.050547,14.702777, 0.326405;;, + 30;3; -0.050547,14.702777, 0.326405;;, + 31;3; -0.050547,14.702777, 0.326405;;, + 32;3; -0.050547,14.702777, 0.326405;;, + 33;3; -0.050547,14.702777, 0.326405;;, + 34;3; -0.050547,14.702777, 0.326405;;, + 35;3; -0.050547,14.702777, 0.326405;;, + 36;3; -0.050547,14.702777, 0.326405;;, + 37;3; -0.050547,14.702777, 0.326405;;, + 38;3; -0.050547,14.702777, 0.326405;;, + 39;3; -0.050547,14.702777, 0.326405;;, + 40;3; -0.050547,14.702777, 0.326405;;, + 41;3; -0.050547,14.702777, 0.326405;;, + 42;3; -0.050547,14.702777, 0.326405;;, + 43;3; -0.050547,14.702777, 0.326405;;, + 44;3; -0.050547,14.702777, 0.326405;;, + 45;3; -0.050547,14.702777, 0.326405;;, + 46;3; -0.050547,14.702777, 0.326405;;, + 47;3; -0.050547,14.702777, 0.326405;;, + 48;3; -0.050547,14.702777, 0.326405;;, + 49;3; -0.050547,14.702777, 0.326405;;, + 50;3; -0.050547,14.702777, 0.326405;;, + 51;3; -0.050547,14.702777, 0.326405;;, + 52;3; -0.050547,14.702777, 0.326405;;, + 53;3; -0.050547,14.702777, 0.326405;;, + 54;3; -0.050547,14.702777, 0.326405;;, + 55;3; -0.050547,14.702777, 0.326405;;, + 56;3; -0.050547,14.702777, 0.326405;;, + 57;3; -0.050547,14.702777, 0.326405;;, + 58;3; -0.050547,14.702777, 0.326405;;, + 59;3; -0.050547,14.702777, 0.326405;;, + 60;3; -0.050547,14.702777, 0.326405;;, + 61;3; -0.050547,14.702777, 0.326405;;, + 62;3; -0.050547,14.702777, 0.326405;;, + 63;3; -0.050547,14.702777, 0.326405;;, + 64;3; -0.050547,14.702777, 0.326405;;, + 65;3; -0.050547,14.702777, 0.326405;;, + 66;3; -0.050547,14.702777, 0.326405;;, + 67;3; -0.050547,14.702777, 0.326405;;, + 68;3; -0.050547,14.702777, 0.326405;;, + 69;3; -0.050547,14.702777, 0.326405;;, + 70;3; -0.050547,14.702777, 0.326405;;, + 71;3; -0.050547,14.702777, 0.326405;;, + 72;3; -0.050547,14.702777, 0.326405;;, + 73;3; -0.050547,14.702777, 0.326405;;, + 74;3; -0.050547,14.702777, 0.326405;;, + 75;3; -0.050547,14.702777, 0.326405;;, + 76;3; -0.050547,14.702777, 0.326405;;, + 77;3; -0.050547,14.702777, 0.326405;;, + 78;3; -0.050547,14.702777, 0.326405;;, + 79;3; -0.050547,14.702777, 0.326405;;, + 80;3; -0.050547,14.702777, 0.326405;;, + 81;3; -0.050547,14.702777, 0.326405;;, + 82;3; -0.050547,14.702777, 0.326405;;, + 83;3; -0.050547,14.702777, 0.326405;;, + 84;3; -0.050547,14.702777, 0.326405;;, + 85;3; -0.050547,14.702777, 0.326405;;, + 86;3; -0.050547,14.702777, 0.326405;;, + 87;3; -0.050547,14.702777, 0.326405;;, + 88;3; -0.050547,14.702777, 0.326405;;, + 89;3; -0.050547,14.702777, 0.326405;;, + 90;3; -0.050547,14.702777, 0.326405;;, + 91;3; -0.050547,14.702777, 0.326405;;, + 92;3; -0.050547,14.702777, 0.326405;;, + 93;3; -0.050547,14.702777, 0.326405;;, + 94;3; -0.050547,14.702777, 0.326405;;, + 95;3; -0.050547,14.702777, 0.326405;;, + 96;3; -0.050547,14.702777, 0.326405;;, + 97;3; -0.050547,14.702777, 0.326405;;, + 98;3; -0.050547,14.702777, 0.326405;;, + 99;3; -0.050547,14.702777, 0.326405;;, + 100;3; -0.050547,14.702777, 0.326405;;, + 101;3; -0.050547,14.702777, 0.326405;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 1;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 2;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 3;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 4;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 5;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 6;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 7;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 8;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 9;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 10;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 11;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 12;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 13;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 14;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 15;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 16;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 17;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 18;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 19;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 20;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 21;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 22;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 23;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 24;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 25;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 26;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 27;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 28;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 29;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 30;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 31;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 32;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 33;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 34;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 35;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 36;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 37;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 38;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 39;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 40;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 41;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 42;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 43;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 44;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 45;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 46;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 47;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 48;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 49;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 50;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 51;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 52;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 53;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 54;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 55;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 56;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 57;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 58;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 59;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 60;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 61;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 62;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 63;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 64;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 65;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 66;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 67;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 68;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 69;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 70;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 71;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 72;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 73;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 74;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 75;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 76;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 77;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 78;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 79;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 80;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 81;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 82;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 83;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 84;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 85;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 86;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 87;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 88;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 89;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 90;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 91;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 92;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 93;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 94;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 95;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 96;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 97;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 98;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 99;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 100;4; -0.707177, 0.000000,-0.000000,-0.707037;;, + 101;4; -0.707177, 0.000000,-0.000000,-0.707037;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 2.736834, 2.736834, 2.736834;;, + 1;3; 2.736834, 2.736834, 2.736834;;, + 2;3; 2.736834, 2.736834, 2.736834;;, + 3;3; 2.736834, 2.736834, 2.736834;;, + 4;3; 2.736834, 2.736834, 2.736834;;, + 5;3; 2.736834, 2.736834, 2.736834;;, + 6;3; 2.736834, 2.736834, 2.736834;;, + 7;3; 2.736834, 2.736834, 2.736834;;, + 8;3; 2.736834, 2.736834, 2.736834;;, + 9;3; 2.736834, 2.736834, 2.736834;;, + 10;3; 2.736834, 2.736834, 2.736834;;, + 11;3; 2.736834, 2.736834, 2.736834;;, + 12;3; 2.736834, 2.736834, 2.736834;;, + 13;3; 2.736834, 2.736834, 2.736834;;, + 14;3; 2.736834, 2.736834, 2.736834;;, + 15;3; 2.736834, 2.736834, 2.736834;;, + 16;3; 2.736834, 2.736834, 2.736834;;, + 17;3; 2.736834, 2.736834, 2.736834;;, + 18;3; 2.736834, 2.736834, 2.736834;;, + 19;3; 2.736834, 2.736834, 2.736834;;, + 20;3; 2.736834, 2.736834, 2.736834;;, + 21;3; 2.736834, 2.736834, 2.736834;;, + 22;3; 2.736834, 2.736834, 2.736834;;, + 23;3; 2.736834, 2.736834, 2.736834;;, + 24;3; 2.736834, 2.736834, 2.736834;;, + 25;3; 2.736834, 2.736834, 2.736834;;, + 26;3; 2.736834, 2.736834, 2.736834;;, + 27;3; 2.736834, 2.736834, 2.736834;;, + 28;3; 2.736834, 2.736834, 2.736834;;, + 29;3; 2.736834, 2.736834, 2.736834;;, + 30;3; 2.736834, 2.736834, 2.736834;;, + 31;3; 2.736834, 2.736834, 2.736834;;, + 32;3; 2.736834, 2.736834, 2.736834;;, + 33;3; 2.736834, 2.736834, 2.736834;;, + 34;3; 2.736834, 2.736834, 2.736834;;, + 35;3; 2.736834, 2.736834, 2.736834;;, + 36;3; 2.736834, 2.736834, 2.736834;;, + 37;3; 2.736834, 2.736834, 2.736834;;, + 38;3; 2.736834, 2.736834, 2.736834;;, + 39;3; 2.736834, 2.736834, 2.736834;;, + 40;3; 2.736834, 2.736834, 2.736834;;, + 41;3; 2.736834, 2.736834, 2.736834;;, + 42;3; 2.736834, 2.736834, 2.736834;;, + 43;3; 2.736834, 2.736834, 2.736834;;, + 44;3; 2.736834, 2.736834, 2.736834;;, + 45;3; 2.736834, 2.736834, 2.736834;;, + 46;3; 2.736834, 2.736834, 2.736834;;, + 47;3; 2.736834, 2.736834, 2.736834;;, + 48;3; 2.736834, 2.736834, 2.736834;;, + 49;3; 2.736834, 2.736834, 2.736834;;, + 50;3; 2.736834, 2.736834, 2.736834;;, + 51;3; 2.736834, 2.736834, 2.736834;;, + 52;3; 2.736834, 2.736834, 2.736834;;, + 53;3; 2.736834, 2.736834, 2.736834;;, + 54;3; 2.736834, 2.736834, 2.736834;;, + 55;3; 2.736834, 2.736834, 2.736834;;, + 56;3; 2.736834, 2.736834, 2.736834;;, + 57;3; 2.736834, 2.736834, 2.736834;;, + 58;3; 2.736834, 2.736834, 2.736834;;, + 59;3; 2.736834, 2.736834, 2.736834;;, + 60;3; 2.736834, 2.736834, 2.736834;;, + 61;3; 2.736834, 2.736834, 2.736834;;, + 62;3; 2.736834, 2.736834, 2.736834;;, + 63;3; 2.736834, 2.736834, 2.736834;;, + 64;3; 2.736834, 2.736834, 2.736834;;, + 65;3; 2.736834, 2.736834, 2.736834;;, + 66;3; 2.736834, 2.736834, 2.736834;;, + 67;3; 2.736834, 2.736834, 2.736834;;, + 68;3; 2.736834, 2.736834, 2.736834;;, + 69;3; 2.736834, 2.736834, 2.736834;;, + 70;3; 2.736834, 2.736834, 2.736834;;, + 71;3; 2.736834, 2.736834, 2.736834;;, + 72;3; 2.736834, 2.736834, 2.736834;;, + 73;3; 2.736834, 2.736834, 2.736834;;, + 74;3; 2.736834, 2.736834, 2.736834;;, + 75;3; 2.736834, 2.736834, 2.736834;;, + 76;3; 2.736834, 2.736834, 2.736834;;, + 77;3; 2.736834, 2.736834, 2.736834;;, + 78;3; 2.736834, 2.736834, 2.736834;;, + 79;3; 2.736834, 2.736834, 2.736834;;, + 80;3; 2.736834, 2.736834, 2.736834;;, + 81;3; 2.736834, 2.736834, 2.736834;;, + 82;3; 2.736834, 2.736834, 2.736834;;, + 83;3; 2.736834, 2.736834, 2.736834;;, + 84;3; 2.736834, 2.736834, 2.736834;;, + 85;3; 2.736834, 2.736834, 2.736834;;, + 86;3; 2.736834, 2.736834, 2.736834;;, + 87;3; 2.736834, 2.736834, 2.736834;;, + 88;3; 2.736834, 2.736834, 2.736834;;, + 89;3; 2.736834, 2.736834, 2.736834;;, + 90;3; 2.736834, 2.736834, 2.736834;;, + 91;3; 2.736834, 2.736834, 2.736834;;, + 92;3; 2.736834, 2.736834, 2.736834;;, + 93;3; 2.736834, 2.736834, 2.736834;;, + 94;3; 2.736834, 2.736834, 2.736834;;, + 95;3; 2.736834, 2.736834, 2.736834;;, + 96;3; 2.736834, 2.736834, 2.736834;;, + 97;3; 2.736834, 2.736834, 2.736834;;, + 98;3; 2.736834, 2.736834, 2.736834;;, + 99;3; 2.736834, 2.736834, 2.736834;;, + 100;3; 2.736834, 2.736834, 2.736834;;, + 101;3; 2.736834, 2.736834, 2.736834;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 102; + 0;3; 5.378092,-1.647068, 3.136816;;, + 1;3; 5.378092,-1.647068, 3.136816;;, + 2;3; 5.378092,-1.647068, 3.136816;;, + 3;3; 5.378092,-1.647068, 3.136816;;, + 4;3; 5.378092,-1.647068, 3.136816;;, + 5;3; 5.378092,-1.647068, 3.136816;;, + 6;3; 5.378092,-1.647068, 3.136816;;, + 7;3; 5.378092,-1.647068, 3.136816;;, + 8;3; 5.378092,-1.647068, 3.136816;;, + 9;3; 5.378092,-1.647068, 3.136816;;, + 10;3; 5.378092,-1.647068, 3.136816;;, + 11;3; 5.378092,-1.647068, 3.136816;;, + 12;3; 5.378092,-1.647068, 3.136816;;, + 13;3; 5.378092,-1.647068, 3.136816;;, + 14;3; 5.378092,-1.647068, 3.136816;;, + 15;3; 5.378092,-1.647068, 3.136816;;, + 16;3; 5.378092,-1.647068, 3.136816;;, + 17;3; 5.378092,-1.647068, 3.136816;;, + 18;3; 5.378092,-1.647068, 3.136816;;, + 19;3; 5.378092,-1.647068, 3.136816;;, + 20;3; 5.378092,-1.647068, 3.136816;;, + 21;3; 5.378092,-1.647068, 3.136816;;, + 22;3; 5.378092,-1.647068, 3.136816;;, + 23;3; 5.378092,-1.647068, 3.136816;;, + 24;3; 5.378092,-1.647068, 3.136816;;, + 25;3; 5.378092,-1.647068, 3.136816;;, + 26;3; 5.378092,-1.647068, 3.136816;;, + 27;3; 5.378092,-1.647068, 3.136816;;, + 28;3; 5.378092,-1.647068, 3.136816;;, + 29;3; 5.378092,-1.647068, 3.136816;;, + 30;3; 5.378092,-1.647068, 3.136816;;, + 31;3; 5.378092,-1.647068, 3.136816;;, + 32;3; 5.378092,-1.647068, 3.136816;;, + 33;3; 5.378092,-1.647068, 3.136816;;, + 34;3; 5.378092,-1.647068, 3.136816;;, + 35;3; 5.378092,-1.647068, 3.136816;;, + 36;3; 5.378092,-1.647068, 3.136816;;, + 37;3; 5.378092,-1.647068, 3.136816;;, + 38;3; 5.378092,-1.647068, 3.136816;;, + 39;3; 5.378092,-1.647068, 3.136816;;, + 40;3; 5.378092,-1.647068, 3.136816;;, + 41;3; 5.378092,-1.647068, 3.136816;;, + 42;3; 5.378092,-1.647068, 3.136816;;, + 43;3; 5.378092,-1.647068, 3.136816;;, + 44;3; 5.378092,-1.647068, 3.136816;;, + 45;3; 5.378092,-1.647068, 3.136816;;, + 46;3; 5.378092,-1.647068, 3.136816;;, + 47;3; 5.378092,-1.647068, 3.136816;;, + 48;3; 5.378092,-1.647068, 3.136816;;, + 49;3; 5.378092,-1.647068, 3.136816;;, + 50;3; 5.378092,-1.647068, 3.136816;;, + 51;3; 5.378092,-1.647068, 3.136816;;, + 52;3; 5.378092,-1.647068, 3.136816;;, + 53;3; 5.378092,-1.647068, 3.136816;;, + 54;3; 5.378092,-1.647068, 3.136816;;, + 55;3; 5.378092,-1.647068, 3.136816;;, + 56;3; 5.378092,-1.647068, 3.136816;;, + 57;3; 5.378092,-1.647068, 3.136816;;, + 58;3; 5.378092,-1.647068, 3.136816;;, + 59;3; 5.378092,-1.647068, 3.136816;;, + 60;3; 5.378092,-1.647068, 3.136816;;, + 61;3; 5.378092,-1.647068, 3.136816;;, + 62;3; 5.378092,-1.647068, 3.136816;;, + 63;3; 5.378092,-1.647068, 3.136816;;, + 64;3; 5.378092,-1.647068, 3.136816;;, + 65;3; 5.378092,-1.647068, 3.136816;;, + 66;3; 5.378092,-1.647068, 3.136816;;, + 67;3; 5.378092,-1.647068, 3.136816;;, + 68;3; 5.378092,-1.647068, 3.136816;;, + 69;3; 5.378092,-1.647068, 3.136816;;, + 70;3; 5.378092,-1.647068, 3.136816;;, + 71;3; 5.378092,-1.647068, 3.136816;;, + 72;3; 5.378092,-1.647068, 3.136816;;, + 73;3; 5.378092,-1.647068, 3.136816;;, + 74;3; 5.378092,-1.647068, 3.136816;;, + 75;3; 5.378092,-1.647068, 3.136816;;, + 76;3; 5.378092,-1.647068, 3.136816;;, + 77;3; 5.378092,-1.647068, 3.136816;;, + 78;3; 5.378092,-1.647068, 3.136816;;, + 79;3; 5.378092,-1.647068, 3.136816;;, + 80;3; 5.378092,-1.647068, 3.136816;;, + 81;3; 5.378092,-1.647068, 3.136816;;, + 82;3; 5.378092,-1.647068, 3.136816;;, + 83;3; 5.378092,-1.647068, 3.136816;;, + 84;3; 5.378092,-1.647068, 3.136816;;, + 85;3; 5.378092,-1.647068, 3.136816;;, + 86;3; 5.378092,-1.647068, 3.136816;;, + 87;3; 5.378092,-1.647068, 3.136816;;, + 88;3; 5.378092,-1.647068, 3.136816;;, + 89;3; 5.378092,-1.647068, 3.136816;;, + 90;3; 5.378092,-1.647068, 3.136816;;, + 91;3; 5.378092,-1.647068, 3.136816;;, + 92;3; 5.378092,-1.647068, 3.136816;;, + 93;3; 5.378092,-1.647068, 3.136816;;, + 94;3; 5.378092,-1.647068, 3.136816;;, + 95;3; 5.378092,-1.647068, 3.136816;;, + 96;3; 5.378092,-1.647068, 3.136816;;, + 97;3; 5.378092,-1.647068, 3.136816;;, + 98;3; 5.378092,-1.647068, 3.136816;;, + 99;3; 5.378092,-1.647068, 3.136816;;, + 100;3; 5.378092,-1.647068, 3.136816;;, + 101;3; 5.378092,-1.647068, 3.136816;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -0.989440, 0.034590, 0.000000, 0.000000;;, + 56;4; -0.958708, 0.135162, 0.000000, 0.000000;;, + 57;4; -0.914532, 0.279621, 0.000000, 0.000000;;, + 58;4; -0.870356, 0.424055, 0.000000, 0.000000;;, + 59;4; -0.839626, 0.524582, 0.000000, 0.000000;;, + 60;4; -0.829066, 0.559151, 0.000000, 0.000000;;, + 61;4; -0.829257, 0.558385, 0.000000, 0.000000;;, + 62;4; -0.830161, 0.555010, 0.000000, 0.000000;;, + 63;4; -0.832398, 0.547059, 0.000000, 0.000000;;, + 64;4; -0.836584, 0.532654, 0.000000, 0.000000;;, + 65;4; -0.843026, 0.510954, 0.000000, 0.000000;;, + 66;4; -0.851591, 0.482521, 0.000000, 0.000000;;, + 67;4; -0.861866, 0.448750, 0.000000, 0.000000;;, + 68;4; -0.875730, 0.403482, 0.000000, 0.000000;;, + 69;4; -0.895080, 0.340508, 0.000000, 0.000000;;, + 70;4; -0.918633, 0.264010, 0.000000, 0.000000;;, + 71;4; -0.943785, 0.182404, 0.000000, 0.000000;;, + 72;4; -0.967043, 0.106967, 0.000000, 0.000000;;, + 73;4; -0.985199, 0.048062, 0.000000, 0.000000;;, + 74;4; -0.996347, 0.011867, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_001} + AnimationKey { //Position + 2; + 102; + 0;3; 0.618225, 0.089278,-0.876976;;, + 1;3; 0.618225, 0.089278,-0.876976;;, + 2;3; 0.618225, 0.089278,-0.876976;;, + 3;3; 0.618225, 0.089278,-0.876976;;, + 4;3; 0.618225, 0.089278,-0.876976;;, + 5;3; 0.618225, 0.089278,-0.876976;;, + 6;3; 0.618225, 0.089278,-0.876976;;, + 7;3; 0.618225, 0.089278,-0.876976;;, + 8;3; 0.618225, 0.089278,-0.876976;;, + 9;3; 0.618225, 0.089278,-0.876976;;, + 10;3; 0.618225, 0.089278,-0.876976;;, + 11;3; 0.618225, 0.089278,-0.876976;;, + 12;3; 0.618225, 0.089278,-0.876976;;, + 13;3; 0.618225, 0.089278,-0.876976;;, + 14;3; 0.618225, 0.089278,-0.876976;;, + 15;3; 0.618225, 0.089278,-0.876976;;, + 16;3; 0.618225, 0.089278,-0.876976;;, + 17;3; 0.618225, 0.089278,-0.876976;;, + 18;3; 0.618225, 0.089278,-0.876976;;, + 19;3; 0.618225, 0.089278,-0.876976;;, + 20;3; 0.618225, 0.089278,-0.876976;;, + 21;3; 0.618225, 0.089278,-0.876976;;, + 22;3; 0.618225, 0.089278,-0.876976;;, + 23;3; 0.618225, 0.089278,-0.876976;;, + 24;3; 0.618225, 0.089278,-0.876976;;, + 25;3; 0.618225, 0.089278,-0.876976;;, + 26;3; 0.618225, 0.089278,-0.876976;;, + 27;3; 0.618225, 0.089278,-0.876976;;, + 28;3; 0.618225, 0.089278,-0.876976;;, + 29;3; 0.618225, 0.089278,-0.876976;;, + 30;3; 0.618225, 0.089278,-0.876976;;, + 31;3; 0.618225, 0.089278,-0.876976;;, + 32;3; 0.618225, 0.089278,-0.876976;;, + 33;3; 0.618225, 0.089278,-0.876976;;, + 34;3; 0.618225, 0.089278,-0.876976;;, + 35;3; 0.618225, 0.089278,-0.876976;;, + 36;3; 0.618225, 0.089278,-0.876976;;, + 37;3; 0.618225, 0.089278,-0.876976;;, + 38;3; 0.618225, 0.089278,-0.876976;;, + 39;3; 0.618225, 0.089278,-0.876976;;, + 40;3; 0.618225, 0.089278,-0.876976;;, + 41;3; 0.618225, 0.089278,-0.876976;;, + 42;3; 0.618225, 0.089278,-0.876976;;, + 43;3; 0.618225, 0.089278,-0.876976;;, + 44;3; 0.618225, 0.089278,-0.876976;;, + 45;3; 0.618225, 0.089278,-0.876976;;, + 46;3; 0.618225, 0.089278,-0.876976;;, + 47;3; 0.618225, 0.089278,-0.876976;;, + 48;3; 0.618225, 0.089278,-0.876976;;, + 49;3; 0.618225, 0.089278,-0.876976;;, + 50;3; 0.618225, 0.089278,-0.876976;;, + 51;3; 0.618225, 0.089278,-0.876976;;, + 52;3; 0.618225, 0.089278,-0.876976;;, + 53;3; 0.618225, 0.089278,-0.876976;;, + 54;3; 0.618225, 0.089278,-0.876976;;, + 55;3; 0.618225, 0.089278,-0.876976;;, + 56;3; 0.618225, 0.089278,-0.876976;;, + 57;3; 0.618225, 0.089278,-0.876976;;, + 58;3; 0.618225, 0.089278,-0.876976;;, + 59;3; 0.618225, 0.089278,-0.876976;;, + 60;3; 0.618225, 0.089278,-0.876976;;, + 61;3; 0.618225, 0.089278,-0.876976;;, + 62;3; 0.618226, 0.089278,-0.876976;;, + 63;3; 0.618225, 0.089278,-0.876976;;, + 64;3; 0.618225, 0.089278,-0.876976;;, + 65;3; 0.618225, 0.089278,-0.876976;;, + 66;3; 0.618225, 0.089278,-0.876976;;, + 67;3; 0.618225, 0.089278,-0.876976;;, + 68;3; 0.618225, 0.089278,-0.876976;;, + 69;3; 0.618225, 0.089278,-0.876976;;, + 70;3; 0.618225, 0.089278,-0.876976;;, + 71;3; 0.618225, 0.089278,-0.876976;;, + 72;3; 0.618225, 0.089278,-0.876976;;, + 73;3; 0.618226, 0.089278,-0.876976;;, + 74;3; 0.618225, 0.089278,-0.876976;;, + 75;3; 0.618225, 0.089278,-0.876976;;, + 76;3; 0.618225, 0.089278,-0.876976;;, + 77;3; 0.618225, 0.089278,-0.876976;;, + 78;3; 0.618225, 0.089278,-0.876976;;, + 79;3; 0.618225, 0.089278,-0.876976;;, + 80;3; 0.618225, 0.089278,-0.876976;;, + 81;3; 0.618225, 0.089278,-0.876976;;, + 82;3; 0.618225, 0.089278,-0.876976;;, + 83;3; 0.618225, 0.089278,-0.876976;;, + 84;3; 0.618225, 0.089278,-0.876976;;, + 85;3; 0.618225, 0.089278,-0.876976;;, + 86;3; 0.618225, 0.089278,-0.876976;;, + 87;3; 0.618225, 0.089278,-0.876976;;, + 88;3; 0.618225, 0.089278,-0.876976;;, + 89;3; 0.618225, 0.089278,-0.876976;;, + 90;3; 0.618225, 0.089278,-0.876976;;, + 91;3; 0.618225, 0.089278,-0.876976;;, + 92;3; 0.618225, 0.089278,-0.876976;;, + 93;3; 0.618225, 0.089278,-0.876976;;, + 94;3; 0.618225, 0.089278,-0.876976;;, + 95;3; 0.618225, 0.089278,-0.876976;;, + 96;3; 0.618225, 0.089278,-0.876976;;, + 97;3; 0.618225, 0.089278,-0.876976;;, + 98;3; 0.618225, 0.089278,-0.876976;;, + 99;3; 0.618225, 0.089278,-0.876976;;, + 100;3; 0.618225, 0.089278,-0.876976;;, + 101;3; 0.618225, 0.089278,-0.876976;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.478256,-0.511844, 0.478256,-0.511844;;, + 56;4; -0.415019,-0.546269, 0.415019,-0.546269;;, + 57;4; -0.324169,-0.595704, 0.324169,-0.595704;;, + 58;4; -0.233331,-0.645127, 0.233331,-0.645127;;, + 59;4; -0.170118,-0.679530, 0.170118,-0.679529;;, + 60;4; -0.148386,-0.691362, 0.148385,-0.691362;;, + 61;4; -0.149170,-0.690628, 0.149170,-0.690628;;, + 62;4; -0.152167,-0.688052, 0.152167,-0.688052;;, + 63;4; -0.158443,-0.683100, 0.158443,-0.683100;;, + 64;4; -0.168844,-0.675511, 0.168844,-0.675511;;, + 65;4; -0.183500,-0.665525, 0.183500,-0.665525;;, + 66;4; -0.201765,-0.653774, 0.201765,-0.653774;;, + 67;4; -0.222659,-0.640955, 0.222659,-0.640955;;, + 68;4; -0.250378,-0.625186, 0.250378,-0.625186;;, + 69;4; -0.289169,-0.604535, 0.289169,-0.604535;;, + 70;4; -0.336449,-0.580314, 0.336449,-0.580314;;, + 71;4; -0.386978,-0.555058, 0.386978,-0.555058;;, + 72;4; -0.433724,-0.532077, 0.433724,-0.532077;;, + 73;4; -0.470228,-0.514335, 0.470228,-0.514335;;, + 74;4; -0.492651,-0.503524, 0.492651,-0.503524;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.495704,-0.503768, 0.495704,-0.503768;;, + 77;4; -0.483200,-0.514733, 0.483200,-0.514733;;, + 78;4; -0.465228,-0.530495, 0.465228,-0.530495;;, + 79;4; -0.447256,-0.546255, 0.447256,-0.546255;;, + 80;4; -0.434755,-0.557218, 0.434755,-0.557218;;, + 81;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 82;4; -0.432466,-0.558979, 0.432466,-0.558979;;, + 83;4; -0.438522,-0.552923, 0.438522,-0.552923;;, + 84;4; -0.448509,-0.542936, 0.448509,-0.542936;;, + 85;4; -0.461988,-0.529456, 0.461988,-0.529456;;, + 86;4; -0.478130,-0.513315, 0.478130,-0.513315;;, + 87;4; -0.495723,-0.495722, 0.495722,-0.495722;;, + 88;4; -0.513315,-0.478130, 0.513315,-0.478130;;, + 89;4; -0.529457,-0.461988, 0.529457,-0.461988;;, + 90;4; -0.542936,-0.448509, 0.542936,-0.448509;;, + 91;4; -0.552923,-0.438522, 0.552923,-0.438522;;, + 92;4; -0.558979,-0.432466, 0.558979,-0.432466;;, + 93;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 94;4; -0.557219,-0.434755, 0.557219,-0.434755;;, + 95;4; -0.546256,-0.447255, 0.546256,-0.447255;;, + 96;4; -0.530497,-0.465226, 0.530496,-0.465226;;, + 97;4; -0.514735,-0.483199, 0.514735,-0.483199;;, + 98;4; -0.503769,-0.495703, 0.503769,-0.495703;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_002} + AnimationKey { //Position + 2; + 102; + 0;3; 0.618225, 3.135167,-1.284375;;, + 1;3; 0.618225, 3.135167,-1.284375;;, + 2;3; 0.618225, 3.135167,-1.284375;;, + 3;3; 0.618225, 3.135167,-1.284375;;, + 4;3; 0.618225, 3.135167,-1.284375;;, + 5;3; 0.618225, 3.135167,-1.284375;;, + 6;3; 0.618225, 3.135167,-1.284375;;, + 7;3; 0.618225, 3.135167,-1.284375;;, + 8;3; 0.618225, 3.135167,-1.284375;;, + 9;3; 0.618225, 3.135167,-1.284375;;, + 10;3; 0.618225, 3.135167,-1.284375;;, + 11;3; 0.618225, 3.135167,-1.284375;;, + 12;3; 0.618225, 3.135167,-1.284375;;, + 13;3; 0.618225, 3.135167,-1.284375;;, + 14;3; 0.618225, 3.135167,-1.284375;;, + 15;3; 0.618225, 3.135167,-1.284375;;, + 16;3; 0.618225, 3.135167,-1.284375;;, + 17;3; 0.618225, 3.135167,-1.284375;;, + 18;3; 0.618225, 3.135167,-1.284375;;, + 19;3; 0.618225, 3.135167,-1.284375;;, + 20;3; 0.618225, 3.135167,-1.284375;;, + 21;3; 0.618225, 3.135167,-1.284375;;, + 22;3; 0.618225, 3.135167,-1.284375;;, + 23;3; 0.618225, 3.135167,-1.284375;;, + 24;3; 0.618225, 3.135167,-1.284375;;, + 25;3; 0.618225, 3.135167,-1.284375;;, + 26;3; 0.618225, 3.135167,-1.284375;;, + 27;3; 0.618225, 3.135167,-1.284375;;, + 28;3; 0.618225, 3.135167,-1.284375;;, + 29;3; 0.618225, 3.135167,-1.284375;;, + 30;3; 0.618225, 3.135167,-1.284375;;, + 31;3; 0.618225, 3.135167,-1.284375;;, + 32;3; 0.618225, 3.135167,-1.284375;;, + 33;3; 0.618225, 3.135167,-1.284375;;, + 34;3; 0.618225, 3.135167,-1.284375;;, + 35;3; 0.618225, 3.135167,-1.284375;;, + 36;3; 0.618225, 3.135167,-1.284375;;, + 37;3; 0.618225, 3.135167,-1.284375;;, + 38;3; 0.618225, 3.135167,-1.284375;;, + 39;3; 0.618225, 3.135167,-1.284375;;, + 40;3; 0.618225, 3.135167,-1.284375;;, + 41;3; 0.618225, 3.135167,-1.284375;;, + 42;3; 0.618225, 3.135167,-1.284375;;, + 43;3; 0.618225, 3.135167,-1.284375;;, + 44;3; 0.618225, 3.135167,-1.284375;;, + 45;3; 0.618225, 3.135167,-1.284375;;, + 46;3; 0.618225, 3.135167,-1.284375;;, + 47;3; 0.618225, 3.135167,-1.284375;;, + 48;3; 0.618225, 3.135167,-1.284375;;, + 49;3; 0.618225, 3.135167,-1.284375;;, + 50;3; 0.618225, 3.135167,-1.284375;;, + 51;3; 0.618225, 3.135167,-1.284375;;, + 52;3; 0.618225, 3.135167,-1.284375;;, + 53;3; 0.618225, 3.135167,-1.284375;;, + 54;3; 0.618225, 3.135167,-1.284375;;, + 55;3; 0.618225, 3.135167,-1.284375;;, + 56;3; 0.618225, 3.135167,-1.284375;;, + 57;3; 0.618225, 3.135167,-1.284375;;, + 58;3; 0.618225, 3.135167,-1.284375;;, + 59;3; 0.618225, 3.135167,-1.284375;;, + 60;3; 0.618225, 3.135167,-1.284375;;, + 61;3; 0.618225, 3.135167,-1.284375;;, + 62;3; 0.618226, 3.135167,-1.284375;;, + 63;3; 0.618225, 3.135167,-1.284375;;, + 64;3; 0.618225, 3.135166,-1.284375;;, + 65;3; 0.618225, 3.135167,-1.284375;;, + 66;3; 0.618225, 3.135167,-1.284375;;, + 67;3; 0.618225, 3.135167,-1.284375;;, + 68;3; 0.618225, 3.135167,-1.284375;;, + 69;3; 0.618225, 3.135167,-1.284375;;, + 70;3; 0.618225, 3.135167,-1.284375;;, + 71;3; 0.618225, 3.135167,-1.284375;;, + 72;3; 0.618225, 3.135167,-1.284375;;, + 73;3; 0.618226, 3.135167,-1.284375;;, + 74;3; 0.618225, 3.135167,-1.284375;;, + 75;3; 0.618225, 3.135167,-1.284375;;, + 76;3; 0.618225, 3.135167,-1.284375;;, + 77;3; 0.618225, 3.135167,-1.284375;;, + 78;3; 0.618225, 3.135167,-1.284375;;, + 79;3; 0.618225, 3.135167,-1.284375;;, + 80;3; 0.618225, 3.135167,-1.284375;;, + 81;3; 0.618225, 3.135167,-1.284375;;, + 82;3; 0.618225, 3.135167,-1.284375;;, + 83;3; 0.618225, 3.135167,-1.284375;;, + 84;3; 0.618225, 3.135167,-1.284375;;, + 85;3; 0.618225, 3.135167,-1.284375;;, + 86;3; 0.618225, 3.135167,-1.284375;;, + 87;3; 0.618225, 3.135167,-1.284375;;, + 88;3; 0.618225, 3.135167,-1.284375;;, + 89;3; 0.618225, 3.135167,-1.284375;;, + 90;3; 0.618225, 3.135167,-1.284375;;, + 91;3; 0.618225, 3.135167,-1.284375;;, + 92;3; 0.618225, 3.135167,-1.284375;;, + 93;3; 0.618225, 3.135167,-1.284375;;, + 94;3; 0.618225, 3.135167,-1.284375;;, + 95;3; 0.618225, 3.135167,-1.284375;;, + 96;3; 0.618225, 3.135167,-1.284375;;, + 97;3; 0.618225, 3.135167,-1.284375;;, + 98;3; 0.618225, 3.135167,-1.284375;;, + 99;3; 0.618225, 3.135167,-1.284375;;, + 100;3; 0.618225, 3.135167,-1.284375;;, + 101;3; 0.618225, 3.135167,-1.284375;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.501697,-0.498267, 0.501696,-0.498267;;, + 56;4; -0.507434,-0.492223, 0.507434,-0.492223;;, + 57;4; -0.517777,-0.480915, 0.517777,-0.480915;;, + 58;4; -0.532186,-0.464522, 0.532186,-0.464522;;, + 59;4; -0.549104,-0.444500, 0.549104,-0.444500;;, + 60;4; -0.566914,-0.422621, 0.566914,-0.422621;;, + 61;4; -0.591676,-0.385693, 0.591676,-0.385693;;, + 62;4; -0.619875,-0.337660, 0.619875,-0.337660;;, + 63;4; -0.631009,-0.317774, 0.631009,-0.317774;;, + 64;4; -0.569991,-0.416549, 0.569991,-0.416549;;, + 65;4; -0.544001,-0.447528, 0.544001,-0.447528;;, + 66;4; -0.528725,-0.465743, 0.528725,-0.465743;;, + 67;4; -0.518688,-0.477713, 0.518688,-0.477713;;, + 68;4; -0.511850,-0.485867, 0.511850,-0.485867;;, + 69;4; -0.507176,-0.491442, 0.507176,-0.491442;;, + 70;4; -0.504043,-0.495178, 0.504043,-0.495178;;, + 71;4; -0.502037,-0.497571, 0.502037,-0.497571;;, + 72;4; -0.500854,-0.498982, 0.500854,-0.498982;;, + 73;4; -0.500254,-0.499698, 0.500254,-0.499698;;, + 74;4; -0.500032,-0.499962, 0.500032,-0.499962;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.503767,-0.495704, 0.503767,-0.495704;;, + 77;4; -0.514731,-0.483202, 0.514731,-0.483202;;, + 78;4; -0.530493,-0.465230, 0.530493,-0.465230;;, + 79;4; -0.546254,-0.447257, 0.546254,-0.447257;;, + 80;4; -0.557218,-0.434755, 0.557218,-0.434755;;, + 81;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 82;4; -0.558979,-0.432466, 0.558979,-0.432466;;, + 83;4; -0.552923,-0.438522, 0.552923,-0.438522;;, + 84;4; -0.542936,-0.448509, 0.542936,-0.448509;;, + 85;4; -0.529457,-0.461988, 0.529456,-0.461988;;, + 86;4; -0.513315,-0.478130, 0.513315,-0.478130;;, + 87;4; -0.495722,-0.495722, 0.495722,-0.495722;;, + 88;4; -0.478130,-0.513315, 0.478130,-0.513315;;, + 89;4; -0.461988,-0.529457, 0.461988,-0.529457;;, + 90;4; -0.448509,-0.542936, 0.448509,-0.542936;;, + 91;4; -0.438522,-0.552923, 0.438522,-0.552923;;, + 92;4; -0.432466,-0.558979, 0.432466,-0.558979;;, + 93;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 94;4; -0.434755,-0.557219, 0.434755,-0.557219;;, + 95;4; -0.447255,-0.546256, 0.447255,-0.546256;;, + 96;4; -0.465226,-0.530496, 0.465226,-0.530496;;, + 97;4; -0.483199,-0.514735, 0.483198,-0.514735;;, + 98;4; -0.495703,-0.503769, 0.495703,-0.503769;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_003} + AnimationKey { //Position + 2; + 102; + 0;3; -0.648382, 0.089278,-0.876976;;, + 1;3; -0.648382, 0.089278,-0.876976;;, + 2;3; -0.648382, 0.089278,-0.876976;;, + 3;3; -0.648382, 0.089278,-0.876976;;, + 4;3; -0.648382, 0.089278,-0.876976;;, + 5;3; -0.648382, 0.089278,-0.876976;;, + 6;3; -0.648382, 0.089278,-0.876976;;, + 7;3; -0.648382, 0.089278,-0.876976;;, + 8;3; -0.648382, 0.089278,-0.876976;;, + 9;3; -0.648382, 0.089278,-0.876976;;, + 10;3; -0.648382, 0.089278,-0.876976;;, + 11;3; -0.648382, 0.089278,-0.876976;;, + 12;3; -0.648382, 0.089278,-0.876976;;, + 13;3; -0.648382, 0.089278,-0.876976;;, + 14;3; -0.648382, 0.089278,-0.876976;;, + 15;3; -0.648382, 0.089278,-0.876976;;, + 16;3; -0.648382, 0.089278,-0.876976;;, + 17;3; -0.648382, 0.089278,-0.876976;;, + 18;3; -0.648382, 0.089278,-0.876976;;, + 19;3; -0.648382, 0.089278,-0.876976;;, + 20;3; -0.648382, 0.089278,-0.876976;;, + 21;3; -0.648382, 0.089278,-0.876976;;, + 22;3; -0.648382, 0.089278,-0.876976;;, + 23;3; -0.648382, 0.089278,-0.876976;;, + 24;3; -0.648382, 0.089278,-0.876976;;, + 25;3; -0.648382, 0.089278,-0.876976;;, + 26;3; -0.648382, 0.089278,-0.876976;;, + 27;3; -0.648382, 0.089278,-0.876976;;, + 28;3; -0.648382, 0.089278,-0.876976;;, + 29;3; -0.648382, 0.089278,-0.876976;;, + 30;3; -0.648382, 0.089278,-0.876976;;, + 31;3; -0.648382, 0.089278,-0.876976;;, + 32;3; -0.648382, 0.089278,-0.876976;;, + 33;3; -0.648382, 0.089278,-0.876976;;, + 34;3; -0.648382, 0.089278,-0.876976;;, + 35;3; -0.648382, 0.089278,-0.876976;;, + 36;3; -0.648382, 0.089278,-0.876976;;, + 37;3; -0.648382, 0.089278,-0.876976;;, + 38;3; -0.648382, 0.089278,-0.876976;;, + 39;3; -0.648382, 0.089278,-0.876976;;, + 40;3; -0.648382, 0.089278,-0.876976;;, + 41;3; -0.648382, 0.089278,-0.876976;;, + 42;3; -0.648382, 0.089278,-0.876976;;, + 43;3; -0.648382, 0.089278,-0.876976;;, + 44;3; -0.648382, 0.089278,-0.876976;;, + 45;3; -0.648382, 0.089278,-0.876976;;, + 46;3; -0.648382, 0.089278,-0.876976;;, + 47;3; -0.648382, 0.089278,-0.876976;;, + 48;3; -0.648382, 0.089278,-0.876976;;, + 49;3; -0.648382, 0.089278,-0.876976;;, + 50;3; -0.648382, 0.089278,-0.876976;;, + 51;3; -0.648382, 0.089278,-0.876976;;, + 52;3; -0.648382, 0.089278,-0.876976;;, + 53;3; -0.648382, 0.089278,-0.876976;;, + 54;3; -0.648382, 0.089278,-0.876976;;, + 55;3; -0.648382, 0.089278,-0.876976;;, + 56;3; -0.648382, 0.089278,-0.876976;;, + 57;3; -0.648382, 0.089278,-0.876976;;, + 58;3; -0.648382, 0.089278,-0.876976;;, + 59;3; -0.648382, 0.089278,-0.876976;;, + 60;3; -0.648383, 0.089278,-0.876976;;, + 61;3; -0.648382, 0.089278,-0.876976;;, + 62;3; -0.648382, 0.089278,-0.876976;;, + 63;3; -0.648383, 0.089278,-0.876976;;, + 64;3; -0.648382, 0.089278,-0.876976;;, + 65;3; -0.648383, 0.089278,-0.876976;;, + 66;3; -0.648382, 0.089278,-0.876976;;, + 67;3; -0.648382, 0.089278,-0.876976;;, + 68;3; -0.648382, 0.089278,-0.876976;;, + 69;3; -0.648382, 0.089278,-0.876976;;, + 70;3; -0.648382, 0.089278,-0.876976;;, + 71;3; -0.648382, 0.089278,-0.876976;;, + 72;3; -0.648382, 0.089278,-0.876976;;, + 73;3; -0.648382, 0.089278,-0.876976;;, + 74;3; -0.648382, 0.089278,-0.876976;;, + 75;3; -0.648382, 0.089278,-0.876976;;, + 76;3; -0.648382, 0.089278,-0.876976;;, + 77;3; -0.648382, 0.089278,-0.876976;;, + 78;3; -0.648382, 0.089278,-0.876976;;, + 79;3; -0.648382, 0.089278,-0.876976;;, + 80;3; -0.648382, 0.089278,-0.876976;;, + 81;3; -0.648382, 0.089278,-0.876976;;, + 82;3; -0.648382, 0.089278,-0.876976;;, + 83;3; -0.648382, 0.089278,-0.876976;;, + 84;3; -0.648382, 0.089278,-0.876976;;, + 85;3; -0.648382, 0.089278,-0.876976;;, + 86;3; -0.648382, 0.089278,-0.876976;;, + 87;3; -0.648382, 0.089278,-0.876976;;, + 88;3; -0.648382, 0.089278,-0.876976;;, + 89;3; -0.648382, 0.089278,-0.876976;;, + 90;3; -0.648382, 0.089278,-0.876976;;, + 91;3; -0.648382, 0.089278,-0.876976;;, + 92;3; -0.648382, 0.089278,-0.876976;;, + 93;3; -0.648382, 0.089278,-0.876976;;, + 94;3; -0.648382, 0.089278,-0.876976;;, + 95;3; -0.648382, 0.089278,-0.876976;;, + 96;3; -0.648382, 0.089278,-0.876976;;, + 97;3; -0.648382, 0.089278,-0.876976;;, + 98;3; -0.648382, 0.089278,-0.876976;;, + 99;3; -0.648382, 0.089278,-0.876976;;, + 100;3; -0.648382, 0.089278,-0.876976;;, + 101;3; -0.648382, 0.089278,-0.876976;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.477401,-0.512019, 0.477401,-0.512019;;, + 56;4; -0.411680,-0.546952, 0.411680,-0.546952;;, + 57;4; -0.317264,-0.597112, 0.317264,-0.597112;;, + 58;4; -0.222860,-0.647261, 0.222860,-0.647261;;, + 59;4; -0.157160,-0.682173, 0.157160,-0.682173;;, + 60;4; -0.134571,-0.694183, 0.134571,-0.694183;;, + 61;4; -0.134909,-0.694142, 0.134908,-0.694142;;, + 62;4; -0.136630,-0.693635, 0.136630,-0.693635;;, + 63;4; -0.141087,-0.691891, 0.141087,-0.691891;;, + 64;4; -0.149660,-0.688050, 0.149660,-0.688050;;, + 65;4; -0.163093,-0.681551, 0.163093,-0.681550;;, + 66;4; -0.181171,-0.672376, 0.181170,-0.672376;;, + 67;4; -0.203049,-0.660915, 0.203049,-0.660915;;, + 68;4; -0.230682,-0.647108, 0.230682,-0.647108;;, + 69;4; -0.266530,-0.630412, 0.266530,-0.630412;;, + 70;4; -0.309286,-0.610872, 0.309285,-0.610872;;, + 71;4; -0.355862,-0.589024, 0.355861,-0.589024;;, + 72;4; -0.401798,-0.565913, 0.401798,-0.565913;;, + 73;4; -0.442733,-0.542775, 0.442733,-0.542775;;, + 74;4; -0.475813,-0.520613, 0.475813,-0.520613;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.518892,-0.480580, 0.518891,-0.480580;;, + 77;4; -0.535261,-0.462672, 0.535261,-0.462672;;, + 78;4; -0.547833,-0.447889, 0.547833,-0.447889;;, + 79;4; -0.555908,-0.437603, 0.555908,-0.437603;;, + 80;4; -0.559914,-0.432060, 0.559914,-0.432060;;, + 81;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 82;4; -0.558979,-0.432466, 0.558979,-0.432466;;, + 83;4; -0.552923,-0.438522, 0.552923,-0.438522;;, + 84;4; -0.542936,-0.448509, 0.542936,-0.448509;;, + 85;4; -0.529457,-0.461988, 0.529456,-0.461988;;, + 86;4; -0.513315,-0.478130, 0.513315,-0.478130;;, + 87;4; -0.495722,-0.495722, 0.495722,-0.495722;;, + 88;4; -0.478130,-0.513315, 0.478130,-0.513315;;, + 89;4; -0.461988,-0.529457, 0.461988,-0.529457;;, + 90;4; -0.448509,-0.542936, 0.448509,-0.542936;;, + 91;4; -0.438522,-0.552923, 0.438522,-0.552923;;, + 92;4; -0.432466,-0.558979, 0.432466,-0.558979;;, + 93;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 94;4; -0.434755,-0.557219, 0.434755,-0.557219;;, + 95;4; -0.447255,-0.546256, 0.447255,-0.546256;;, + 96;4; -0.465226,-0.530496, 0.465226,-0.530496;;, + 97;4; -0.483199,-0.514735, 0.483198,-0.514735;;, + 98;4; -0.495703,-0.503769, 0.495703,-0.503769;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_004} + AnimationKey { //Position + 2; + 102; + 0;3; -0.648382, 3.135167,-1.230253;;, + 1;3; -0.648382, 3.135167,-1.230253;;, + 2;3; -0.648382, 3.135167,-1.230253;;, + 3;3; -0.648382, 3.135167,-1.230253;;, + 4;3; -0.648382, 3.135167,-1.230253;;, + 5;3; -0.648382, 3.135167,-1.230253;;, + 6;3; -0.648382, 3.135167,-1.230253;;, + 7;3; -0.648382, 3.135167,-1.230253;;, + 8;3; -0.648382, 3.135167,-1.230253;;, + 9;3; -0.648382, 3.135167,-1.230253;;, + 10;3; -0.648382, 3.135167,-1.230253;;, + 11;3; -0.648382, 3.135167,-1.230253;;, + 12;3; -0.648382, 3.135167,-1.230253;;, + 13;3; -0.648382, 3.135167,-1.230253;;, + 14;3; -0.648382, 3.135167,-1.230253;;, + 15;3; -0.648382, 3.135167,-1.230253;;, + 16;3; -0.648382, 3.135167,-1.230253;;, + 17;3; -0.648382, 3.135167,-1.230253;;, + 18;3; -0.648382, 3.135167,-1.230253;;, + 19;3; -0.648382, 3.135167,-1.230253;;, + 20;3; -0.648382, 3.135167,-1.230253;;, + 21;3; -0.648382, 3.135167,-1.230253;;, + 22;3; -0.648382, 3.135167,-1.230253;;, + 23;3; -0.648382, 3.135167,-1.230253;;, + 24;3; -0.648382, 3.135167,-1.230253;;, + 25;3; -0.648382, 3.135167,-1.230253;;, + 26;3; -0.648382, 3.135167,-1.230253;;, + 27;3; -0.648382, 3.135167,-1.230253;;, + 28;3; -0.648382, 3.135167,-1.230253;;, + 29;3; -0.648382, 3.135167,-1.230253;;, + 30;3; -0.648382, 3.135167,-1.230253;;, + 31;3; -0.648382, 3.135167,-1.230253;;, + 32;3; -0.648382, 3.135167,-1.230253;;, + 33;3; -0.648382, 3.135167,-1.230253;;, + 34;3; -0.648382, 3.135167,-1.230253;;, + 35;3; -0.648382, 3.135167,-1.230253;;, + 36;3; -0.648382, 3.135167,-1.230253;;, + 37;3; -0.648382, 3.135167,-1.230253;;, + 38;3; -0.648382, 3.135167,-1.230253;;, + 39;3; -0.648382, 3.135167,-1.230253;;, + 40;3; -0.648382, 3.135167,-1.230253;;, + 41;3; -0.648382, 3.135167,-1.230253;;, + 42;3; -0.648382, 3.135167,-1.230253;;, + 43;3; -0.648382, 3.135167,-1.230253;;, + 44;3; -0.648382, 3.135167,-1.230253;;, + 45;3; -0.648382, 3.135167,-1.230253;;, + 46;3; -0.648382, 3.135167,-1.230253;;, + 47;3; -0.648382, 3.135167,-1.230253;;, + 48;3; -0.648382, 3.135167,-1.230253;;, + 49;3; -0.648382, 3.135167,-1.230253;;, + 50;3; -0.648382, 3.135167,-1.230253;;, + 51;3; -0.648382, 3.135167,-1.230253;;, + 52;3; -0.648382, 3.135167,-1.230253;;, + 53;3; -0.648382, 3.135167,-1.230253;;, + 54;3; -0.648382, 3.135167,-1.230253;;, + 55;3; -0.648382, 3.135167,-1.230253;;, + 56;3; -0.648382, 3.135167,-1.230253;;, + 57;3; -0.648382, 3.135167,-1.230253;;, + 58;3; -0.648382, 3.135167,-1.230253;;, + 59;3; -0.648382, 3.135166,-1.230253;;, + 60;3; -0.648383, 3.135167,-1.230253;;, + 61;3; -0.648382, 3.135167,-1.230253;;, + 62;3; -0.648382, 3.135167,-1.230253;;, + 63;3; -0.648383, 3.135167,-1.230253;;, + 64;3; -0.648382, 3.135166,-1.230253;;, + 65;3; -0.648383, 3.135167,-1.230253;;, + 66;3; -0.648382, 3.135167,-1.230253;;, + 67;3; -0.648382, 3.135166,-1.230252;;, + 68;3; -0.648382, 3.135166,-1.230253;;, + 69;3; -0.648382, 3.135167,-1.230252;;, + 70;3; -0.648382, 3.135167,-1.230253;;, + 71;3; -0.648382, 3.135167,-1.230253;;, + 72;3; -0.648382, 3.135167,-1.230253;;, + 73;3; -0.648382, 3.135167,-1.230253;;, + 74;3; -0.648382, 3.135167,-1.230253;;, + 75;3; -0.648382, 3.135167,-1.230253;;, + 76;3; -0.648382, 3.135167,-1.230253;;, + 77;3; -0.648382, 3.135167,-1.230253;;, + 78;3; -0.648382, 3.135167,-1.230253;;, + 79;3; -0.648382, 3.135167,-1.230253;;, + 80;3; -0.648382, 3.135167,-1.230253;;, + 81;3; -0.648382, 3.135167,-1.230253;;, + 82;3; -0.648382, 3.135167,-1.230253;;, + 83;3; -0.648382, 3.135167,-1.230253;;, + 84;3; -0.648382, 3.135167,-1.230253;;, + 85;3; -0.648382, 3.135167,-1.230253;;, + 86;3; -0.648382, 3.135167,-1.230253;;, + 87;3; -0.648382, 3.135167,-1.230253;;, + 88;3; -0.648382, 3.135167,-1.230253;;, + 89;3; -0.648382, 3.135167,-1.230253;;, + 90;3; -0.648382, 3.135167,-1.230253;;, + 91;3; -0.648382, 3.135167,-1.230253;;, + 92;3; -0.648382, 3.135167,-1.230253;;, + 93;3; -0.648382, 3.135167,-1.230253;;, + 94;3; -0.648382, 3.135167,-1.230253;;, + 95;3; -0.648382, 3.135167,-1.230253;;, + 96;3; -0.648382, 3.135167,-1.230253;;, + 97;3; -0.648382, 3.135167,-1.230253;;, + 98;3; -0.648382, 3.135167,-1.230253;;, + 99;3; -0.648382, 3.135167,-1.230253;;, + 100;3; -0.648382, 3.135167,-1.230253;;, + 101;3; -0.648382, 3.135167,-1.230253;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 1;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 2;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 3;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 4;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 5;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 6;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 7;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 8;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 9;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 10;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 11;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 12;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 13;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 14;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 15;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 16;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 17;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 18;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 19;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 20;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 21;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 22;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 23;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 24;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 25;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 26;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 27;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 28;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 29;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 30;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 31;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 32;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 33;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 34;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 35;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 36;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 37;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 38;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 39;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 40;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 41;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 42;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 43;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 44;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 45;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 46;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 47;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 48;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 49;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 50;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 51;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 52;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 53;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 54;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 55;4; -0.495817,-0.503681, 0.495817,-0.503681;;, + 56;4; -0.483644,-0.514391, 0.483644,-0.514391;;, + 57;4; -0.466144,-0.529788, 0.466144,-0.529788;;, + 58;4; -0.448643,-0.545186, 0.448643,-0.545186;;, + 59;4; -0.436467,-0.555900, 0.436467,-0.555900;;, + 60;4; -0.432283,-0.559582, 0.432283,-0.559582;;, + 61;4; -0.436059,-0.557054, 0.436059,-0.557054;;, + 62;4; -0.464513,-0.531274, 0.464513,-0.531274;;, + 63;4; -0.532433,-0.464604, 0.532433,-0.464604;;, + 64;4; -0.651826,-0.273976, 0.651826,-0.273976;;, + 65;4; -0.646495,-0.283429, 0.646495,-0.283429;;, + 66;4; -0.635695,-0.302251, 0.635695,-0.302251;;, + 67;4; -0.622440,-0.324854, 0.622440,-0.324854;;, + 68;4; -0.607847,-0.349126, 0.607847,-0.349126;;, + 69;4; -0.592496,-0.373935, 0.592496,-0.373935;;, + 70;4; -0.576750,-0.398543, 0.576750,-0.398543;;, + 71;4; -0.560868,-0.422379, 0.560868,-0.422379;;, + 72;4; -0.545061,-0.444948, 0.545061,-0.444948;;, + 73;4; -0.529519,-0.465765, 0.529519,-0.465765;;, + 74;4; -0.514431,-0.484314, 0.514431,-0.484314;;, + 75;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 76;4; -0.484961,-0.514511, 0.484961,-0.514511;;, + 77;4; -0.468617,-0.529316, 0.468617,-0.529316;;, + 78;4; -0.452909,-0.542813, 0.452909,-0.542813;;, + 79;4; -0.440398,-0.553114, 0.440397,-0.553114;;, + 80;4; -0.432840,-0.559133, 0.432840,-0.559133;;, + 81;4; -0.430459,-0.560986, 0.430459,-0.560986;;, + 82;4; -0.431600,-0.560142, 0.431600,-0.560142;;, + 83;4; -0.435279,-0.557349, 0.435279,-0.557349;;, + 84;4; -0.441746,-0.552277, 0.441746,-0.552277;;, + 85;4; -0.450899,-0.544824, 0.450898,-0.544824;;, + 86;4; -0.462164,-0.535258, 0.462164,-0.535258;;, + 87;4; -0.474650,-0.524167, 0.474650,-0.524167;;, + 88;4; -0.487474,-0.512229, 0.487474,-0.512229;;, + 89;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 90;4; -0.516302,-0.482515, 0.516302,-0.482515;;, + 91;4; -0.537661,-0.458062, 0.537660,-0.458062;;, + 92;4; -0.554951,-0.437677, 0.554951,-0.437677;;, + 93;4; -0.560986,-0.430459, 0.560986,-0.430459;;, + 94;4; -0.557219,-0.434755, 0.557219,-0.434755;;, + 95;4; -0.546256,-0.447256, 0.546256,-0.447256;;, + 96;4; -0.530496,-0.465226, 0.530496,-0.465226;;, + 97;4; -0.514735,-0.483199, 0.514735,-0.483199;;, + 98;4; -0.503769,-0.495703, 0.503769,-0.495703;;, + 99;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 100;4; -0.500000,-0.500000, 0.500000,-0.500000;;, + 101;4; -0.500000,-0.500000, 0.500000,-0.500000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_005} + AnimationKey { //Position + 2; + 102; + 0;3; 0.000000,-0.293364, 0.572615;;, + 1;3; 0.000000,-0.293364, 0.572615;;, + 2;3; 0.000000,-0.293364, 0.572615;;, + 3;3; 0.000000,-0.293364, 0.572615;;, + 4;3; 0.000000,-0.293364, 0.572615;;, + 5;3; 0.000000,-0.293364, 0.572615;;, + 6;3; 0.000000,-0.293364, 0.572615;;, + 7;3; 0.000000,-0.293364, 0.572615;;, + 8;3; 0.000000,-0.293364, 0.572615;;, + 9;3; 0.000000,-0.293364, 0.572615;;, + 10;3; 0.000000,-0.293364, 0.572615;;, + 11;3; 0.000000,-0.293364, 0.572615;;, + 12;3; 0.000000,-0.293364, 0.572615;;, + 13;3; 0.000000,-0.293364, 0.572615;;, + 14;3; 0.000000,-0.293364, 0.572615;;, + 15;3; 0.000000,-0.293364, 0.572615;;, + 16;3; 0.000000,-0.293364, 0.572615;;, + 17;3; 0.000000,-0.293364, 0.572615;;, + 18;3; 0.000000,-0.293364, 0.572615;;, + 19;3; 0.000000,-0.293364, 0.572615;;, + 20;3; 0.000000,-0.293364, 0.572615;;, + 21;3; 0.000000,-0.293364, 0.572615;;, + 22;3; 0.000000,-0.293364, 0.572615;;, + 23;3; 0.000000,-0.293364, 0.572615;;, + 24;3; 0.000000,-0.293364, 0.572615;;, + 25;3; 0.000000,-0.293364, 0.572615;;, + 26;3; 0.000000,-0.293364, 0.572615;;, + 27;3; 0.000000,-0.293364, 0.572615;;, + 28;3; 0.000000,-0.293364, 0.572615;;, + 29;3; 0.000000,-0.293364, 0.572615;;, + 30;3; 0.000000,-0.293364, 0.572615;;, + 31;3; 0.000000,-0.293364, 0.572615;;, + 32;3; 0.000000,-0.293364, 0.572615;;, + 33;3; 0.000000,-0.293364, 0.572615;;, + 34;3; 0.000000,-0.293364, 0.572615;;, + 35;3; 0.000000,-0.293364, 0.572615;;, + 36;3; 0.000000,-0.293364, 0.572615;;, + 37;3; 0.000000,-0.293364, 0.572615;;, + 38;3; 0.000000,-0.293364, 0.572615;;, + 39;3; 0.000000,-0.293364, 0.572615;;, + 40;3; 0.000000,-0.293364, 0.572615;;, + 41;3; 0.000000,-0.293364, 0.572615;;, + 42;3; 0.000000,-0.293364, 0.572615;;, + 43;3; 0.000000,-0.293364, 0.572615;;, + 44;3; 0.000000,-0.293364, 0.572615;;, + 45;3; 0.000000,-0.293364, 0.572615;;, + 46;3; 0.000000,-0.293364, 0.572615;;, + 47;3; 0.000000,-0.293364, 0.572615;;, + 48;3; 0.000000,-0.293364, 0.572615;;, + 49;3; 0.000000,-0.293364, 0.572615;;, + 50;3; 0.000000,-0.293364, 0.572615;;, + 51;3; 0.000000,-0.293364, 0.572615;;, + 52;3; 0.000000,-0.293364, 0.572615;;, + 53;3; 0.000000,-0.293364, 0.572615;;, + 54;3; 0.000000,-0.293364, 0.572615;;, + 55;3; 0.000000,-0.293364, 0.572615;;, + 56;3; 0.000000,-0.293364, 0.572615;;, + 57;3; 0.000000,-0.293364, 0.572615;;, + 58;3; 0.000000,-0.293364, 0.572615;;, + 59;3; 0.000000,-0.293364, 0.572615;;, + 60;3; -0.000000,-0.293364, 0.572615;;, + 61;3; 0.000000,-0.293364, 0.572615;;, + 62;3; 0.000000,-0.293364, 0.572615;;, + 63;3; -0.000000,-0.293364, 0.572615;;, + 64;3; 0.000000,-0.293364, 0.572615;;, + 65;3; -0.000000,-0.293364, 0.572615;;, + 66;3; 0.000000,-0.293364, 0.572615;;, + 67;3; 0.000000,-0.293364, 0.572615;;, + 68;3; 0.000000,-0.293364, 0.572615;;, + 69;3; 0.000000,-0.293364, 0.572615;;, + 70;3; 0.000000,-0.293364, 0.572615;;, + 71;3; 0.000000,-0.293364, 0.572615;;, + 72;3; 0.000000,-0.293364, 0.572615;;, + 73;3; 0.000000,-0.293364, 0.572615;;, + 74;3; 0.000000,-0.293364, 0.572615;;, + 75;3; 0.000000,-0.293364, 0.572615;;, + 76;3; 0.000000,-0.293364, 0.572615;;, + 77;3; 0.000000,-0.293364, 0.572615;;, + 78;3; 0.000000,-0.293364, 0.572615;;, + 79;3; 0.000000,-0.293364, 0.572615;;, + 80;3; 0.000000,-0.293364, 0.572615;;, + 81;3; 0.000000,-0.293364, 0.572615;;, + 82;3; 0.000000,-0.293364, 0.572615;;, + 83;3; 0.000000,-0.293364, 0.572615;;, + 84;3; 0.000000,-0.293364, 0.572615;;, + 85;3; 0.000000,-0.293364, 0.572615;;, + 86;3; 0.000000,-0.293364, 0.572615;;, + 87;3; 0.000000,-0.293364, 0.572615;;, + 88;3; 0.000000,-0.293364, 0.572615;;, + 89;3; 0.000000,-0.293364, 0.572615;;, + 90;3; 0.000000,-0.293364, 0.572615;;, + 91;3; 0.000000,-0.293364, 0.572615;;, + 92;3; 0.000000,-0.293364, 0.572615;;, + 93;3; 0.000000,-0.293364, 0.572615;;, + 94;3; 0.000000,-0.293364, 0.572615;;, + 95;3; 0.000000,-0.293364, 0.572615;;, + 96;3; 0.000000,-0.293364, 0.572615;;, + 97;3; 0.000000,-0.293364, 0.572615;;, + 98;3; 0.000000,-0.293364, 0.572615;;, + 99;3; 0.000000,-0.293364, 0.572615;;, + 100;3; 0.000000,-0.293364, 0.572615;;, + 101;3; 0.000000,-0.293364, 0.572615;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 1;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 2;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 3;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 4;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 5;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 6;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 7;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 8;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 9;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 10;4; -0.321913,-0.818353, 0.030682,-0.007273;;, + 11;4; 0.245514,-0.839638, 0.096329,-0.022833;;, + 12;4; 0.510918,-0.849662, 0.127007,-0.030106;;, + 13;4; 0.443607,-0.845750, 0.115337,-0.036032;;, + 14;4; 0.247971,-0.834801, 0.081065,-0.052860;;, + 15;4; -0.033265,-0.819930, 0.030996,-0.075954;;, + 16;4; -0.315467,-0.806381,-0.020630,-0.096919;;, + 17;4; -0.513776,-0.799088,-0.059179,-0.107893;;, + 18;4; -0.584967,-0.800485,-0.077013,-0.105386;;, + 19;4; -0.588429,-0.805222,-0.061963,-0.075073;;, + 20;4; -0.589850,-0.807167,-0.020278,-0.023175;;, + 21;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 22;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 23;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 24;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 25;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 26;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 27;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 28;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 29;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 30;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 31;4; -0.588795,-0.805724, 0.018608, 0.025460;;, + 32;4; -0.586186,-0.802154, 0.058412, 0.079932;;, + 33;4; -0.584967,-0.800485, 0.077012, 0.105386;;, + 34;4; -0.584967,-0.800485, 0.067498, 0.092366;;, + 35;4; -0.584967,-0.800485, 0.039807, 0.054473;;, + 36;4; -0.584967,-0.800485,-0.000000, 0.000000;;, + 37;4; -0.584967,-0.800485,-0.039807,-0.054473;;, + 38;4; -0.584967,-0.800485,-0.067498,-0.092366;;, + 39;4; -0.584967,-0.800485,-0.077013,-0.105386;;, + 40;4; -0.586186,-0.802154,-0.058412,-0.079931;;, + 41;4; -0.588795,-0.805724,-0.018608,-0.025460;;, + 42;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 43;4; -0.590012,-0.807395,-0.000000, 0.000000;;, + 44;4; -0.589991,-0.807410,-0.000000, 0.000000;;, + 45;4; -0.589928,-0.807455,-0.000000, 0.000000;;, + 46;4; -0.589793,-0.807553,-0.000000, 0.000000;;, + 47;4; -0.589550,-0.807729,-0.000000, 0.000000;;, + 48;4; -0.589168,-0.808006,-0.000000, 0.000000;;, + 49;4; -0.588617,-0.808405,-0.000000, 0.000000;;, + 50;4; -0.587883,-0.808937,-0.000000, 0.000000;;, + 51;4; -0.586964,-0.809602,-0.000000, 0.000000;;, + 52;4; -0.585870,-0.810395,-0.000000, 0.000000;;, + 53;4; -0.584619,-0.811301,-0.000000, 0.000000;;, + 54;4; -0.583231,-0.812307,-0.000000, 0.000000;;, + 55;4; -0.547806,-0.827844,-0.000000, 0.000000;;, + 56;4; -0.446884,-0.869926,-0.000000, 0.000000;;, + 57;4; -0.300759,-0.927091,-0.000000, 0.000000;;, + 58;4; -0.151189,-0.978810,-0.000000, 0.000000;;, + 59;4; -0.040782,-1.005941,-0.000000, 0.000000;;, + 60;4; 0.008341,-0.999960, 0.000000, 0.000000;;, + 61;4; 0.025288,-0.975124, 0.009965,-0.007897;;, + 62;4; 0.041352,-0.946265, 0.039445,-0.031257;;, + 63;4; 0.053388,-0.914238, 0.084356,-0.066842;;, + 64;4; 0.057660,-0.880997, 0.135292,-0.107199;;, + 65;4; 0.051462,-0.849034, 0.180198,-0.142778;;, + 66;4; 0.034305,-0.820283, 0.209671,-0.166130;;, + 67;4; 0.007497,-0.795576, 0.219634,-0.174023;;, + 68;4; -0.038853,-0.777269, 0.212532,-0.168695;;, + 69;4; -0.114988,-0.768082, 0.191219,-0.152636;;, + 70;4; -0.215320,-0.767884, 0.157391,-0.126978;;, + 71;4; -0.327538,-0.774952, 0.115663,-0.095011;;, + 72;4; -0.434408,-0.785934, 0.073073,-0.061864;;, + 73;4; -0.519507,-0.796884, 0.036789,-0.032846;;, + 74;4; -0.572492,-0.804629, 0.011745,-0.011682;;, + 75;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 76;4; -0.589950,-0.807305,-0.001445, 0.008481;;, + 77;4; -0.589759,-0.807042, 0.004104, 0.019813;;, + 78;4; -0.589472,-0.806650, 0.014851, 0.032316;;, + 79;4; -0.589163,-0.806228, 0.026734, 0.043262;;, + 80;4; -0.588911,-0.805883, 0.035409, 0.050319;;, + 81;4; -0.588759,-0.805675, 0.038466, 0.052638;;, + 82;4; -0.588667,-0.805548, 0.037185, 0.050885;;, + 83;4; -0.588583,-0.805434, 0.033318, 0.045594;;, + 84;4; -0.588510,-0.805334, 0.026942, 0.036869;;, + 85;4; -0.588449,-0.805250, 0.018336, 0.025092;;, + 86;4; -0.588400,-0.805183, 0.008031, 0.010990;;, + 87;4; -0.588363,-0.805132,-0.003201,-0.004381;;, + 88;4; -0.588337,-0.805097,-0.014434,-0.019751;;, + 89;4; -0.588321,-0.805075,-0.024739,-0.033853;;, + 90;4; -0.588312,-0.805063,-0.033345,-0.045630;;, + 91;4; -0.588308,-0.805057,-0.039721,-0.054355;;, + 92;4; -0.588306,-0.805055,-0.043588,-0.059647;;, + 93;4; -0.588306,-0.805055,-0.044869,-0.061400;;, + 94;4; -0.588412,-0.805199,-0.042097,-0.057607;;, + 95;4; -0.588719,-0.805619,-0.034031,-0.046569;;, + 96;4; -0.589160,-0.806224,-0.022435,-0.030701;;, + 97;4; -0.589602,-0.806828,-0.010839,-0.014832;;, + 98;4; -0.589909,-0.807248,-0.002772,-0.003793;;, + 99;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 100;4; -0.590015,-0.807393,-0.000000, 0.000000;;, + 101;4; -0.590015,-0.807393,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_006} + AnimationKey { //Position + 2; + 102; + 0;3; 0.000000, 3.228616, 0.252948;;, + 1;3; 0.000000, 3.228616, 0.252948;;, + 2;3; 0.000000, 3.228616, 0.252948;;, + 3;3; 0.000000, 3.228616, 0.252948;;, + 4;3; 0.000000, 3.228616, 0.252948;;, + 5;3; 0.000000, 3.228616, 0.252948;;, + 6;3; 0.000000, 3.228616, 0.252948;;, + 7;3; 0.000000, 3.228616, 0.252948;;, + 8;3; 0.000000, 3.228616, 0.252948;;, + 9;3; 0.000000, 3.228616, 0.252948;;, + 10;3; 0.000000, 3.228616, 0.252948;;, + 11;3; 0.000000, 3.228616, 0.252948;;, + 12;3; 0.000000, 3.228616, 0.252948;;, + 13;3; 0.000000, 3.228616, 0.252948;;, + 14;3; 0.000000, 3.228616, 0.252948;;, + 15;3; 0.000000, 3.228616, 0.252948;;, + 16;3; 0.000000, 3.228616, 0.252948;;, + 17;3; 0.000000, 3.228616, 0.252948;;, + 18;3; 0.000000, 3.228616, 0.252948;;, + 19;3; 0.000000, 3.228616, 0.252948;;, + 20;3; 0.000000, 3.228616, 0.252948;;, + 21;3; 0.000000, 3.228616, 0.252948;;, + 22;3; 0.000000, 3.228616, 0.252948;;, + 23;3; 0.000000, 3.228616, 0.252948;;, + 24;3; 0.000000, 3.228616, 0.252948;;, + 25;3; 0.000000, 3.228616, 0.252948;;, + 26;3; 0.000000, 3.228616, 0.252948;;, + 27;3; 0.000000, 3.228616, 0.252948;;, + 28;3; 0.000000, 3.228616, 0.252948;;, + 29;3; 0.000000, 3.228616, 0.252948;;, + 30;3; 0.000000, 3.228616, 0.252948;;, + 31;3; 0.000000, 3.228616, 0.252948;;, + 32;3; 0.000000, 3.228616, 0.252948;;, + 33;3; 0.000000, 3.228616, 0.252948;;, + 34;3; 0.000000, 3.228616, 0.252948;;, + 35;3; 0.000000, 3.228616, 0.252948;;, + 36;3; 0.000000, 3.228616, 0.252948;;, + 37;3; 0.000000, 3.228616, 0.252948;;, + 38;3; 0.000000, 3.228616, 0.252948;;, + 39;3; 0.000000, 3.228616, 0.252948;;, + 40;3; 0.000000, 3.228616, 0.252948;;, + 41;3; 0.000000, 3.228616, 0.252948;;, + 42;3; 0.000000, 3.228616, 0.252948;;, + 43;3; 0.000000, 3.228616, 0.252948;;, + 44;3; 0.000000, 3.228616, 0.252948;;, + 45;3; 0.000000, 3.228616, 0.252948;;, + 46;3; 0.000000, 3.228616, 0.252948;;, + 47;3; 0.000000, 3.228616, 0.252948;;, + 48;3; 0.000000, 3.228616, 0.252948;;, + 49;3; 0.000000, 3.228616, 0.252948;;, + 50;3; 0.000000, 3.228616, 0.252948;;, + 51;3; 0.000000, 3.228616, 0.252948;;, + 52;3; 0.000000, 3.228616, 0.252948;;, + 53;3; 0.000000, 3.228616, 0.252948;;, + 54;3; 0.000000, 3.228616, 0.252948;;, + 55;3; 0.000000, 3.228616, 0.252948;;, + 56;3; 0.000000, 3.228616, 0.252948;;, + 57;3; 0.000000, 3.228616, 0.252948;;, + 58;3; 0.000000, 3.228617, 0.252948;;, + 59;3; 0.000000, 3.228616, 0.252947;;, + 60;3; -0.000000, 3.228616, 0.252947;;, + 61;3; 0.000000, 3.228617, 0.252948;;, + 62;3; 0.000000, 3.228617, 0.252948;;, + 63;3; -0.000000, 3.228616, 0.252947;;, + 64;3; 0.000000, 3.228616, 0.252947;;, + 65;3; -0.000000, 3.228616, 0.252947;;, + 66;3; 0.000000, 3.228617, 0.252948;;, + 67;3; 0.000000, 3.228616, 0.252948;;, + 68;3; 0.000000, 3.228616, 0.252948;;, + 69;3; 0.000000, 3.228616, 0.252948;;, + 70;3; 0.000000, 3.228616, 0.252948;;, + 71;3; 0.000000, 3.228616, 0.252948;;, + 72;3; 0.000000, 3.228616, 0.252948;;, + 73;3; 0.000000, 3.228616, 0.252947;;, + 74;3; 0.000000, 3.228616, 0.252948;;, + 75;3; 0.000000, 3.228616, 0.252948;;, + 76;3; 0.000000, 3.228616, 0.252948;;, + 77;3; 0.000000, 3.228616, 0.252948;;, + 78;3; 0.000000, 3.228616, 0.252948;;, + 79;3; 0.000000, 3.228616, 0.252948;;, + 80;3; 0.000000, 3.228616, 0.252948;;, + 81;3; 0.000000, 3.228616, 0.252948;;, + 82;3; 0.000000, 3.228616, 0.252948;;, + 83;3; 0.000000, 3.228616, 0.252948;;, + 84;3; 0.000000, 3.228616, 0.252948;;, + 85;3; 0.000000, 3.228616, 0.252948;;, + 86;3; 0.000000, 3.228616, 0.252948;;, + 87;3; 0.000000, 3.228616, 0.252948;;, + 88;3; 0.000000, 3.228616, 0.252948;;, + 89;3; 0.000000, 3.228616, 0.252948;;, + 90;3; 0.000000, 3.228616, 0.252948;;, + 91;3; 0.000000, 3.228616, 0.252948;;, + 92;3; 0.000000, 3.228616, 0.252948;;, + 93;3; 0.000000, 3.228616, 0.252948;;, + 94;3; 0.000000, 3.228616, 0.252948;;, + 95;3; 0.000000, 3.228616, 0.252948;;, + 96;3; 0.000000, 3.228616, 0.252948;;, + 97;3; 0.000000, 3.228616, 0.252948;;, + 98;3; 0.000000, 3.228616, 0.252948;;, + 99;3; 0.000000, 3.228616, 0.252948;;, + 100;3; 0.000000, 3.228616, 0.252948;;, + 101;3; 0.000000, 3.228616, 0.252948;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 1;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 2;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 3;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 4;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 5;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 6;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 7;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 8;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 9;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 10;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 11;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 12;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 13;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 14;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 15;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 16;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 17;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 18;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 19;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 20;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 21;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 22;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 23;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 24;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 25;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 26;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 27;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 28;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 29;4; -0.916951, 0.398765, 0.002500, 0.005748;;, + 30;4; -0.916237, 0.398455, 0.010631, 0.024444;;, + 31;4; -0.913988, 0.397477, 0.024884, 0.057217;;, + 32;4; -0.909210, 0.395398, 0.044634, 0.102632;;, + 33;4; -0.901276, 0.391948, 0.068036, 0.156447;;, + 34;4; -0.890205, 0.387134, 0.092835, 0.213473;;, + 35;4; -0.876483, 0.381166, 0.117284, 0.269692;;, + 36;4; -0.843436, 0.366795, 0.155312, 0.357134;;, + 37;4; -0.819081, 0.356203, 0.179340, 0.412387;;, + 38;4; -0.824950, 0.358755, 0.174193, 0.400554;;, + 39;4; -0.841601, 0.365997, 0.158578, 0.364645;;, + 40;4; -0.861760, 0.374763, 0.137137, 0.315342;;, + 41;4; -0.876483, 0.381166, 0.117284, 0.269692;;, + 42;4; -0.887073, 0.385772, 0.096610, 0.222152;;, + 43;4; -0.897254, 0.390199, 0.070722, 0.162624;;, + 44;4; -0.906032, 0.394016, 0.043242, 0.099435;;, + 45;4; -0.912404, 0.396787, 0.019759, 0.045433;;, + 46;4; -0.915973, 0.398340, 0.004853, 0.011157;;, + 47;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 48;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 49;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 50;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 51;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 52;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 53;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 54;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 55;4; -0.919039, 0.393560, 0.000000, 0.000000;;, + 56;4; -0.924865, 0.378303, 0.000000, 0.000000;;, + 57;4; -0.933240, 0.356371, 0.000000, 0.000000;;, + 58;4; -0.941615, 0.334438, 0.000000, 0.000000;;, + 59;4; -0.947441, 0.319181, 0.000000, 0.000000;;, + 60;4; -0.949443, 0.313939, 0.000000, 0.000000;;, + 61;4; -0.941668, 0.334010, 0.000000, 0.000000;;, + 62;4; -0.925020, 0.377048, 0.000000, 0.000000;;, + 63;4; -0.917210, 0.397396, 0.000000, 0.000000;;, + 64;4; -0.917168, 0.397738, 0.000000, 0.000000;;, + 65;4; -0.917131, 0.398038, 0.000000, 0.000000;;, + 66;4; -0.917100, 0.398288, 0.000000, 0.000000;;, + 67;4; -0.917076, 0.398485, 0.000000, 0.000000;;, + 68;4; -0.917059, 0.398627, 0.000000, 0.000000;;, + 69;4; -0.917047, 0.398718, 0.000000, 0.000000;;, + 70;4; -0.917041, 0.398770, 0.000000, 0.000000;;, + 71;4; -0.917038, 0.398794, 0.000000, 0.000000;;, + 72;4; -0.917037, 0.398801, 0.000000, 0.000000;;, + 73;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 74;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 75;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 76;4; -0.915889, 0.401289, 0.000000, 0.000000;;, + 77;4; -0.912550, 0.408525, 0.000000, 0.000000;;, + 78;4; -0.907749, 0.418928, 0.000000, 0.000000;;, + 79;4; -0.902948, 0.429331, 0.000000, 0.000000;;, + 80;4; -0.899608, 0.436568, 0.000000, 0.000000;;, + 81;4; -0.898461, 0.439054, 0.000000, 0.000000;;, + 82;4; -0.899608, 0.436568, 0.000000, 0.000000;;, + 83;4; -0.902948, 0.429331, 0.000000, 0.000000;;, + 84;4; -0.907749, 0.418928, 0.000000, 0.000000;;, + 85;4; -0.912550, 0.408525, 0.000000, 0.000000;;, + 86;4; -0.915890, 0.401289, 0.000000, 0.000000;;, + 87;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 88;4; -0.915567, 0.401940, 0.000000, 0.000000;;, + 89;4; -0.911287, 0.411071, 0.000000, 0.000000;;, + 90;4; -0.905135, 0.424198, 0.000000, 0.000000;;, + 91;4; -0.898983, 0.437325, 0.000000, 0.000000;;, + 92;4; -0.894703, 0.446457, 0.000000, 0.000000;;, + 93;4; -0.893233, 0.449594, 0.000000, 0.000000;;, + 94;4; -0.894703, 0.446457, 0.000000, 0.000000;;, + 95;4; -0.898983, 0.437325, 0.000000, 0.000000;;, + 96;4; -0.905135, 0.424199, 0.000000, 0.000000;;, + 97;4; -0.911287, 0.411072, 0.000000, 0.000000;;, + 98;4; -0.915566, 0.401940, 0.000000, 0.000000;;, + 99;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 100;4; -0.917037, 0.398802, 0.000000, 0.000000;;, + 101;4; -0.917037, 0.398802, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_Bone_007} + AnimationKey { //Position + 2; + 102; + 0;3; -0.000000, 1.500366, 0.161866;;, + 1;3; -0.000000, 1.500366, 0.161866;;, + 2;3; -0.000000, 1.500366, 0.161866;;, + 3;3; -0.000000, 1.500366, 0.161866;;, + 4;3; -0.000000, 1.500366, 0.161866;;, + 5;3; -0.000000, 1.500366, 0.161866;;, + 6;3; -0.000000, 1.500366, 0.161866;;, + 7;3; -0.000000, 1.500366, 0.161866;;, + 8;3; -0.000000, 1.500366, 0.161866;;, + 9;3; -0.000000, 1.500366, 0.161866;;, + 10;3; -0.000000, 1.500366, 0.161866;;, + 11;3; -0.000000, 1.500366, 0.161866;;, + 12;3; -0.000000, 1.500366, 0.161866;;, + 13;3; -0.000000, 1.500366, 0.161866;;, + 14;3; -0.000000, 1.500366, 0.161866;;, + 15;3; -0.000000, 1.500366, 0.161866;;, + 16;3; -0.000000, 1.500366, 0.161866;;, + 17;3; -0.000000, 1.500366, 0.161866;;, + 18;3; -0.000000, 1.500366, 0.161866;;, + 19;3; -0.000000, 1.500366, 0.161866;;, + 20;3; -0.000000, 1.500366, 0.161866;;, + 21;3; -0.000000, 1.500366, 0.161866;;, + 22;3; -0.000000, 1.500366, 0.161866;;, + 23;3; -0.000000, 1.500366, 0.161866;;, + 24;3; -0.000000, 1.500366, 0.161866;;, + 25;3; -0.000000, 1.500366, 0.161866;;, + 26;3; -0.000000, 1.500366, 0.161866;;, + 27;3; -0.000000, 1.500366, 0.161866;;, + 28;3; -0.000000, 1.500366, 0.161866;;, + 29;3; 0.000000, 1.500365, 0.161866;;, + 30;3; 0.000000, 1.500366, 0.161866;;, + 31;3; -0.000000, 1.500365, 0.161866;;, + 32;3; 0.000000, 1.500366, 0.161866;;, + 33;3; -0.000000, 1.500366, 0.161866;;, + 34;3; -0.000000, 1.500366, 0.161866;;, + 35;3; 0.000000, 1.500366, 0.161866;;, + 36;3; -0.000000, 1.500366, 0.161866;;, + 37;3; -0.000000, 1.500366, 0.161866;;, + 38;3; -0.000000, 1.500366, 0.161865;;, + 39;3; 0.000000, 1.500366, 0.161866;;, + 40;3; -0.000000, 1.500365, 0.161866;;, + 41;3; 0.000000, 1.500366, 0.161866;;, + 42;3; -0.000000, 1.500366, 0.161866;;, + 43;3; -0.000000, 1.500366, 0.161866;;, + 44;3; -0.000000, 1.500366, 0.161866;;, + 45;3; 0.000001, 1.500366, 0.161866;;, + 46;3; 0.000000, 1.500366, 0.161866;;, + 47;3; -0.000000, 1.500366, 0.161866;;, + 48;3; -0.000000, 1.500366, 0.161866;;, + 49;3; -0.000000, 1.500366, 0.161866;;, + 50;3; -0.000000, 1.500366, 0.161866;;, + 51;3; -0.000000, 1.500366, 0.161866;;, + 52;3; -0.000000, 1.500366, 0.161866;;, + 53;3; -0.000000, 1.500366, 0.161866;;, + 54;3; -0.000000, 1.500366, 0.161866;;, + 55;3; 0.000000, 1.500366, 0.161866;;, + 56;3; 0.000000, 1.500366, 0.161866;;, + 57;3; -0.000000, 1.500366, 0.161866;;, + 58;3; -0.000000, 1.500366, 0.161866;;, + 59;3; -0.000000, 1.500365, 0.161866;;, + 60;3; -0.000000, 1.500365, 0.161866;;, + 61;3; 0.000000, 1.500365, 0.161866;;, + 62;3; -0.000000, 1.500366, 0.161866;;, + 63;3; -0.000000, 1.500366, 0.161866;;, + 64;3; -0.000000, 1.500366, 0.161866;;, + 65;3; 0.000000, 1.500365, 0.161866;;, + 66;3; 0.000000, 1.500366, 0.161866;;, + 67;3; -0.000000, 1.500365, 0.161866;;, + 68;3; -0.000000, 1.500365, 0.161866;;, + 69;3; 0.000000, 1.500366, 0.161866;;, + 70;3; -0.000000, 1.500365, 0.161866;;, + 71;3; -0.000000, 1.500366, 0.161866;;, + 72;3; -0.000000, 1.500366, 0.161866;;, + 73;3; -0.000000, 1.500366, 0.161866;;, + 74;3; -0.000000, 1.500366, 0.161866;;, + 75;3; -0.000000, 1.500366, 0.161866;;, + 76;3; 0.000000, 1.500365, 0.161866;;, + 77;3; -0.000000, 1.500366, 0.161866;;, + 78;3; -0.000000, 1.500366, 0.161866;;, + 79;3; -0.000000, 1.500366, 0.161866;;, + 80;3; -0.000000, 1.500365, 0.161866;;, + 81;3; -0.000000, 1.500366, 0.161866;;, + 82;3; -0.000000, 1.500365, 0.161866;;, + 83;3; -0.000000, 1.500366, 0.161866;;, + 84;3; 0.000000, 1.500366, 0.161866;;, + 85;3; 0.000000, 1.500365, 0.161866;;, + 86;3; -0.000000, 1.500366, 0.161866;;, + 87;3; -0.000000, 1.500366, 0.161866;;, + 88;3; -0.000000, 1.500366, 0.161866;;, + 89;3; -0.000000, 1.500366, 0.161866;;, + 90;3; -0.000000, 1.500366, 0.161866;;, + 91;3; -0.000000, 1.500366, 0.161866;;, + 92;3; -0.000000, 1.500366, 0.161866;;, + 93;3; -0.000000, 1.500366, 0.161866;;, + 94;3; -0.000000, 1.500366, 0.161866;;, + 95;3; -0.000000, 1.500366, 0.161866;;, + 96;3; 0.000000, 1.500366, 0.161866;;, + 97;3; 0.000000, 1.500366, 0.161866;;, + 98;3; -0.000000, 1.500366, 0.161866;;, + 99;3; -0.000000, 1.500366, 0.161866;;, + 100;3; -0.000000, 1.500366, 0.161866;;, + 101;3; -0.000000, 1.500366, 0.161866;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 1;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 2;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 3;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 4;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 5;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 6;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 7;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 8;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 9;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 10;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 11;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 12;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 13;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 14;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 15;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 16;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 17;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 18;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 19;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 20;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 21;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 22;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 23;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 24;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 25;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 26;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 27;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 28;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 29;4; -0.916130,-0.376911,-0.020052,-0.017657;;, + 30;4; -0.898608,-0.346891,-0.079321,-0.069787;;, + 31;4; -0.871914,-0.301155,-0.169579,-0.149127;;, + 32;4; -0.841633,-0.249279,-0.271998,-0.239215;;, + 33;4; -0.814929,-0.203540,-0.362420,-0.318901;;, + 34;4; -0.797394,-0.173516,-0.421879,-0.371431;;, + 35;4; -0.791464,-0.163367,-0.442012,-0.389258;;, + 36;4; -0.862154,-0.220829,-0.270423,-0.221124;;, + 37;4; -0.926541,-0.293379,-0.037122, 0.037436;;, + 38;4; -0.909731,-0.319000, 0.056437, 0.177456;;, + 39;4; -0.884561,-0.341265, 0.119139, 0.277940;;, + 40;4; -0.862987,-0.354981, 0.147403, 0.328406;;, + 41;4; -0.855246,-0.359015, 0.153402, 0.340778;;, + 42;4; -0.859373,-0.360747, 0.143926, 0.319728;;, + 43;4; -0.871384,-0.365789, 0.116352, 0.258474;;, + 44;4; -0.888650,-0.373037, 0.076715, 0.170422;;, + 45;4; -0.905917,-0.380285, 0.037070, 0.082352;;, + 46;4; -0.917928,-0.385327, 0.009482, 0.021066;;, + 47;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 48;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 49;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 50;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 51;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 52;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 53;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 54;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 55;4; -0.916185,-0.397876, 0.000000,-0.000000;;, + 56;4; -0.899103,-0.429354, 0.000000,-0.000000;;, + 57;4; -0.874549,-0.474601, 0.000000,-0.000000;;, + 58;4; -0.849995,-0.519845, 0.000000,-0.000000;;, + 59;4; -0.832915,-0.551319, 0.000000,-0.000000;;, + 60;4; -0.827046,-0.562134, 0.000000,-0.000000;;, + 61;4; -0.828254,-0.559909, 0.000000,-0.000000;;, + 62;4; -0.831773,-0.553424, 0.000000,-0.000000;;, + 63;4; -0.837411,-0.543034, 0.000000,-0.000000;;, + 64;4; -0.844922,-0.529194, 0.000000,-0.000000;;, + 65;4; -0.853993,-0.512478, 0.000000,-0.000000;;, + 66;4; -0.864247,-0.493583, 0.000000,-0.000000;;, + 67;4; -0.875230,-0.473345, 0.000000,-0.000000;;, + 68;4; -0.886413,-0.452738, 0.000000,-0.000000;;, + 69;4; -0.897192,-0.432875, 0.000000,-0.000000;;, + 70;4; -0.906895,-0.414996, 0.000000,-0.000000;;, + 71;4; -0.914790,-0.400446, 0.000000,-0.000000;;, + 72;4; -0.920107,-0.390649, 0.000000,-0.000000;;, + 73;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 74;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 75;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 76;4; -0.921790,-0.386948,-0.005563, 0.002504;;, + 77;4; -0.921015,-0.386623,-0.021755, 0.009793;;, + 78;4; -0.919889,-0.386150,-0.045030, 0.020270;;, + 79;4; -0.918740,-0.385668,-0.068305, 0.030747;;, + 80;4; -0.917902,-0.385316,-0.084495, 0.038036;;, + 81;4; -0.917547,-0.385167,-0.090058, 0.040540;;, + 82;4; -0.917451,-0.385127,-0.087220, 0.039262;;, + 83;4; -0.917364,-0.385090,-0.078649, 0.035404;;, + 84;4; -0.917288,-0.385058,-0.064518, 0.029043;;, + 85;4; -0.917224,-0.385031,-0.045445, 0.020457;;, + 86;4; -0.917173,-0.385010,-0.022604, 0.010175;;, + 87;4; -0.917134,-0.384994, 0.002289,-0.001031;;, + 88;4; -0.917108,-0.384983, 0.027183,-0.012237;;, + 89;4; -0.917091,-0.384976, 0.050023,-0.022518;;, + 90;4; -0.917082,-0.384972, 0.069097,-0.031104;;, + 91;4; -0.917077,-0.384970, 0.083228,-0.037465;;, + 92;4; -0.917076,-0.384969, 0.091798,-0.041323;;, + 93;4; -0.917076,-0.384969, 0.094637,-0.042601;;, + 94;4; -0.917383,-0.385098, 0.088792,-0.039970;;, + 95;4; -0.918278,-0.385474, 0.071779,-0.032312;;, + 96;4; -0.919565,-0.386014, 0.047322,-0.021302;;, + 97;4; -0.920852,-0.386555, 0.022863,-0.010292;;, + 98;4; -0.921747,-0.386930, 0.005847,-0.002632;;, + 99;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 100;4; -0.922055,-0.387059, 0.000000,-0.000000;;, + 101;4; -0.922055,-0.387059, 0.000000,-0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube_005} + AnimationKey { //Position + 2; + 102; + 0;3; -0.018560,-0.012256,-0.107993;;, + 1;3; -0.018560,-0.012256,-0.107993;;, + 2;3; -0.018560,-0.012256,-0.107993;;, + 3;3; -0.018560,-0.012256,-0.107993;;, + 4;3; -0.018560,-0.012256,-0.107993;;, + 5;3; -0.018560,-0.012256,-0.107993;;, + 6;3; -0.018560,-0.012256,-0.107993;;, + 7;3; -0.018560,-0.012256,-0.107993;;, + 8;3; -0.018560,-0.012256,-0.107993;;, + 9;3; -0.018560,-0.012256,-0.107993;;, + 10;3; -0.018560,-0.012256,-0.107993;;, + 11;3; -0.018560,-0.012256,-0.107993;;, + 12;3; -0.018560,-0.012256,-0.107993;;, + 13;3; -0.018560,-0.012256,-0.107993;;, + 14;3; -0.018560,-0.012256,-0.107993;;, + 15;3; -0.018560,-0.012256,-0.107993;;, + 16;3; -0.018560,-0.012256,-0.107993;;, + 17;3; -0.018560,-0.012256,-0.107993;;, + 18;3; -0.018560,-0.012256,-0.107993;;, + 19;3; -0.018560,-0.012256,-0.107993;;, + 20;3; -0.018560,-0.012256,-0.107993;;, + 21;3; -0.018560,-0.012256,-0.107993;;, + 22;3; -0.018560,-0.012256,-0.107993;;, + 23;3; -0.018560,-0.012256,-0.107993;;, + 24;3; -0.018560,-0.012256,-0.107993;;, + 25;3; -0.018560,-0.012256,-0.107993;;, + 26;3; -0.018560,-0.012256,-0.107993;;, + 27;3; -0.018560,-0.012256,-0.107993;;, + 28;3; -0.018560,-0.012256,-0.107993;;, + 29;3; -0.018560,-0.012256,-0.107993;;, + 30;3; -0.018560,-0.012256,-0.107993;;, + 31;3; -0.018560,-0.012256,-0.107993;;, + 32;3; -0.018560,-0.012256,-0.107993;;, + 33;3; -0.018560,-0.012256,-0.107993;;, + 34;3; -0.018560,-0.012256,-0.107993;;, + 35;3; -0.018560,-0.012256,-0.107993;;, + 36;3; -0.018560,-0.012256,-0.107993;;, + 37;3; -0.018560,-0.012256,-0.107993;;, + 38;3; -0.018560,-0.012256,-0.107993;;, + 39;3; -0.018560,-0.012256,-0.107993;;, + 40;3; -0.018560,-0.012256,-0.107993;;, + 41;3; -0.018560,-0.012256,-0.107993;;, + 42;3; -0.018560,-0.012256,-0.107993;;, + 43;3; -0.018560,-0.012256,-0.107993;;, + 44;3; -0.018560,-0.012256,-0.107993;;, + 45;3; -0.018560,-0.012256,-0.107993;;, + 46;3; -0.018560,-0.012256,-0.107993;;, + 47;3; -0.018560,-0.012256,-0.107993;;, + 48;3; -0.018560,-0.012256,-0.107993;;, + 49;3; -0.018560,-0.012256,-0.107993;;, + 50;3; -0.018560,-0.012256,-0.107993;;, + 51;3; -0.018560,-0.012256,-0.107993;;, + 52;3; -0.018560,-0.012256,-0.107993;;, + 53;3; -0.018560,-0.012256,-0.107993;;, + 54;3; -0.018560,-0.012256,-0.107993;;, + 55;3; -0.018560,-0.012256,-0.107993;;, + 56;3; -0.018560,-0.012256,-0.107993;;, + 57;3; -0.018560,-0.012256,-0.107993;;, + 58;3; -0.018560,-0.012256,-0.107993;;, + 59;3; -0.018560,-0.012256,-0.107993;;, + 60;3; -0.018560,-0.012256,-0.107993;;, + 61;3; -0.018560,-0.012256,-0.107993;;, + 62;3; -0.018560,-0.012256,-0.107993;;, + 63;3; -0.018560,-0.012256,-0.107993;;, + 64;3; -0.018560,-0.012256,-0.107993;;, + 65;3; -0.018560,-0.012256,-0.107993;;, + 66;3; -0.018560,-0.012256,-0.107993;;, + 67;3; -0.018560,-0.012256,-0.107993;;, + 68;3; -0.018560,-0.012256,-0.107993;;, + 69;3; -0.018560,-0.012256,-0.107993;;, + 70;3; -0.018560,-0.012256,-0.107993;;, + 71;3; -0.018560,-0.012256,-0.107993;;, + 72;3; -0.018560,-0.012256,-0.107993;;, + 73;3; -0.018560,-0.012256,-0.107993;;, + 74;3; -0.018560,-0.012256,-0.107993;;, + 75;3; -0.018560,-0.012256,-0.107993;;, + 76;3; -0.018560,-0.012256,-0.107993;;, + 77;3; -0.018560,-0.012256,-0.107993;;, + 78;3; -0.018560,-0.012256,-0.107993;;, + 79;3; -0.018560,-0.012256,-0.107993;;, + 80;3; -0.018560,-0.012256,-0.107993;;, + 81;3; -0.018560,-0.012256,-0.107993;;, + 82;3; -0.018560,-0.012256,-0.107993;;, + 83;3; -0.018560,-0.012256,-0.107993;;, + 84;3; -0.018560,-0.012256,-0.107993;;, + 85;3; -0.018560,-0.012256,-0.107993;;, + 86;3; -0.018560,-0.012256,-0.107993;;, + 87;3; -0.018560,-0.012256,-0.107993;;, + 88;3; -0.018560,-0.012256,-0.107993;;, + 89;3; -0.018560,-0.012256,-0.107993;;, + 90;3; -0.018560,-0.012256,-0.107993;;, + 91;3; -0.018560,-0.012256,-0.107993;;, + 92;3; -0.018560,-0.012256,-0.107993;;, + 93;3; -0.018560,-0.012256,-0.107993;;, + 94;3; -0.018560,-0.012256,-0.107993;;, + 95;3; -0.018560,-0.012256,-0.107993;;, + 96;3; -0.018560,-0.012256,-0.107993;;, + 97;3; -0.018560,-0.012256,-0.107993;;, + 98;3; -0.018560,-0.012256,-0.107993;;, + 99;3; -0.018560,-0.012256,-0.107993;;, + 100;3; -0.018560,-0.012256,-0.107993;;, + 101;3; -0.018560,-0.012256,-0.107993;;; + } + AnimationKey { //Rotation + 0; + 102; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 102; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs_mc/models/mobs_mc_chicken.x b/mods/mobs_mc/models/mobs_mc_chicken.x new file mode 100644 index 000000000..8c267e3d7 --- /dev/null +++ b/mods/mobs_mc/models/mobs_mc_chicken.x @@ -0,0 +1,6032 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Chicken_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Chicken_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Chicken_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 4.589765, 2.530680, 1.000000;; + } + Frame Chicken_Rig_Head { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000005, 0.000000, + 0.000000, 0.999933, 0.011550, 0.000000, + -0.000005,-0.011550, 0.999933, 0.000000, + 0.023066, 4.738051, 2.665740, 1.000000;; + } + } // End of Chicken_Rig_Head + Frame Chicken_Rig_Leg_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.961346, 2.540998,-1.666857, 1.000000;; + } + } // End of Chicken_Rig_Leg_L + Frame Chicken_Rig_Leg_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.929329, 2.540998,-1.666857, 1.000000;; + } + } // End of Chicken_Rig_Leg_R + Frame Chicken_Rig_Wing_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -2.118756, 2.519446, 1.774359, 1.000000;; + } + } // End of Chicken_Rig_Wing_L + Frame Chicken_Rig_Wing_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 2.086739, 2.519446, 1.774359, 1.000000;; + } + } // End of Chicken_Rig_Wing_R + } // End of Chicken_Rig_Body + } // End of Chicken_Rig_Root + Frame Chicken { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Chicken mesh + 160; + -1.946891;-2.595855; 6.529420;, + -1.946891; 2.595855; 6.529420;, + -1.946891; 2.595855; 2.635638;, + -1.946891;-2.595855; 2.635638;, + -1.946891; 2.595855; 6.529420;, + 1.946891; 2.595855; 6.529420;, + 1.946891; 2.595855; 2.635638;, + -1.946891; 2.595855; 2.635638;, + 1.946891; 2.595855; 6.529420;, + 1.946891;-2.595855; 6.529420;, + 1.946891;-2.595855; 2.635638;, + 1.946891; 2.595855; 2.635638;, + 1.946891;-2.595855; 6.529420;, + -1.946891;-2.595855; 6.529420;, + -1.946891;-2.595855; 2.635638;, + 1.946891;-2.595855; 2.635638;, + -1.946891;-2.595855; 2.635638;, + -1.946891; 2.595855; 2.635638;, + 1.946891; 2.595855; 2.635638;, + 1.946891;-2.595855; 2.635638;, + 1.946891;-2.595855; 6.529420;, + 1.946891; 2.595855; 6.529420;, + -1.946891; 2.595855; 6.529420;, + -1.946891;-2.595855; 6.529420;, + -2.595855;-1.946891; 6.529420;, + -2.595855; 1.946891; 6.529420;, + -2.595855; 1.946891; 3.933565;, + -2.595855;-1.946891; 3.933565;, + -2.595855; 1.946891; 6.529420;, + -1.946891; 1.946891; 6.529420;, + -1.946891; 1.946891; 3.933565;, + -2.595855; 1.946891; 3.933565;, + -1.946891; 1.946891; 6.529420;, + -1.946891;-1.946891; 6.529420;, + -1.946891;-1.946891; 3.933565;, + -1.946891; 1.946891; 3.933565;, + -1.946891;-1.946891; 6.529420;, + -2.595855;-1.946891; 6.529420;, + -2.595855;-1.946891; 3.933565;, + -1.946891;-1.946891; 3.933565;, + -2.595855;-1.946891; 3.933565;, + -2.595855; 1.946891; 3.933565;, + -1.946891; 1.946891; 3.933565;, + -1.946891;-1.946891; 3.933565;, + -1.946891;-1.946891; 6.529420;, + -1.946891; 1.946891; 6.529420;, + -2.595855; 1.946891; 6.529420;, + -2.595855;-1.946891; 6.529420;, + 1.946891;-1.946891; 6.529420;, + 2.595855;-1.946891; 6.529420;, + 2.595855; 1.946891; 6.529420;, + 1.946891; 1.946891; 6.529420;, + 1.946891;-1.946891; 6.529420;, + 1.946891;-1.946891; 3.933565;, + 2.595855;-1.946891; 3.933565;, + 2.595855;-1.946891; 6.529420;, + 1.946891; 1.946891; 6.529420;, + 1.946891; 1.946891; 3.933565;, + 1.946891;-1.946891; 3.933565;, + 1.946891;-1.946891; 6.529420;, + 2.595855; 1.946891; 6.529420;, + 2.595855; 1.946891; 3.933565;, + 1.946891; 1.946891; 3.933565;, + 1.946891; 1.946891; 6.529420;, + 2.595855;-1.946891; 6.529420;, + 2.595855;-1.946891; 3.933565;, + 2.595855; 1.946891; 3.933565;, + 2.595855; 1.946891; 6.529420;, + -1.297927; 1.946891; 9.125275;, + -1.297927; 3.893782; 9.125275;, + -1.297927; 3.893782; 5.231493;, + -1.297927; 1.946891; 5.231493;, + -1.297927; 3.893782; 9.125275;, + 1.297927; 3.893782; 9.125275;, + 1.297927; 3.893782; 5.231493;, + -1.297927; 3.893782; 5.231493;, + 1.297927; 3.893782; 9.125275;, + 1.297927; 1.946891; 9.125275;, + 1.297927; 1.946891; 5.231493;, + 1.297927; 3.893782; 5.231493;, + 1.297927; 1.946891; 9.125275;, + -1.297927; 1.946891; 9.125275;, + -1.297927; 1.946891; 5.231493;, + 1.297927; 1.946891; 5.231493;, + -1.297927; 1.946891; 5.231493;, + -1.297927; 3.893782; 5.231493;, + 1.297927; 3.893782; 5.231493;, + 1.297927; 1.946891; 5.231493;, + 1.297927; 1.946891; 9.125275;, + 1.297927; 3.893782; 9.125275;, + -1.297927; 3.893782; 9.125275;, + -1.297927; 1.946891; 9.125275;, + -1.297927; 3.893782; 7.827348;, + -1.297927; 5.191710; 7.827348;, + -1.297927; 5.191710; 6.529420;, + -1.297927; 3.893782; 6.529420;, + -1.297927; 5.191710; 7.827348;, + 1.297927; 5.191710; 7.827348;, + 1.297927; 5.191710; 6.529420;, + -1.297927; 5.191710; 6.529420;, + 1.297927; 5.191710; 7.827348;, + 1.297927; 3.893782; 7.827348;, + 1.297927; 3.893782; 6.529420;, + 1.297927; 5.191710; 6.529420;, + -1.297927; 3.893782; 6.529420;, + -1.297927; 5.191710; 6.529420;, + 1.297927; 5.191710; 6.529420;, + 1.297927; 3.893782; 6.529420;, + 1.297927; 3.893782; 7.827348;, + 1.297927; 5.191710; 7.827348;, + -1.297927; 5.191710; 7.827348;, + -1.297927; 3.893782; 7.827348;, + -0.648964; 3.893782; 6.529420;, + -0.648964; 4.542746; 6.529420;, + -0.648964; 4.542746; 5.231493;, + -0.648964; 3.893782; 5.231493;, + -0.648964; 4.542746; 6.529420;, + 0.648964; 4.542746; 6.529420;, + 0.648964; 4.542746; 5.231493;, + -0.648964; 4.542746; 5.231493;, + 0.648964; 4.542746; 6.529420;, + 0.648964; 3.893782; 6.529420;, + 0.648964; 3.893782; 5.231493;, + 0.648964; 4.542746; 5.231493;, + -0.648964; 3.893782; 5.231493;, + -0.648964; 4.542746; 5.231493;, + 0.648964; 4.542746; 5.231493;, + 0.648964; 3.893782; 5.231493;, + 0.000000;-0.000000; 2.635638;, + 1.946891;-0.000000; 2.635638;, + 1.946891; 0.000000; 0.039783;, + 0.000000; 0.000000; 0.039783;, + 0.000000; 0.000000; 0.039783;, + 1.946891; 0.000000; 0.039783;, + 1.946891; 1.297928; 0.039783;, + 0.000000; 1.297928; 0.039783;, + 0.000000;-0.024173; 2.613479;, + 0.000000;-0.024173; 0.017624;, + 1.946891;-0.024173; 0.017624;, + 1.946891;-0.024173; 2.613479;, + 0.000000;-0.024173; 0.017624;, + 0.000000; 1.273754; 0.017624;, + 1.946891; 1.273754; 0.017624;, + 1.946891;-0.024173; 0.017624;, + -1.946891;-0.000000; 2.635638;, + -0.000000;-0.000000; 2.635638;, + -0.000000; 0.000000; 0.039783;, + -1.946891; 0.000000; 0.039783;, + -1.946891; 0.000000; 0.039783;, + -0.000000; 0.000000; 0.039783;, + -0.000000; 1.297928; 0.039783;, + -1.946891; 1.297928; 0.039783;, + -1.946891;-0.024173; 2.613479;, + -1.946891;-0.024173; 0.017624;, + -0.000000;-0.024173; 0.017624;, + -0.000000;-0.024173; 2.613479;, + -1.946891;-0.024173; 0.017624;, + -1.946891; 1.273754; 0.017624;, + -0.000000; 1.273754; 0.017624;, + -0.000000;-0.024173; 0.017624;; + 40; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;, + 4;147,146,145,144;, + 4;151,150,149,148;, + 4;155,154,153,152;, + 4;159,158,157,156;; + MeshTextureCoords { // Chicken UV coordinates + 160; + 0.281250; 0.468750;, + 0.281250; 0.718750;, + 0.375000; 0.718750;, + 0.375000; 0.468750;, + 0.187500; 0.281250;, + 0.093750; 0.281250;, + 0.093750; 0.468750;, + 0.187500; 0.468750;, + 0.187500; 0.718750;, + 0.187500; 0.468750;, + 0.093750; 0.468750;, + 0.093750; 0.718750;, + 0.187500; 0.468750;, + 0.281250; 0.468750;, + 0.281250; 0.281250;, + 0.187500; 0.281250;, + 0.000000; 0.468750;, + 0.000000; 0.718750;, + 0.093750; 0.718750;, + 0.093750; 0.468750;, + 0.093750; 0.468750;, + 0.093750; 0.718750;, + 0.187500; 0.718750;, + 0.187500; 0.468750;, + 0.500000; 0.718750;, + 0.593750; 0.718750;, + 0.593750; 0.593750;, + 0.500000; 0.593750;, + 0.500000; 0.593750;, + 0.468750; 0.593750;, + 0.468750; 0.718750;, + 0.500000; 0.718750;, + 0.375000; 0.718750;, + 0.468750; 0.718750;, + 0.468750; 0.593750;, + 0.375000; 0.593750;, + 0.375000; 0.593750;, + 0.343750; 0.593750;, + 0.343750; 0.718750;, + 0.375000; 0.718750;, + 0.468750; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.406250;, + 0.468750; 0.406250;, + 0.468750; 0.500000;, + 0.468750; 0.593750;, + 0.500000; 0.593750;, + 0.500000; 0.500000;, + 0.468750; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.593750;, + 0.468750; 0.593750;, + 0.375000; 0.593750;, + 0.375000; 0.718750;, + 0.343750; 0.718750;, + 0.343750; 0.593750;, + 0.375000; 0.718750;, + 0.375000; 0.593750;, + 0.468750; 0.593750;, + 0.468750; 0.718750;, + 0.500000; 0.593750;, + 0.500000; 0.718750;, + 0.468750; 0.718750;, + 0.468750; 0.593750;, + 0.500000; 0.718750;, + 0.500000; 0.593750;, + 0.593750; 0.593750;, + 0.593750; 0.718750;, + 0.164062; 0.093750;, + 0.109375; 0.093750;, + 0.109375; 0.281250;, + 0.164062; 0.281250;, + 0.109375; 0.093750;, + 0.046875; 0.093750;, + 0.046875; 0.281250;, + 0.109375; 0.281250;, + 0.046875; 0.093750;, + 0.000000; 0.093750;, + 0.000000; 0.281250;, + 0.046875; 0.281250;, + 0.218750; 0.093750;, + 0.164062; 0.093750;, + 0.164062; 0.281250;, + 0.218750; 0.281250;, + 0.046875; 0.000000;, + 0.046875; 0.093750;, + 0.109375; 0.093750;, + 0.109375; 0.000000;, + 0.046875; 0.000000;, + 0.046875; 0.093750;, + 0.109375; 0.093750;, + 0.109375; 0.000000;, + 0.343750; 0.062500;, + 0.312500; 0.062500;, + 0.312500; 0.125000;, + 0.343750; 0.125000;, + 0.312500; 0.062500;, + 0.250000; 0.062500;, + 0.250000; 0.125000;, + 0.312500; 0.125000;, + 0.250000; 0.062500;, + 0.218750; 0.062500;, + 0.218750; 0.125000;, + 0.250000; 0.125000;, + 0.343750; 0.062500;, + 0.343750; 0.125000;, + 0.406250; 0.125000;, + 0.406250; 0.062500;, + 0.250000; 0.000000;, + 0.250000; 0.062500;, + 0.312500; 0.062500;, + 0.312500; 0.000000;, + 0.218750; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.187500;, + 0.218750; 0.187500;, + 0.250000; 0.250000;, + 0.312500; 0.250000;, + 0.312500; 0.187500;, + 0.250000; 0.187500;, + 0.312500; 0.250000;, + 0.343750; 0.250000;, + 0.343750; 0.187500;, + 0.312500; 0.187500;, + 0.250000; 0.125000;, + 0.250000; 0.187500;, + 0.312500; 0.187500;, + 0.312500; 0.125000;, + 0.539062; 0.250000;, + 0.601562; 0.250000;, + 0.601562; 0.093750;, + 0.539062; 0.093750;, + 0.500000; 0.093750;, + 0.546875; 0.093750;, + 0.546875; 0.000000;, + 0.500000; 0.000000;, + 0.539062; 0.250000;, + 0.539062; 0.093750;, + 0.601562; 0.093750;, + 0.601562; 0.250000;, + 0.500000; 0.093750;, + 0.500000; 0.000000;, + 0.546875; 0.000000;, + 0.546875; 0.093750;, + 0.539062; 0.250000;, + 0.601562; 0.250000;, + 0.601562; 0.093750;, + 0.539062; 0.093750;, + 0.500000; 0.093750;, + 0.546875; 0.093750;, + 0.546875; 0.000000;, + 0.500000; 0.000000;, + 0.539062; 0.250000;, + 0.539062; 0.093750;, + 0.601562; 0.093750;, + 0.601562; 0.250000;, + 0.500000; 0.093750;, + 0.500000; 0.000000;, + 0.546875; 0.000000;, + 0.546875; 0.093750;; + } // End of Chicken UV coordinates + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Chicken_Rig_Leg_R"; + 16; + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -0.929329, 2.922908,-0.010320, 1.000000;; + } // End of Chicken_Rig_Leg_R skin weights + SkinWeights { + "Chicken_Rig_Body"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 2.530679,-4.589765, 1.000000;; + } // End of Chicken_Rig_Body skin weights + SkinWeights { + "Chicken_Rig_Wing_L"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 2.118756, 6.364124, 0.011232, 1.000000;; + } // End of Chicken_Rig_Wing_L skin weights + SkinWeights { + "Chicken_Rig_Root"; + 0; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } // End of Chicken_Rig_Root skin weights + SkinWeights { + "Chicken_Rig_Wing_R"; + 20; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -2.086739, 6.364124, 0.011231, 1.000000;; + } // End of Chicken_Rig_Wing_R skin weights + SkinWeights { + "Chicken_Rig_Leg_L"; + 16; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 0.961346, 2.922908,-0.010319, 1.000000;; + } // End of Chicken_Rig_Leg_L skin weights + SkinWeights { + "Chicken_Rig_Head"; + 60; + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000,-0.000005, 0.000000, + -0.000000, 0.999933,-0.011550, 0.000000, + 0.000005, 0.011550, 0.999933, 0.000000, + -0.023102,-2.291026,-7.229526, 1.000000;; + } // End of Chicken_Rig_Head skin weights + } // End of Chicken mesh + } // End of Chicken + } // End of Chicken_Rig +} // End of Root +AnimationSet Global { + Animation { + {Chicken} + AnimationKey { // Rotation + 0; + 187; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Chicken_Rig} + AnimationKey { // Rotation + 0; + 187; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Chicken_Rig_Root} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 158;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 159;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 160;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 163;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 164;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 165;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 166;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 167;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Chicken_Rig_Body} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 24;4;-0.707100,-0.707100, 0.000762,-0.000762;;, + 25;4;-0.707081,-0.707081, 0.002981,-0.002981;;, + 26;4;-0.707053,-0.707053, 0.006170,-0.006170;;, + 27;4;-0.707025,-0.707025, 0.009360,-0.009360;;, + 28;4;-0.707006,-0.707006, 0.011578,-0.011578;;, + 29;4;-0.706999,-0.706999, 0.012341,-0.012341;;, + 30;4;-0.707006,-0.707006, 0.011859,-0.011859;;, + 31;4;-0.707025,-0.707025, 0.010366,-0.010366;;, + 32;4;-0.707053,-0.707053, 0.007977,-0.007977;;, + 33;4;-0.707081,-0.707081, 0.005120,-0.005120;;, + 34;4;-0.707100,-0.707100, 0.002338,-0.002338;;, + 35;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 36;4;-0.707100,-0.707100,-0.002338, 0.002338;;, + 37;4;-0.707081,-0.707081,-0.005120, 0.005120;;, + 38;4;-0.707053,-0.707053,-0.007977, 0.007977;;, + 39;4;-0.707025,-0.707025,-0.010366, 0.010366;;, + 40;4;-0.707006,-0.707006,-0.011859, 0.011859;;, + 41;4;-0.706999,-0.706999,-0.012341, 0.012341;;, + 42;4;-0.707003,-0.707003,-0.011912, 0.011912;;, + 43;4;-0.707014,-0.707014,-0.010634, 0.010634;;, + 44;4;-0.707032,-0.707032,-0.008622, 0.008622;;, + 45;4;-0.707053,-0.707053,-0.006170, 0.006170;;, + 46;4;-0.707074,-0.707074,-0.003719, 0.003719;;, + 47;4;-0.707092,-0.707092,-0.001707, 0.001707;;, + 48;4;-0.707103,-0.707103,-0.000428, 0.000428;;, + 49;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 158;4;-0.697709,-0.697709,-0.022721, 0.022721;;, + 159;4;-0.669912,-0.669912,-0.089865, 0.089865;;, + 160;4;-0.627567,-0.627567,-0.192064, 0.192064;;, + 161;4;-0.579540,-0.579540,-0.307936, 0.307936;;, + 162;4;-0.537195,-0.537195,-0.410135, 0.410135;;, + 163;4;-0.509398,-0.509398,-0.477279, 0.477279;;, + 164;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 165;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 166;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 167;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 168;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 169;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 170;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 171;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 172;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 173;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 174;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 175;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 176;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 177;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 178;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 179;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 180;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 181;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 182;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 183;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 184;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 185;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 186;4;-0.707107,-0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 4.589765, 2.530680;;, + 1;3; 0.000000, 4.589765, 2.530680;;, + 2;3; 0.000000, 4.589765, 2.530680;;, + 3;3; 0.000000, 4.589765, 2.530680;;, + 4;3; 0.000000, 4.589765, 2.530680;;, + 5;3; 0.000000, 4.589765, 2.530680;;, + 6;3; 0.000000, 4.589765, 2.530680;;, + 7;3; 0.000000, 4.589765, 2.530680;;, + 8;3; 0.000000, 4.589765, 2.530680;;, + 9;3; 0.000000, 4.589765, 2.530680;;, + 10;3; 0.000000, 4.589765, 2.530680;;, + 11;3; 0.000000, 4.589765, 2.530680;;, + 12;3; 0.000000, 4.589765, 2.530680;;, + 13;3; 0.000000, 4.589765, 2.530680;;, + 14;3; 0.000000, 4.589765, 2.530680;;, + 15;3; 0.000000, 4.589765, 2.530680;;, + 16;3; 0.000000, 4.589765, 2.530680;;, + 17;3; 0.000000, 4.589765, 2.530680;;, + 18;3; 0.000000, 4.589765, 2.530680;;, + 19;3; 0.000000, 4.589765, 2.530680;;, + 20;3; 0.000000, 4.589765, 2.530680;;, + 21;3; 0.000000, 4.589765, 2.530680;;, + 22;3; 0.000000, 4.589765, 2.530680;;, + 23;3; 0.000000, 4.589765, 2.530680;;, + 24;3; 0.000000, 4.589765, 2.530680;;, + 25;3; 0.000000, 4.589765, 2.530680;;, + 26;3; 0.000000, 4.589765, 2.530680;;, + 27;3; 0.000000, 4.589765, 2.530680;;, + 28;3; 0.000000, 4.589765, 2.530680;;, + 29;3; 0.000000, 4.589765, 2.530680;;, + 30;3; 0.000000, 4.589765, 2.530680;;, + 31;3; 0.000000, 4.589765, 2.530680;;, + 32;3; 0.000000, 4.589765, 2.530680;;, + 33;3; 0.000000, 4.589765, 2.530680;;, + 34;3; 0.000000, 4.589765, 2.530680;;, + 35;3; 0.000000, 4.589765, 2.530680;;, + 36;3; 0.000000, 4.589765, 2.530680;;, + 37;3; 0.000000, 4.589765, 2.530680;;, + 38;3; 0.000000, 4.589765, 2.530680;;, + 39;3; 0.000000, 4.589765, 2.530680;;, + 40;3; 0.000000, 4.589765, 2.530680;;, + 41;3; 0.000000, 4.589765, 2.530680;;, + 42;3; 0.000000, 4.589765, 2.530680;;, + 43;3; 0.000000, 4.589765, 2.530680;;, + 44;3; 0.000000, 4.589765, 2.530680;;, + 45;3; 0.000000, 4.589765, 2.530680;;, + 46;3; 0.000000, 4.589765, 2.530680;;, + 47;3; 0.000000, 4.589765, 2.530680;;, + 48;3; 0.000000, 4.589765, 2.530680;;, + 49;3; 0.000000, 4.589765, 2.530680;;, + 50;3; 0.000000, 4.589765, 2.530680;;, + 51;3; 0.000000, 4.589765, 2.530680;;, + 52;3; 0.000000, 4.589765, 2.530680;;, + 53;3; 0.000000, 4.589765, 2.530680;;, + 54;3; 0.000000, 4.589765, 2.530680;;, + 55;3; 0.000000, 4.589765, 2.530680;;, + 56;3; 0.000000, 4.589765, 2.530680;;, + 57;3; 0.000000, 4.589765, 2.530680;;, + 58;3; 0.000000, 4.589765, 2.530680;;, + 59;3; 0.000000, 4.589765, 2.530680;;, + 60;3; 0.000000, 4.589765, 2.530680;;, + 61;3; 0.000000, 4.589765, 2.530680;;, + 62;3; 0.000000, 4.589765, 2.530680;;, + 63;3; 0.000000, 4.589765, 2.530680;;, + 64;3; 0.000000, 4.589765, 2.530680;;, + 65;3; 0.000000, 4.589765, 2.530680;;, + 66;3; 0.000000, 4.589765, 2.530680;;, + 67;3; 0.000000, 4.589765, 2.530680;;, + 68;3; 0.000000, 4.589765, 2.530680;;, + 69;3; 0.000000, 4.589765, 2.530680;;, + 70;3; 0.000000, 4.589765, 2.530680;;, + 71;3; 0.000000, 4.589765, 2.530680;;, + 72;3; 0.000000, 4.589765, 2.530680;;, + 73;3; 0.000000, 4.589765, 2.530680;;, + 74;3; 0.000000, 4.589765, 2.530680;;, + 75;3; 0.000000, 4.589765, 2.530680;;, + 76;3; 0.000000, 4.589765, 2.530680;;, + 77;3; 0.000000, 4.589765, 2.530680;;, + 78;3; 0.000000, 4.589765, 2.530680;;, + 79;3; 0.000000, 4.589765, 2.530680;;, + 80;3; 0.000000, 4.589765, 2.530680;;, + 81;3; 0.000000, 4.589765, 2.530680;;, + 82;3; 0.000000, 4.589765, 2.530680;;, + 83;3; 0.000000, 4.589765, 2.530680;;, + 84;3; 0.000000, 4.589765, 2.530680;;, + 85;3; 0.000000, 4.589765, 2.530680;;, + 86;3; 0.000000, 4.589765, 2.530680;;, + 87;3; 0.000000, 4.589765, 2.530680;;, + 88;3; 0.000000, 4.589765, 2.530680;;, + 89;3; 0.000000, 4.589765, 2.530680;;, + 90;3; 0.000000, 4.589765, 2.530680;;, + 91;3; 0.000000, 4.589765, 2.530680;;, + 92;3; 0.000000, 4.589765, 2.530680;;, + 93;3; 0.000000, 4.589765, 2.530680;;, + 94;3; 0.000000, 4.589765, 2.530680;;, + 95;3; 0.000000, 4.589765, 2.530680;;, + 96;3; 0.000000, 4.589765, 2.530680;;, + 97;3; 0.000000, 4.589765, 2.530680;;, + 98;3; 0.000000, 4.589765, 2.530680;;, + 99;3; 0.000000, 4.589765, 2.530680;;, + 100;3; 0.000000, 4.589765, 2.530680;;, + 101;3; 0.000000, 4.589765, 2.530680;;, + 102;3; 0.000000, 4.589765, 2.530680;;, + 103;3; 0.000000, 4.589765, 2.530680;;, + 104;3; 0.000000, 4.589765, 2.530680;;, + 105;3; 0.000000, 4.589765, 2.530680;;, + 106;3; 0.000000, 4.589765, 2.530680;;, + 107;3; 0.000000, 4.589765, 2.530680;;, + 108;3; 0.000000, 4.589765, 2.530680;;, + 109;3; 0.000000, 4.589765, 2.530680;;, + 110;3; 0.000000, 4.589765, 2.530680;;, + 111;3; 0.000000, 4.589765, 2.530680;;, + 112;3; 0.000000, 4.589765, 2.530680;;, + 113;3; 0.000000, 4.589765, 2.530680;;, + 114;3; 0.000000, 4.589765, 2.530680;;, + 115;3; 0.000000, 4.589765, 2.530680;;, + 116;3; 0.000000, 4.589765, 2.530680;;, + 117;3; 0.000000, 4.589765, 2.530680;;, + 118;3; 0.000000, 4.589765, 2.530680;;, + 119;3; 0.000000, 5.109843, 2.530680;;, + 120;3; 0.000000, 5.652986, 2.530680;;, + 121;3; 0.000000, 6.140355, 2.530680;;, + 122;3; 0.000000, 6.532629, 2.530680;;, + 123;3; 0.000000, 6.796481, 2.530680;;, + 124;3; 0.000000, 6.894445, 2.530680;;, + 125;3; 0.000000, 6.814487, 2.530680;;, + 126;3; 0.000000, 6.576533, 2.530680;;, + 127;3; 0.000000, 6.202688, 2.530680;;, + 128;3; 0.000000, 5.747106, 2.530680;;, + 129;3; 0.000000, 5.289946, 2.530680;;, + 130;3; 0.000000, 4.912464, 2.530680;;, + 131;3; 0.000000, 4.671092, 2.530680;;, + 132;3; 0.000000, 4.589765, 2.530680;;, + 133;3; 0.000000, 4.589695, 2.530680;;, + 134;3; 0.000000, 4.589505, 2.530680;;, + 135;3; 0.000000, 4.589216, 2.530680;;, + 136;3; 0.000000, 4.588846, 2.530680;;, + 137;3; 0.000000, 4.588412, 2.530680;;, + 138;3; 0.000000, 4.587926, 2.530680;;, + 139;3; 0.000000, 4.587400, 2.530680;;, + 140;3; 0.000000, 4.586846, 2.530680;;, + 141;3; 0.000000, 4.586274, 2.530680;;, + 142;3; 0.000000, 4.585695, 2.530680;;, + 143;3; 0.000000, 4.585120, 2.530680;;, + 144;3; 0.000000, 4.584562, 2.530680;;, + 145;3; 0.000000, 4.584034, 2.530680;;, + 146;3; 0.000000, 4.583553, 2.530680;;, + 147;3; 0.000000, 4.583138, 2.530680;;, + 148;3; 0.000000, 4.582817, 2.530680;;, + 149;3; 0.000000, 4.582625, 2.530680;;, + 150;3; 0.000000, 4.582618, 2.530680;;, + 151;3; 0.000000, 4.582884, 2.530680;;, + 152;3; 0.000000, 4.583592, 2.530680;;, + 153;3; 0.000000, 4.585151, 2.530680;;, + 154;3; 0.000000, 4.589765, 2.530680;;, + 155;3; 0.000000, 5.211860, 2.530680;;, + 156;3; 0.000000, 6.172811, 2.530680;;, + 157;3; 0.000000, 6.589765, 2.530680;;, + 158;3;-0.011618, 6.432237, 2.530680;;, + 159;3;-0.045986, 6.043316, 2.530680;;, + 160;3;-0.098343, 5.494419, 2.530680;;, + 161;3;-0.157725, 4.820900, 2.530680;;, + 162;3;-0.210081, 4.039096, 2.530680;;, + 163;3;-0.244449, 3.146622, 2.530680;;, + 164;3;-0.256067, 1.997082, 2.530680;;, + 165;3;-0.256067, 1.997082, 2.530680;;, + 166;3;-0.256067, 1.997082, 2.530680;;, + 167;3;-0.256067, 1.997082, 2.530680;;, + 168;3;-0.256067, 1.997082, 2.530680;;, + 169;3;-0.256067, 1.997082, 2.530680;;, + 170;3;-0.256067, 1.997082, 2.530680;;, + 171;3;-0.256067, 1.997082, 2.530680;;, + 172;3;-0.256067, 1.997082, 2.530680;;, + 173;3;-0.256067, 1.997082, 2.530680;;, + 174;3;-0.256067, 1.997082, 2.530680;;, + 175;3;-0.256067, 1.997082, 2.530680;;, + 176;3;-0.256067, 1.997082, 2.530680;;, + 177;3;-0.256067, 1.997082, 2.530680;;, + 178;3;-0.256067, 1.997082, 2.530680;;, + 179;3;-0.256067, 1.997082, 2.530680;;, + 180;3; 0.000000, 4.589765, 2.530680;;, + 181;3; 0.000000, 4.589765, 2.530680;;, + 182;3; 0.000000, 4.589765, 2.530680;;, + 183;3; 0.000000, 4.589765, 2.530680;;, + 184;3; 0.000000, 4.589765, 2.530680;;, + 185;3; 0.000000, 4.589765, 2.530680;;, + 186;3; 0.000000, 4.589765, 2.530680;;; + } + } + Animation { + {Chicken_Rig_Wing_L} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 25;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 26;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 27;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 28;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 29;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 30;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 31;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 32;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 33;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 34;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 37;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 38;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 39;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 40;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 41;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 42;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 43;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 44;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 45;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 46;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 47;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 48;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.705621,-0.705621, 0.016985, 0.016985;;, + 120;4;-0.701736,-0.701735, 0.061401, 0.061401;;, + 121;4;-0.697850,-0.697850, 0.105810, 0.105810;;, + 122;4;-0.696364,-0.696364, 0.122788, 0.122788;;, + 123;4;-0.697850,-0.697850, 0.105808, 0.105808;;, + 124;4;-0.701736,-0.701735, 0.061395, 0.061395;;, + 125;4;-0.705621,-0.705621, 0.016980, 0.016980;;, + 126;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 127;4;-0.704512,-0.704512, 0.029661, 0.029660;;, + 128;4;-0.698959,-0.698959, 0.093128, 0.093128;;, + 129;4;-0.696364,-0.696364, 0.122788, 0.122788;;, + 130;4;-0.698959,-0.698959, 0.093134, 0.093134;;, + 131;4;-0.704512,-0.704512, 0.029672, 0.029672;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.704512,-0.704512, 0.029672, 0.029672;;, + 156;4;-0.698959,-0.698959, 0.093134, 0.093134;;, + 157;4;-0.696364,-0.696364, 0.122788, 0.122788;;, + 158;4;-0.698959,-0.698959, 0.093134, 0.093134;;, + 159;4;-0.704512,-0.704512, 0.029672, 0.029672;;, + 160;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 161;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 162;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 163;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 164;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 165;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 166;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 167;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 168;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 169;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 170;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 171;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 172;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 173;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 174;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 175;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 176;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 177;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 178;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 179;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.645022,-0.642479, 0.131930, 0.135562;;, + 182;4;-0.512487,-0.504502, 0.411339, 0.422743;;, + 183;4;-0.450577,-0.440049, 0.541674, 0.556711;;, + 184;4;-0.512322,-0.504337, 0.412768, 0.424173;;, + 185;4;-0.644670,-0.642127, 0.135056, 0.138688;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3;-2.118756, 2.519446, 1.774359;;, + 1;3;-2.118756, 2.519446, 1.774359;;, + 2;3;-2.118756, 2.519446, 1.774359;;, + 3;3;-2.118756, 2.519446, 1.774359;;, + 4;3;-2.118756, 2.519446, 1.774359;;, + 5;3;-2.118756, 2.519446, 1.774359;;, + 6;3;-2.118756, 2.519446, 1.774359;;, + 7;3;-2.118756, 2.519446, 1.774359;;, + 8;3;-2.118756, 2.519446, 1.774359;;, + 9;3;-2.118756, 2.519446, 1.774359;;, + 10;3;-2.118756, 2.519446, 1.774359;;, + 11;3;-2.118756, 2.519446, 1.774359;;, + 12;3;-2.118756, 2.519446, 1.774359;;, + 13;3;-2.118756, 2.519446, 1.774359;;, + 14;3;-2.118756, 2.519446, 1.774359;;, + 15;3;-2.118756, 2.519446, 1.774359;;, + 16;3;-2.118756, 2.519446, 1.774359;;, + 17;3;-2.118756, 2.519446, 1.774359;;, + 18;3;-2.118756, 2.519446, 1.774359;;, + 19;3;-2.118756, 2.519446, 1.774359;;, + 20;3;-2.118756, 2.519446, 1.774359;;, + 21;3;-2.118756, 2.519446, 1.774359;;, + 22;3;-2.118756, 2.519446, 1.774359;;, + 23;3;-2.118756, 2.519446, 1.774359;;, + 24;3;-2.118756, 2.519446, 1.774359;;, + 25;3;-2.118756, 2.519447, 1.774359;;, + 26;3;-2.118756, 2.519447, 1.774360;;, + 27;3;-2.118756, 2.519447, 1.774359;;, + 28;3;-2.118756, 2.519446, 1.774360;;, + 29;3;-2.118756, 2.519446, 1.774359;;, + 30;3;-2.118756, 2.519447, 1.774359;;, + 31;3;-2.118756, 2.519446, 1.774359;;, + 32;3;-2.118756, 2.519447, 1.774359;;, + 33;3;-2.118756, 2.519446, 1.774359;;, + 34;3;-2.118756, 2.519447, 1.774359;;, + 35;3;-2.118756, 2.519446, 1.774359;;, + 36;3;-2.118756, 2.519447, 1.774359;;, + 37;3;-2.118756, 2.519446, 1.774359;;, + 38;3;-2.118756, 2.519447, 1.774359;;, + 39;3;-2.118756, 2.519446, 1.774359;;, + 40;3;-2.118756, 2.519447, 1.774360;;, + 41;3;-2.118756, 2.519446, 1.774359;;, + 42;3;-2.118756, 2.519447, 1.774359;;, + 43;3;-2.118756, 2.519447, 1.774359;;, + 44;3;-2.118756, 2.519447, 1.774359;;, + 45;3;-2.118756, 2.519447, 1.774359;;, + 46;3;-2.118756, 2.519446, 1.774359;;, + 47;3;-2.118756, 2.519447, 1.774359;;, + 48;3;-2.118756, 2.519446, 1.774359;;, + 49;3;-2.118756, 2.519446, 1.774359;;, + 50;3;-2.118756, 2.519446, 1.774359;;, + 51;3;-2.118756, 2.519446, 1.774359;;, + 52;3;-2.118756, 2.519446, 1.774359;;, + 53;3;-2.118756, 2.519446, 1.774359;;, + 54;3;-2.118756, 2.519446, 1.774359;;, + 55;3;-2.118756, 2.519446, 1.774359;;, + 56;3;-2.118756, 2.519446, 1.774359;;, + 57;3;-2.118756, 2.519446, 1.774359;;, + 58;3;-2.118756, 2.519446, 1.774359;;, + 59;3;-2.118756, 2.519446, 1.774359;;, + 60;3;-2.118756, 2.519446, 1.774359;;, + 61;3;-2.118756, 2.519446, 1.774359;;, + 62;3;-2.118756, 2.519446, 1.774359;;, + 63;3;-2.118756, 2.519446, 1.774359;;, + 64;3;-2.118756, 2.519446, 1.774359;;, + 65;3;-2.118756, 2.519446, 1.774359;;, + 66;3;-2.118756, 2.519446, 1.774359;;, + 67;3;-2.118756, 2.519446, 1.774359;;, + 68;3;-2.118756, 2.519446, 1.774359;;, + 69;3;-2.118756, 2.519446, 1.774359;;, + 70;3;-2.118756, 2.519446, 1.774359;;, + 71;3;-2.118756, 2.519446, 1.774359;;, + 72;3;-2.118756, 2.519446, 1.774359;;, + 73;3;-2.118756, 2.519446, 1.774359;;, + 74;3;-2.118756, 2.519446, 1.774359;;, + 75;3;-2.118756, 2.519446, 1.774359;;, + 76;3;-2.118756, 2.519446, 1.774359;;, + 77;3;-2.118756, 2.519446, 1.774359;;, + 78;3;-2.118756, 2.519446, 1.774359;;, + 79;3;-2.118756, 2.519446, 1.774359;;, + 80;3;-2.118756, 2.519446, 1.774359;;, + 81;3;-2.118756, 2.519446, 1.774359;;, + 82;3;-2.118756, 2.519446, 1.774359;;, + 83;3;-2.118756, 2.519446, 1.774359;;, + 84;3;-2.118756, 2.519446, 1.774359;;, + 85;3;-2.118756, 2.519446, 1.774359;;, + 86;3;-2.118756, 2.519446, 1.774359;;, + 87;3;-2.118756, 2.519446, 1.774359;;, + 88;3;-2.118756, 2.519446, 1.774359;;, + 89;3;-2.118756, 2.519446, 1.774359;;, + 90;3;-2.118756, 2.519446, 1.774359;;, + 91;3;-2.118756, 2.519446, 1.774359;;, + 92;3;-2.118756, 2.519446, 1.774359;;, + 93;3;-2.118756, 2.519446, 1.774359;;, + 94;3;-2.118756, 2.519446, 1.774359;;, + 95;3;-2.118756, 2.519446, 1.774359;;, + 96;3;-2.118756, 2.519446, 1.774359;;, + 97;3;-2.118756, 2.519446, 1.774359;;, + 98;3;-2.118756, 2.519446, 1.774359;;, + 99;3;-2.118756, 2.519446, 1.774359;;, + 100;3;-2.118756, 2.519446, 1.774359;;, + 101;3;-2.118756, 2.519446, 1.774359;;, + 102;3;-2.118756, 2.519446, 1.774359;;, + 103;3;-2.118756, 2.519446, 1.774359;;, + 104;3;-2.118756, 2.519446, 1.774359;;, + 105;3;-2.118756, 2.519446, 1.774359;;, + 106;3;-2.118756, 2.519446, 1.774359;;, + 107;3;-2.118756, 2.519446, 1.774359;;, + 108;3;-2.118756, 2.519446, 1.774359;;, + 109;3;-2.118756, 2.519446, 1.774359;;, + 110;3;-2.118756, 2.519446, 1.774359;;, + 111;3;-2.118756, 2.519446, 1.774359;;, + 112;3;-2.118756, 2.519446, 1.774359;;, + 113;3;-2.118756, 2.519446, 1.774359;;, + 114;3;-2.118756, 2.519446, 1.774359;;, + 115;3;-2.118756, 2.519446, 1.774359;;, + 116;3;-2.118756, 2.519446, 1.774359;;, + 117;3;-2.118756, 2.519446, 1.774359;;, + 118;3;-2.118756, 2.519446, 1.774359;;, + 119;3;-2.118756, 2.519446, 1.774359;;, + 120;3;-2.118756, 2.519446, 1.774359;;, + 121;3;-2.118756, 2.519446, 1.774359;;, + 122;3;-2.118756, 2.519446, 1.774359;;, + 123;3;-2.118756, 2.519446, 1.774360;;, + 124;3;-2.118756, 2.519446, 1.774359;;, + 125;3;-2.118756, 2.519446, 1.774360;;, + 126;3;-2.118756, 2.519446, 1.774360;;, + 127;3;-2.118756, 2.519446, 1.774359;;, + 128;3;-2.118756, 2.519446, 1.774359;;, + 129;3;-2.118756, 2.519446, 1.774359;;, + 130;3;-2.118756, 2.519446, 1.774359;;, + 131;3;-2.118756, 2.519446, 1.774359;;, + 132;3;-2.118756, 2.519446, 1.774359;;, + 133;3;-2.118756, 2.519446, 1.774359;;, + 134;3;-2.118756, 2.519446, 1.774359;;, + 135;3;-2.118756, 2.519446, 1.774359;;, + 136;3;-2.118756, 2.519446, 1.774359;;, + 137;3;-2.118756, 2.519446, 1.774359;;, + 138;3;-2.118756, 2.519446, 1.774359;;, + 139;3;-2.118756, 2.519446, 1.774359;;, + 140;3;-2.118756, 2.519446, 1.774359;;, + 141;3;-2.118756, 2.519446, 1.774359;;, + 142;3;-2.118756, 2.519446, 1.774359;;, + 143;3;-2.118756, 2.519446, 1.774359;;, + 144;3;-2.118756, 2.519446, 1.774359;;, + 145;3;-2.118756, 2.519446, 1.774359;;, + 146;3;-2.118756, 2.519446, 1.774359;;, + 147;3;-2.118756, 2.519446, 1.774359;;, + 148;3;-2.118756, 2.519446, 1.774359;;, + 149;3;-2.118756, 2.519446, 1.774359;;, + 150;3;-2.118756, 2.519446, 1.774359;;, + 151;3;-2.118756, 2.519446, 1.774359;;, + 152;3;-2.118756, 2.519446, 1.774359;;, + 153;3;-2.118756, 2.519446, 1.774359;;, + 154;3;-2.118756, 2.519446, 1.774359;;, + 155;3;-2.118756, 2.519446, 1.774359;;, + 156;3;-2.118756, 2.519446, 1.774359;;, + 157;3;-2.118756, 2.519446, 1.774360;;, + 158;3;-2.118756, 2.519446, 1.774360;;, + 159;3;-2.118756, 2.519446, 1.774359;;, + 160;3;-2.118756, 2.519447, 1.774359;;, + 161;3;-2.118756, 2.519446, 1.774359;;, + 162;3;-2.118756, 2.519446, 1.774359;;, + 163;3;-2.118756, 2.519446, 1.774359;;, + 164;3;-2.118756, 2.519446, 1.774359;;, + 165;3;-2.118756, 2.519446, 1.774359;;, + 166;3;-2.118756, 2.519446, 1.774359;;, + 167;3;-2.118756, 2.519446, 1.774359;;, + 168;3;-2.118756, 2.519446, 1.774359;;, + 169;3;-2.118756, 2.519446, 1.774359;;, + 170;3;-2.118756, 2.519446, 1.774359;;, + 171;3;-2.118756, 2.519446, 1.774359;;, + 172;3;-2.118756, 2.519446, 1.774359;;, + 173;3;-2.118756, 2.519446, 1.774359;;, + 174;3;-2.118756, 2.519446, 1.774359;;, + 175;3;-2.118756, 2.519446, 1.774359;;, + 176;3;-2.118756, 2.519446, 1.774359;;, + 177;3;-2.118756, 2.519446, 1.774359;;, + 178;3;-2.118756, 2.519446, 1.774359;;, + 179;3;-2.118756, 2.519446, 1.774359;;, + 180;3;-2.118756, 2.519446, 1.774359;;, + 181;3;-2.118756, 2.519446, 1.774359;;, + 182;3;-2.118756, 2.519446, 1.774359;;, + 183;3;-2.118756, 2.519446, 1.774359;;, + 184;3;-2.118756, 2.519446, 1.774359;;, + 185;3;-2.118756, 2.519446, 1.774359;;, + 186;3;-2.118756, 2.519446, 1.774359;;; + } + } + Animation { + {Chicken_Rig_Leg_L} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.673113,-0.736384, 0.001105,-0.001104;;, + 156;4;-0.605738,-0.793670, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.584339,-0.805459, 0.004091,-0.004091;;, + 159;4;-0.619108,-0.768325, 0.003516,-0.003516;;, + 160;4;-0.673035,-0.712704, 0.002640,-0.002640;;, + 161;4;-0.734659,-0.650059, 0.001646,-0.001646;;, + 162;4;-0.789210,-0.595028, 0.000770,-0.000770;;, + 163;4;-0.825105,-0.558981, 0.000195,-0.000194;;, + 164;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 165;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 166;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 167;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 168;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 169;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 170;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 171;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 172;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 173;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 174;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 175;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 176;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 177;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 178;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 179;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 182;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 183;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 184;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 185;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3;-0.961346, 2.540998,-1.666857;;, + 1;3;-0.961346, 2.540998,-1.666857;;, + 2;3;-0.961346, 2.540998,-1.666857;;, + 3;3;-0.961346, 2.540998,-1.666857;;, + 4;3;-0.961346, 2.540998,-1.666857;;, + 5;3;-0.961346, 2.540998,-1.666857;;, + 6;3;-0.961346, 2.540998,-1.666857;;, + 7;3;-0.961346, 2.540998,-1.666857;;, + 8;3;-0.961346, 2.540998,-1.666857;;, + 9;3;-0.961346, 2.540998,-1.666857;;, + 10;3;-0.961346, 2.540998,-1.666857;;, + 11;3;-0.961346, 2.540998,-1.666857;;, + 12;3;-0.961346, 2.540998,-1.666857;;, + 13;3;-0.961346, 2.540998,-1.666857;;, + 14;3;-0.961346, 2.540998,-1.666857;;, + 15;3;-0.961346, 2.540998,-1.666857;;, + 16;3;-0.961346, 2.540998,-1.666857;;, + 17;3;-0.961346, 2.540998,-1.666857;;, + 18;3;-0.961346, 2.540998,-1.666857;;, + 19;3;-0.961346, 2.540998,-1.666857;;, + 20;3;-0.961346, 2.540998,-1.666857;;, + 21;3;-0.961346, 2.540998,-1.666857;;, + 22;3;-0.961346, 2.540998,-1.666857;;, + 23;3;-0.961346, 2.540998,-1.666857;;, + 24;3;-0.961347, 2.540998,-1.666857;;, + 25;3;-0.961347, 2.540998,-1.666857;;, + 26;3;-0.961347, 2.540998,-1.666857;;, + 27;3;-0.961346, 2.540998,-1.666857;;, + 28;3;-0.961346, 2.540998,-1.666857;;, + 29;3;-0.961346, 2.540998,-1.666857;;, + 30;3;-0.961346, 2.540998,-1.666857;;, + 31;3;-0.961346, 2.540998,-1.666857;;, + 32;3;-0.961346, 2.540998,-1.666857;;, + 33;3;-0.961346, 2.540998,-1.666857;;, + 34;3;-0.961347, 2.540998,-1.666857;;, + 35;3;-0.961346, 2.540998,-1.666857;;, + 36;3;-0.961346, 2.540998,-1.666857;;, + 37;3;-0.961347, 2.540998,-1.666857;;, + 38;3;-0.961347, 2.540998,-1.666857;;, + 39;3;-0.961346, 2.540998,-1.666857;;, + 40;3;-0.961347, 2.540998,-1.666857;;, + 41;3;-0.961347, 2.540998,-1.666857;;, + 42;3;-0.961346, 2.540998,-1.666857;;, + 43;3;-0.961347, 2.540998,-1.666857;;, + 44;3;-0.961347, 2.540999,-1.666857;;, + 45;3;-0.961346, 2.540998,-1.666857;;, + 46;3;-0.961347, 2.540998,-1.666857;;, + 47;3;-0.961347, 2.540998,-1.666857;;, + 48;3;-0.961346, 2.540998,-1.666857;;, + 49;3;-0.961346, 2.540998,-1.666857;;, + 50;3;-0.961346, 2.540998,-1.666857;;, + 51;3;-0.961346, 2.540998,-1.666857;;, + 52;3;-0.961346, 2.540998,-1.666857;;, + 53;3;-0.961346, 2.540998,-1.666857;;, + 54;3;-0.961346, 2.540998,-1.666857;;, + 55;3;-0.961346, 2.540998,-1.666857;;, + 56;3;-0.961346, 2.540998,-1.666857;;, + 57;3;-0.961346, 2.540998,-1.666857;;, + 58;3;-0.961346, 2.540998,-1.666857;;, + 59;3;-0.961346, 2.540998,-1.666857;;, + 60;3;-0.961346, 2.540998,-1.666857;;, + 61;3;-0.961346, 2.540998,-1.666857;;, + 62;3;-0.961346, 2.540998,-1.666857;;, + 63;3;-0.961346, 2.540998,-1.666857;;, + 64;3;-0.961346, 2.540998,-1.666857;;, + 65;3;-0.961346, 2.540998,-1.666857;;, + 66;3;-0.961346, 2.540998,-1.666857;;, + 67;3;-0.961346, 2.540998,-1.666857;;, + 68;3;-0.961346, 2.540998,-1.666857;;, + 69;3;-0.961346, 2.540998,-1.666857;;, + 70;3;-0.961346, 2.540998,-1.666857;;, + 71;3;-0.961346, 2.540998,-1.666857;;, + 72;3;-0.961346, 2.540998,-1.666857;;, + 73;3;-0.961346, 2.540998,-1.666857;;, + 74;3;-0.961346, 2.540998,-1.666857;;, + 75;3;-0.961346, 2.540998,-1.666857;;, + 76;3;-0.961346, 2.540998,-1.666857;;, + 77;3;-0.961346, 2.540998,-1.666857;;, + 78;3;-0.961346, 2.540998,-1.666857;;, + 79;3;-0.961346, 2.540998,-1.666857;;, + 80;3;-0.961346, 2.540998,-1.666857;;, + 81;3;-0.961346, 2.540998,-1.666857;;, + 82;3;-0.961346, 2.540998,-1.666857;;, + 83;3;-0.961346, 2.540998,-1.666857;;, + 84;3;-0.961346, 2.540998,-1.666857;;, + 85;3;-0.961346, 2.540998,-1.666857;;, + 86;3;-0.961346, 2.540998,-1.666857;;, + 87;3;-0.961346, 2.540998,-1.666857;;, + 88;3;-0.961346, 2.540998,-1.666857;;, + 89;3;-0.961346, 2.540998,-1.666857;;, + 90;3;-0.961346, 2.540998,-1.666857;;, + 91;3;-0.961346, 2.540998,-1.666857;;, + 92;3;-0.961346, 2.540998,-1.666857;;, + 93;3;-0.961346, 2.540998,-1.666857;;, + 94;3;-0.961346, 2.540998,-1.666857;;, + 95;3;-0.961346, 2.540998,-1.666857;;, + 96;3;-0.961346, 2.540998,-1.666857;;, + 97;3;-0.961346, 2.540998,-1.666857;;, + 98;3;-0.961346, 2.540998,-1.666857;;, + 99;3;-0.961346, 2.540998,-1.666857;;, + 100;3;-0.961346, 2.540998,-1.666857;;, + 101;3;-0.961346, 2.540998,-1.666857;;, + 102;3;-0.961346, 2.540998,-1.666857;;, + 103;3;-0.961346, 2.540998,-1.666857;;, + 104;3;-0.961346, 2.540998,-1.666857;;, + 105;3;-0.961346, 2.540998,-1.666857;;, + 106;3;-0.961346, 2.540998,-1.666857;;, + 107;3;-0.961346, 2.540998,-1.666857;;, + 108;3;-0.961346, 2.540998,-1.666857;;, + 109;3;-0.961346, 2.540998,-1.666857;;, + 110;3;-0.961346, 2.540998,-1.666857;;, + 111;3;-0.961346, 2.540998,-1.666857;;, + 112;3;-0.961346, 2.540998,-1.666857;;, + 113;3;-0.961346, 2.540998,-1.666857;;, + 114;3;-0.961346, 2.540998,-1.666857;;, + 115;3;-0.961346, 2.540998,-1.666857;;, + 116;3;-0.961346, 2.540998,-1.666857;;, + 117;3;-0.961346, 2.540998,-1.666857;;, + 118;3;-0.961346, 2.540998,-1.666857;;, + 119;3;-0.961346, 2.540998,-1.666857;;, + 120;3;-0.961346, 2.540998,-1.666857;;, + 121;3;-0.961346, 2.540998,-1.666857;;, + 122;3;-0.961346, 2.540998,-1.666857;;, + 123;3;-0.961346, 2.540998,-1.666857;;, + 124;3;-0.961346, 2.540998,-1.666857;;, + 125;3;-0.961346, 2.540998,-1.666857;;, + 126;3;-0.961346, 2.540998,-1.666857;;, + 127;3;-0.961346, 2.540998,-1.666857;;, + 128;3;-0.961346, 2.540998,-1.666857;;, + 129;3;-0.961346, 2.540998,-1.666857;;, + 130;3;-0.961346, 2.540998,-1.666857;;, + 131;3;-0.961346, 2.540998,-1.666857;;, + 132;3;-0.961346, 2.540998,-1.666857;;, + 133;3;-0.961346, 2.540998,-1.666857;;, + 134;3;-0.961346, 2.540998,-1.666857;;, + 135;3;-0.961346, 2.540998,-1.666857;;, + 136;3;-0.961346, 2.540998,-1.666857;;, + 137;3;-0.961346, 2.540998,-1.666857;;, + 138;3;-0.961346, 2.540998,-1.666857;;, + 139;3;-0.961346, 2.540998,-1.666857;;, + 140;3;-0.961346, 2.540998,-1.666857;;, + 141;3;-0.961346, 2.540998,-1.666857;;, + 142;3;-0.961346, 2.540998,-1.666857;;, + 143;3;-0.961346, 2.540998,-1.666857;;, + 144;3;-0.961346, 2.540998,-1.666857;;, + 145;3;-0.961346, 2.540998,-1.666857;;, + 146;3;-0.961346, 2.540998,-1.666857;;, + 147;3;-0.961346, 2.540998,-1.666857;;, + 148;3;-0.961346, 2.540998,-1.666857;;, + 149;3;-0.961346, 2.540998,-1.666857;;, + 150;3;-0.961346, 2.540998,-1.666857;;, + 151;3;-0.961346, 2.540998,-1.666857;;, + 152;3;-0.961346, 2.540998,-1.666857;;, + 153;3;-0.961346, 2.540998,-1.666857;;, + 154;3;-0.961346, 2.540998,-1.666857;;, + 155;3;-0.961346, 2.540998,-1.666857;;, + 156;3;-0.961346, 2.540998,-1.666857;;, + 157;3;-0.961346, 2.540998,-1.666857;;, + 158;3;-0.961347, 2.540998,-1.666857;;, + 159;3;-0.961347, 2.540998,-1.666856;;, + 160;3;-0.961347, 2.540998,-1.666857;;, + 161;3;-0.961347, 2.540998,-1.666857;;, + 162;3;-0.961346, 2.540998,-1.666857;;, + 163;3;-0.961347, 2.540998,-1.666857;;, + 164;3;-0.961346, 2.540998,-1.666857;;, + 165;3;-0.961346, 2.540998,-1.666857;;, + 166;3;-0.961346, 2.540998,-1.666857;;, + 167;3;-0.961346, 2.540998,-1.666857;;, + 168;3;-0.961346, 2.540998,-1.666857;;, + 169;3;-0.961346, 2.540998,-1.666857;;, + 170;3;-0.961346, 2.540998,-1.666857;;, + 171;3;-0.961346, 2.540998,-1.666857;;, + 172;3;-0.961346, 2.540998,-1.666857;;, + 173;3;-0.961346, 2.540998,-1.666857;;, + 174;3;-0.961346, 2.540998,-1.666857;;, + 175;3;-0.961346, 2.540998,-1.666857;;, + 176;3;-0.961346, 2.540998,-1.666857;;, + 177;3;-0.961346, 2.540998,-1.666857;;, + 178;3;-0.961346, 2.540998,-1.666857;;, + 179;3;-0.961346, 2.540998,-1.666857;;, + 180;3;-0.961346, 2.540998,-1.666857;;, + 181;3;-0.961346, 2.540998,-1.666857;;, + 182;3;-0.961346, 2.540998,-1.666857;;, + 183;3;-0.961346, 2.540998,-1.666857;;, + 184;3;-0.961346, 2.540998,-1.666857;;, + 185;3;-0.961346, 2.540998,-1.666857;;, + 186;3;-0.961346, 2.540998,-1.666857;;; + } + } + Animation { + {Chicken_Rig_Wing_R} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 25;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 26;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 27;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 28;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 29;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 30;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 31;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 32;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 33;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 34;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 37;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 38;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 39;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 40;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 41;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 42;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 43;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 44;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 45;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 46;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 47;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 48;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.705621,-0.705621,-0.016985,-0.016985;;, + 120;4;-0.701736,-0.701735,-0.061401,-0.061401;;, + 121;4;-0.697850,-0.697850,-0.105810,-0.105810;;, + 122;4;-0.696364,-0.696364,-0.122788,-0.122788;;, + 123;4;-0.697850,-0.697850,-0.105808,-0.105808;;, + 124;4;-0.701736,-0.701735,-0.061395,-0.061395;;, + 125;4;-0.705621,-0.705621,-0.016980,-0.016980;;, + 126;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 127;4;-0.704512,-0.704512,-0.029660,-0.029661;;, + 128;4;-0.698959,-0.698959,-0.093128,-0.093128;;, + 129;4;-0.696364,-0.696364,-0.122788,-0.122788;;, + 130;4;-0.698959,-0.698959,-0.093134,-0.093134;;, + 131;4;-0.704512,-0.704512,-0.029672,-0.029672;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.704512,-0.704512,-0.029672,-0.029672;;, + 156;4;-0.698959,-0.698959,-0.093134,-0.093134;;, + 157;4;-0.696364,-0.696364,-0.122788,-0.122788;;, + 158;4;-0.698959,-0.698959,-0.093134,-0.093134;;, + 159;4;-0.704512,-0.704512,-0.029672,-0.029672;;, + 160;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 161;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 162;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 163;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 164;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 165;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 166;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 167;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 168;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 169;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 170;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 171;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 172;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 173;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 174;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 175;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 176;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 177;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 178;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 179;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.634897,-0.638737,-0.137836,-0.140525;;, + 182;4;-0.480809,-0.492866,-0.429525,-0.437968;;, + 183;4;-0.408837,-0.424734,-0.565569,-0.576702;;, + 184;4;-0.480585,-0.492642,-0.431122,-0.439566;;, + 185;4;-0.634417,-0.638257,-0.141337,-0.144026;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 2.086739, 2.519446, 1.774359;;, + 1;3; 2.086739, 2.519446, 1.774359;;, + 2;3; 2.086739, 2.519446, 1.774359;;, + 3;3; 2.086739, 2.519446, 1.774359;;, + 4;3; 2.086739, 2.519446, 1.774359;;, + 5;3; 2.086739, 2.519446, 1.774359;;, + 6;3; 2.086739, 2.519446, 1.774359;;, + 7;3; 2.086739, 2.519446, 1.774359;;, + 8;3; 2.086739, 2.519446, 1.774359;;, + 9;3; 2.086739, 2.519446, 1.774359;;, + 10;3; 2.086739, 2.519446, 1.774359;;, + 11;3; 2.086739, 2.519446, 1.774359;;, + 12;3; 2.086739, 2.519446, 1.774359;;, + 13;3; 2.086739, 2.519446, 1.774359;;, + 14;3; 2.086739, 2.519446, 1.774359;;, + 15;3; 2.086739, 2.519446, 1.774359;;, + 16;3; 2.086739, 2.519446, 1.774359;;, + 17;3; 2.086739, 2.519446, 1.774359;;, + 18;3; 2.086739, 2.519446, 1.774359;;, + 19;3; 2.086739, 2.519446, 1.774359;;, + 20;3; 2.086739, 2.519446, 1.774359;;, + 21;3; 2.086739, 2.519446, 1.774359;;, + 22;3; 2.086739, 2.519446, 1.774359;;, + 23;3; 2.086739, 2.519446, 1.774359;;, + 24;3; 2.086739, 2.519446, 1.774359;;, + 25;3; 2.086739, 2.519447, 1.774359;;, + 26;3; 2.086739, 2.519447, 1.774359;;, + 27;3; 2.086739, 2.519447, 1.774359;;, + 28;3; 2.086738, 2.519446, 1.774359;;, + 29;3; 2.086738, 2.519446, 1.774359;;, + 30;3; 2.086739, 2.519447, 1.774360;;, + 31;3; 2.086738, 2.519446, 1.774359;;, + 32;3; 2.086738, 2.519447, 1.774359;;, + 33;3; 2.086738, 2.519446, 1.774359;;, + 34;3; 2.086739, 2.519447, 1.774359;;, + 35;3; 2.086739, 2.519446, 1.774359;;, + 36;3; 2.086739, 2.519447, 1.774359;;, + 37;3; 2.086739, 2.519446, 1.774359;;, + 38;3; 2.086739, 2.519447, 1.774359;;, + 39;3; 2.086739, 2.519446, 1.774359;;, + 40;3; 2.086739, 2.519447, 1.774360;;, + 41;3; 2.086739, 2.519446, 1.774359;;, + 42;3; 2.086739, 2.519447, 1.774360;;, + 43;3; 2.086739, 2.519447, 1.774359;;, + 44;3; 2.086739, 2.519447, 1.774359;;, + 45;3; 2.086739, 2.519447, 1.774359;;, + 46;3; 2.086739, 2.519446, 1.774359;;, + 47;3; 2.086739, 2.519447, 1.774359;;, + 48;3; 2.086739, 2.519446, 1.774359;;, + 49;3; 2.086739, 2.519446, 1.774359;;, + 50;3; 2.086739, 2.519446, 1.774359;;, + 51;3; 2.086739, 2.519446, 1.774359;;, + 52;3; 2.086739, 2.519446, 1.774359;;, + 53;3; 2.086739, 2.519446, 1.774359;;, + 54;3; 2.086739, 2.519446, 1.774359;;, + 55;3; 2.086739, 2.519446, 1.774359;;, + 56;3; 2.086739, 2.519446, 1.774359;;, + 57;3; 2.086739, 2.519446, 1.774359;;, + 58;3; 2.086739, 2.519446, 1.774359;;, + 59;3; 2.086739, 2.519446, 1.774359;;, + 60;3; 2.086739, 2.519446, 1.774359;;, + 61;3; 2.086739, 2.519446, 1.774359;;, + 62;3; 2.086739, 2.519446, 1.774359;;, + 63;3; 2.086739, 2.519446, 1.774359;;, + 64;3; 2.086739, 2.519446, 1.774359;;, + 65;3; 2.086739, 2.519446, 1.774359;;, + 66;3; 2.086739, 2.519446, 1.774359;;, + 67;3; 2.086739, 2.519446, 1.774359;;, + 68;3; 2.086739, 2.519446, 1.774359;;, + 69;3; 2.086739, 2.519446, 1.774359;;, + 70;3; 2.086739, 2.519446, 1.774359;;, + 71;3; 2.086739, 2.519446, 1.774359;;, + 72;3; 2.086739, 2.519446, 1.774359;;, + 73;3; 2.086739, 2.519446, 1.774359;;, + 74;3; 2.086739, 2.519446, 1.774359;;, + 75;3; 2.086739, 2.519446, 1.774359;;, + 76;3; 2.086739, 2.519446, 1.774359;;, + 77;3; 2.086739, 2.519446, 1.774359;;, + 78;3; 2.086739, 2.519446, 1.774359;;, + 79;3; 2.086739, 2.519446, 1.774359;;, + 80;3; 2.086739, 2.519446, 1.774359;;, + 81;3; 2.086739, 2.519446, 1.774359;;, + 82;3; 2.086739, 2.519446, 1.774359;;, + 83;3; 2.086739, 2.519446, 1.774359;;, + 84;3; 2.086739, 2.519446, 1.774359;;, + 85;3; 2.086739, 2.519446, 1.774359;;, + 86;3; 2.086739, 2.519446, 1.774359;;, + 87;3; 2.086739, 2.519446, 1.774359;;, + 88;3; 2.086739, 2.519446, 1.774359;;, + 89;3; 2.086739, 2.519446, 1.774359;;, + 90;3; 2.086739, 2.519446, 1.774359;;, + 91;3; 2.086739, 2.519446, 1.774359;;, + 92;3; 2.086739, 2.519446, 1.774359;;, + 93;3; 2.086739, 2.519446, 1.774359;;, + 94;3; 2.086739, 2.519446, 1.774359;;, + 95;3; 2.086739, 2.519446, 1.774359;;, + 96;3; 2.086739, 2.519446, 1.774359;;, + 97;3; 2.086739, 2.519446, 1.774359;;, + 98;3; 2.086739, 2.519446, 1.774359;;, + 99;3; 2.086739, 2.519446, 1.774359;;, + 100;3; 2.086739, 2.519446, 1.774359;;, + 101;3; 2.086739, 2.519446, 1.774359;;, + 102;3; 2.086739, 2.519446, 1.774359;;, + 103;3; 2.086739, 2.519446, 1.774359;;, + 104;3; 2.086739, 2.519446, 1.774359;;, + 105;3; 2.086739, 2.519446, 1.774359;;, + 106;3; 2.086739, 2.519446, 1.774359;;, + 107;3; 2.086739, 2.519446, 1.774359;;, + 108;3; 2.086739, 2.519446, 1.774359;;, + 109;3; 2.086739, 2.519446, 1.774359;;, + 110;3; 2.086739, 2.519446, 1.774359;;, + 111;3; 2.086739, 2.519446, 1.774359;;, + 112;3; 2.086739, 2.519446, 1.774359;;, + 113;3; 2.086739, 2.519446, 1.774359;;, + 114;3; 2.086739, 2.519446, 1.774359;;, + 115;3; 2.086739, 2.519446, 1.774359;;, + 116;3; 2.086739, 2.519446, 1.774359;;, + 117;3; 2.086739, 2.519446, 1.774359;;, + 118;3; 2.086739, 2.519446, 1.774359;;, + 119;3; 2.086739, 2.519446, 1.774359;;, + 120;3; 2.086739, 2.519446, 1.774359;;, + 121;3; 2.086739, 2.519446, 1.774359;;, + 122;3; 2.086739, 2.519446, 1.774359;;, + 123;3; 2.086739, 2.519446, 1.774360;;, + 124;3; 2.086739, 2.519446, 1.774359;;, + 125;3; 2.086739, 2.519446, 1.774360;;, + 126;3; 2.086739, 2.519446, 1.774360;;, + 127;3; 2.086739, 2.519446, 1.774359;;, + 128;3; 2.086739, 2.519446, 1.774359;;, + 129;3; 2.086739, 2.519446, 1.774359;;, + 130;3; 2.086739, 2.519446, 1.774359;;, + 131;3; 2.086739, 2.519446, 1.774359;;, + 132;3; 2.086739, 2.519446, 1.774359;;, + 133;3; 2.086739, 2.519446, 1.774359;;, + 134;3; 2.086739, 2.519446, 1.774359;;, + 135;3; 2.086739, 2.519446, 1.774359;;, + 136;3; 2.086739, 2.519446, 1.774359;;, + 137;3; 2.086739, 2.519446, 1.774359;;, + 138;3; 2.086739, 2.519446, 1.774359;;, + 139;3; 2.086739, 2.519446, 1.774359;;, + 140;3; 2.086739, 2.519446, 1.774359;;, + 141;3; 2.086739, 2.519446, 1.774359;;, + 142;3; 2.086739, 2.519446, 1.774359;;, + 143;3; 2.086739, 2.519446, 1.774359;;, + 144;3; 2.086739, 2.519446, 1.774359;;, + 145;3; 2.086739, 2.519446, 1.774359;;, + 146;3; 2.086739, 2.519446, 1.774359;;, + 147;3; 2.086739, 2.519446, 1.774359;;, + 148;3; 2.086739, 2.519446, 1.774359;;, + 149;3; 2.086739, 2.519446, 1.774359;;, + 150;3; 2.086739, 2.519446, 1.774359;;, + 151;3; 2.086739, 2.519446, 1.774359;;, + 152;3; 2.086739, 2.519446, 1.774359;;, + 153;3; 2.086739, 2.519446, 1.774359;;, + 154;3; 2.086739, 2.519446, 1.774359;;, + 155;3; 2.086739, 2.519446, 1.774359;;, + 156;3; 2.086739, 2.519446, 1.774359;;, + 157;3; 2.086739, 2.519446, 1.774360;;, + 158;3; 2.086738, 2.519446, 1.774359;;, + 159;3; 2.086739, 2.519446, 1.774359;;, + 160;3; 2.086738, 2.519446, 1.774359;;, + 161;3; 2.086739, 2.519446, 1.774359;;, + 162;3; 2.086739, 2.519446, 1.774359;;, + 163;3; 2.086739, 2.519447, 1.774359;;, + 164;3; 2.086739, 2.519446, 1.774359;;, + 165;3; 2.086739, 2.519446, 1.774359;;, + 166;3; 2.086739, 2.519446, 1.774359;;, + 167;3; 2.086739, 2.519446, 1.774359;;, + 168;3; 2.086739, 2.519446, 1.774359;;, + 169;3; 2.086739, 2.519446, 1.774359;;, + 170;3; 2.086739, 2.519446, 1.774359;;, + 171;3; 2.086739, 2.519446, 1.774359;;, + 172;3; 2.086739, 2.519446, 1.774359;;, + 173;3; 2.086739, 2.519446, 1.774359;;, + 174;3; 2.086739, 2.519446, 1.774359;;, + 175;3; 2.086739, 2.519446, 1.774359;;, + 176;3; 2.086739, 2.519446, 1.774359;;, + 177;3; 2.086739, 2.519446, 1.774359;;, + 178;3; 2.086739, 2.519446, 1.774359;;, + 179;3; 2.086739, 2.519446, 1.774359;;, + 180;3; 2.086739, 2.519446, 1.774359;;, + 181;3; 2.086739, 2.519446, 1.774359;;, + 182;3; 2.086739, 2.519446, 1.774359;;, + 183;3; 2.086739, 2.519446, 1.774359;;, + 184;3; 2.086739, 2.519446, 1.774359;;, + 185;3; 2.086739, 2.519446, 1.774359;;, + 186;3; 2.086739, 2.519446, 1.774359;;; + } + } + Animation { + {Chicken_Rig_Leg_R} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000592, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736581,-0.673310,-0.001104, 0.001104;;, + 156;4;-0.794066,-0.606133,-0.003281, 0.003281;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.806071,-0.582196, 0.001740, 0.008347;;, + 159;4;-0.772261,-0.612138, 0.019566, 0.020361;;, + 160;4;-0.722162,-0.659169, 0.046724, 0.038666;;, + 161;4;-0.666001,-0.713186, 0.077528, 0.059428;;, + 162;4;-0.616789,-0.761127, 0.104686, 0.077733;;, + 163;4;-0.584604,-0.792720, 0.122512, 0.089747;;, + 164;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 165;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 166;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 167;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 168;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 169;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 170;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 171;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 172;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 173;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 174;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 175;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 176;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 177;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 178;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 179;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 180;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 181;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 182;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 183;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 184;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 185;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 186;4;-0.707107,-0.707107, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.929329, 2.540998,-1.666857;;, + 1;3; 0.929329, 2.540998,-1.666857;;, + 2;3; 0.929329, 2.540998,-1.666857;;, + 3;3; 0.929329, 2.540998,-1.666857;;, + 4;3; 0.929329, 2.540998,-1.666857;;, + 5;3; 0.929329, 2.540998,-1.666857;;, + 6;3; 0.929329, 2.540998,-1.666857;;, + 7;3; 0.929329, 2.540998,-1.666857;;, + 8;3; 0.929329, 2.540998,-1.666857;;, + 9;3; 0.929329, 2.540998,-1.666857;;, + 10;3; 0.929329, 2.540998,-1.666857;;, + 11;3; 0.929329, 2.540998,-1.666857;;, + 12;3; 0.929329, 2.540998,-1.666857;;, + 13;3; 0.929329, 2.540998,-1.666857;;, + 14;3; 0.929329, 2.540998,-1.666857;;, + 15;3; 0.929329, 2.540998,-1.666857;;, + 16;3; 0.929329, 2.540998,-1.666857;;, + 17;3; 0.929329, 2.540998,-1.666857;;, + 18;3; 0.929329, 2.540998,-1.666857;;, + 19;3; 0.929329, 2.540998,-1.666857;;, + 20;3; 0.929329, 2.540998,-1.666857;;, + 21;3; 0.929329, 2.540998,-1.666857;;, + 22;3; 0.929329, 2.540998,-1.666857;;, + 23;3; 0.929329, 2.540998,-1.666857;;, + 24;3; 0.929329, 2.540998,-1.666857;;, + 25;3; 0.929329, 2.540998,-1.666857;;, + 26;3; 0.929329, 2.540998,-1.666857;;, + 27;3; 0.929329, 2.540998,-1.666857;;, + 28;3; 0.929329, 2.540998,-1.666857;;, + 29;3; 0.929329, 2.540998,-1.666857;;, + 30;3; 0.929329, 2.540998,-1.666857;;, + 31;3; 0.929329, 2.540998,-1.666857;;, + 32;3; 0.929329, 2.540998,-1.666857;;, + 33;3; 0.929329, 2.540998,-1.666857;;, + 34;3; 0.929329, 2.540998,-1.666857;;, + 35;3; 0.929329, 2.540998,-1.666857;;, + 36;3; 0.929329, 2.540998,-1.666857;;, + 37;3; 0.929329, 2.540998,-1.666857;;, + 38;3; 0.929329, 2.540998,-1.666857;;, + 39;3; 0.929329, 2.540998,-1.666857;;, + 40;3; 0.929329, 2.540998,-1.666857;;, + 41;3; 0.929329, 2.540998,-1.666857;;, + 42;3; 0.929329, 2.540998,-1.666857;;, + 43;3; 0.929329, 2.540998,-1.666857;;, + 44;3; 0.929329, 2.540999,-1.666857;;, + 45;3; 0.929329, 2.540998,-1.666857;;, + 46;3; 0.929329, 2.540998,-1.666857;;, + 47;3; 0.929329, 2.540998,-1.666857;;, + 48;3; 0.929329, 2.540998,-1.666857;;, + 49;3; 0.929329, 2.540998,-1.666857;;, + 50;3; 0.929329, 2.540998,-1.666857;;, + 51;3; 0.929329, 2.540998,-1.666857;;, + 52;3; 0.929329, 2.540998,-1.666857;;, + 53;3; 0.929329, 2.540998,-1.666857;;, + 54;3; 0.929329, 2.540998,-1.666857;;, + 55;3; 0.929329, 2.540998,-1.666857;;, + 56;3; 0.929329, 2.540998,-1.666857;;, + 57;3; 0.929329, 2.540998,-1.666857;;, + 58;3; 0.929329, 2.540998,-1.666857;;, + 59;3; 0.929329, 2.540998,-1.666857;;, + 60;3; 0.929329, 2.540998,-1.666857;;, + 61;3; 0.929329, 2.540998,-1.666857;;, + 62;3; 0.929329, 2.540998,-1.666857;;, + 63;3; 0.929329, 2.540998,-1.666857;;, + 64;3; 0.929329, 2.540998,-1.666857;;, + 65;3; 0.929329, 2.540998,-1.666857;;, + 66;3; 0.929329, 2.540998,-1.666857;;, + 67;3; 0.929329, 2.540998,-1.666857;;, + 68;3; 0.929329, 2.540998,-1.666857;;, + 69;3; 0.929329, 2.540998,-1.666857;;, + 70;3; 0.929329, 2.540998,-1.666857;;, + 71;3; 0.929329, 2.540998,-1.666857;;, + 72;3; 0.929329, 2.540998,-1.666857;;, + 73;3; 0.929329, 2.540998,-1.666857;;, + 74;3; 0.929329, 2.540998,-1.666857;;, + 75;3; 0.929329, 2.540998,-1.666857;;, + 76;3; 0.929329, 2.540998,-1.666857;;, + 77;3; 0.929329, 2.540998,-1.666857;;, + 78;3; 0.929329, 2.540998,-1.666857;;, + 79;3; 0.929329, 2.540998,-1.666857;;, + 80;3; 0.929329, 2.540998,-1.666857;;, + 81;3; 0.929329, 2.540998,-1.666857;;, + 82;3; 0.929329, 2.540998,-1.666857;;, + 83;3; 0.929329, 2.540998,-1.666857;;, + 84;3; 0.929329, 2.540998,-1.666857;;, + 85;3; 0.929329, 2.540998,-1.666857;;, + 86;3; 0.929329, 2.540998,-1.666857;;, + 87;3; 0.929329, 2.540998,-1.666857;;, + 88;3; 0.929329, 2.540998,-1.666857;;, + 89;3; 0.929329, 2.540998,-1.666857;;, + 90;3; 0.929329, 2.540998,-1.666857;;, + 91;3; 0.929329, 2.540998,-1.666857;;, + 92;3; 0.929329, 2.540998,-1.666857;;, + 93;3; 0.929329, 2.540998,-1.666857;;, + 94;3; 0.929329, 2.540998,-1.666857;;, + 95;3; 0.929329, 2.540998,-1.666857;;, + 96;3; 0.929329, 2.540998,-1.666857;;, + 97;3; 0.929329, 2.540998,-1.666857;;, + 98;3; 0.929329, 2.540998,-1.666857;;, + 99;3; 0.929329, 2.540998,-1.666857;;, + 100;3; 0.929329, 2.540998,-1.666857;;, + 101;3; 0.929329, 2.540998,-1.666857;;, + 102;3; 0.929329, 2.540998,-1.666857;;, + 103;3; 0.929329, 2.540998,-1.666857;;, + 104;3; 0.929329, 2.540998,-1.666857;;, + 105;3; 0.929329, 2.540998,-1.666857;;, + 106;3; 0.929329, 2.540998,-1.666857;;, + 107;3; 0.929329, 2.540998,-1.666857;;, + 108;3; 0.929329, 2.540998,-1.666857;;, + 109;3; 0.929329, 2.540998,-1.666857;;, + 110;3; 0.929329, 2.540998,-1.666857;;, + 111;3; 0.929329, 2.540998,-1.666857;;, + 112;3; 0.929329, 2.540998,-1.666857;;, + 113;3; 0.929329, 2.540998,-1.666857;;, + 114;3; 0.929329, 2.540998,-1.666857;;, + 115;3; 0.929329, 2.540998,-1.666857;;, + 116;3; 0.929329, 2.540998,-1.666857;;, + 117;3; 0.929329, 2.540998,-1.666857;;, + 118;3; 0.929329, 2.540998,-1.666857;;, + 119;3; 0.929329, 2.540998,-1.666857;;, + 120;3; 0.929329, 2.540998,-1.666857;;, + 121;3; 0.929329, 2.540998,-1.666857;;, + 122;3; 0.929329, 2.540998,-1.666857;;, + 123;3; 0.929329, 2.540998,-1.666857;;, + 124;3; 0.929329, 2.540998,-1.666857;;, + 125;3; 0.929329, 2.540998,-1.666857;;, + 126;3; 0.929329, 2.540998,-1.666857;;, + 127;3; 0.929329, 2.540998,-1.666857;;, + 128;3; 0.929329, 2.540998,-1.666857;;, + 129;3; 0.929329, 2.540998,-1.666857;;, + 130;3; 0.929329, 2.540998,-1.666857;;, + 131;3; 0.929329, 2.540998,-1.666857;;, + 132;3; 0.929329, 2.540998,-1.666857;;, + 133;3; 0.929329, 2.540998,-1.666857;;, + 134;3; 0.929329, 2.540998,-1.666857;;, + 135;3; 0.929329, 2.540998,-1.666857;;, + 136;3; 0.929329, 2.540998,-1.666857;;, + 137;3; 0.929329, 2.540998,-1.666857;;, + 138;3; 0.929329, 2.540998,-1.666857;;, + 139;3; 0.929329, 2.540998,-1.666857;;, + 140;3; 0.929329, 2.540998,-1.666857;;, + 141;3; 0.929329, 2.540998,-1.666857;;, + 142;3; 0.929329, 2.540998,-1.666857;;, + 143;3; 0.929329, 2.540998,-1.666857;;, + 144;3; 0.929329, 2.540998,-1.666857;;, + 145;3; 0.929329, 2.540998,-1.666857;;, + 146;3; 0.929329, 2.540998,-1.666857;;, + 147;3; 0.929329, 2.540998,-1.666857;;, + 148;3; 0.929329, 2.540998,-1.666857;;, + 149;3; 0.929329, 2.540998,-1.666857;;, + 150;3; 0.929329, 2.540998,-1.666857;;, + 151;3; 0.929329, 2.540998,-1.666857;;, + 152;3; 0.929329, 2.540998,-1.666857;;, + 153;3; 0.929329, 2.540998,-1.666857;;, + 154;3; 0.929329, 2.540998,-1.666857;;, + 155;3; 0.929329, 2.540998,-1.666857;;, + 156;3; 0.929329, 2.540998,-1.666857;;, + 157;3; 0.929329, 2.540998,-1.666857;;, + 158;3; 0.929329, 2.540998,-1.666856;;, + 159;3; 0.929329, 2.540998,-1.666857;;, + 160;3; 0.929329, 2.540998,-1.666857;;, + 161;3; 0.929329, 2.540998,-1.666857;;, + 162;3; 0.929330, 2.540998,-1.666857;;, + 163;3; 0.929330, 2.540998,-1.666857;;, + 164;3; 0.929330, 2.540998,-1.666857;;, + 165;3; 0.929330, 2.540998,-1.666857;;, + 166;3; 0.929330, 2.540998,-1.666857;;, + 167;3; 0.929330, 2.540998,-1.666857;;, + 168;3; 0.929330, 2.540998,-1.666857;;, + 169;3; 0.929330, 2.540998,-1.666857;;, + 170;3; 0.929330, 2.540998,-1.666857;;, + 171;3; 0.929330, 2.540998,-1.666857;;, + 172;3; 0.929330, 2.540998,-1.666857;;, + 173;3; 0.929330, 2.540998,-1.666857;;, + 174;3; 0.929330, 2.540998,-1.666857;;, + 175;3; 0.929330, 2.540998,-1.666857;;, + 176;3; 0.929330, 2.540998,-1.666857;;, + 177;3; 0.929330, 2.540998,-1.666857;;, + 178;3; 0.929330, 2.540998,-1.666857;;, + 179;3; 0.929330, 2.540998,-1.666857;;, + 180;3; 0.929329, 2.540998,-1.666857;;, + 181;3; 0.929329, 2.540998,-1.666857;;, + 182;3; 0.929329, 2.540998,-1.666857;;, + 183;3; 0.929329, 2.540998,-1.666857;;, + 184;3; 0.929329, 2.540998,-1.666857;;, + 185;3; 0.929329, 2.540998,-1.666857;;, + 186;3; 0.929329, 2.540998,-1.666857;;; + } + } + Animation { + {Chicken_Rig_Head} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 1;4;-0.999945, 0.007153,-0.000003,-0.000000;;, + 2;4;-0.999837, 0.011033,-0.000003,-0.000000;;, + 3;4;-0.999698, 0.016016,-0.000003,-0.000000;;, + 4;4;-0.999590, 0.019896,-0.000003,-0.000000;;, + 5;4;-0.999551, 0.021274,-0.000003,-0.000000;;, + 6;4;-0.999576, 0.020669,-0.000003,-0.000000;;, + 7;4;-0.999648, 0.018794,-0.000003,-0.000000;;, + 8;4;-0.999754, 0.015794,-0.000003,-0.000000;;, + 9;4;-0.999863, 0.012205,-0.000003,-0.000000;;, + 10;4;-0.999945, 0.008711,-0.000003,-0.000000;;, + 11;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 12;4;-0.999979, 0.002839,-0.000003, 0.000000;;, + 13;4;-0.999938,-0.000656,-0.000003, 0.000000;;, + 14;4;-0.999870,-0.004246,-0.000003, 0.000000;;, + 15;4;-0.999799,-0.007247,-0.000003, 0.000000;;, + 16;4;-0.999748,-0.009123,-0.000003, 0.000000;;, + 17;4;-0.999730,-0.009728,-0.000003, 0.000000;;, + 18;4;-0.999746,-0.008770,-0.000003, 0.000000;;, + 19;4;-0.999791,-0.005983,-0.000003, 0.000000;;, + 20;4;-0.999857,-0.001976,-0.000003, 0.000000;;, + 21;4;-0.999922, 0.002030,-0.000003, 0.000000;;, + 22;4;-0.999968, 0.004817,-0.000003,-0.000000;;, + 23;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 24;4;-0.999962, 0.005775,-0.001619, 0.000009;;, + 25;4;-0.999901, 0.005775,-0.006326, 0.000037;;, + 26;4;-0.999812, 0.005774,-0.013091, 0.000076;;, + 27;4;-0.999723, 0.005774,-0.019856, 0.000115;;, + 28;4;-0.999662, 0.005773,-0.024562, 0.000142;;, + 29;4;-0.999641, 0.005773,-0.026179, 0.000151;;, + 30;4;-0.999662, 0.005773,-0.025158, 0.000145;;, + 31;4;-0.999723, 0.005774,-0.021990, 0.000127;;, + 32;4;-0.999812, 0.005774,-0.016923, 0.000098;;, + 33;4;-0.999901, 0.005775,-0.010862, 0.000063;;, + 34;4;-0.999962, 0.005775,-0.004961, 0.000029;;, + 35;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 36;4;-0.999962, 0.005775, 0.004956,-0.000029;;, + 37;4;-0.999901, 0.005775, 0.010857,-0.000063;;, + 38;4;-0.999812, 0.005774, 0.016918,-0.000098;;, + 39;4;-0.999723, 0.005774, 0.021985,-0.000127;;, + 40;4;-0.999662, 0.005773, 0.025153,-0.000145;;, + 41;4;-0.999641, 0.005773, 0.026174,-0.000151;;, + 42;4;-0.999653, 0.005773, 0.025266,-0.000146;;, + 43;4;-0.999688, 0.005773, 0.022554,-0.000132;;, + 44;4;-0.999744, 0.005774, 0.018286,-0.000108;;, + 45;4;-0.999812, 0.005774, 0.013086,-0.000079;;, + 46;4;-0.999880, 0.005774, 0.007886,-0.000050;;, + 47;4;-0.999936, 0.005775, 0.003617,-0.000025;;, + 48;4;-0.999971, 0.005775, 0.000906,-0.000008;;, + 49;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 50;4;-0.937223,-0.239772,-0.000002, 0.000002;;, + 51;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 52;4;-0.874138,-0.485309, 0.000455,-0.000822;;, + 53;4;-0.873968,-0.485281, 0.001781,-0.003210;;, + 54;4;-0.873827,-0.485235, 0.003861,-0.006958;;, + 55;4;-0.873716,-0.485178, 0.006513,-0.011736;;, + 56;4;-0.873633,-0.485112, 0.009498,-0.017113;;, + 57;4;-0.873576,-0.485046, 0.012546,-0.022606;;, + 58;4;-0.873540,-0.484983, 0.015395,-0.027739;;, + 59;4;-0.873519,-0.484930, 0.017820,-0.032106;;, + 60;4;-0.873509,-0.484890, 0.019652,-0.035406;;, + 61;4;-0.873506,-0.484865, 0.020785,-0.037448;;, + 62;4;-0.873505,-0.484857, 0.021167,-0.038137;;, + 63;4;-0.873505,-0.484857, 0.017404,-0.031357;;, + 64;4;-0.873505,-0.484857, 0.006803,-0.012261;;, + 65;4;-0.873505,-0.484857,-0.006808, 0.012258;;, + 66;4;-0.873505,-0.484857,-0.017408, 0.031355;;, + 67;4;-0.873505,-0.484857,-0.021171, 0.038134;;, + 68;4;-0.873506,-0.484866,-0.020738, 0.037354;;, + 69;4;-0.873509,-0.484892,-0.019544, 0.035204;;, + 70;4;-0.873519,-0.484932,-0.017730, 0.031936;;, + 71;4;-0.873539,-0.484983,-0.015418, 0.027773;;, + 72;4;-0.873573,-0.485041,-0.012727, 0.022926;;, + 73;4;-0.873627,-0.485106,-0.009780, 0.017618;;, + 74;4;-0.873709,-0.485172,-0.006723, 0.012113;;, + 75;4;-0.873832,-0.485237,-0.003763, 0.006781;;, + 76;4;-0.874021,-0.485292,-0.001250, 0.002253;;, + 77;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 78;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 79;4;-0.974643, 0.005628,-0.000910,-0.157110;;, + 80;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 81;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 82;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 83;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 84;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 85;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 86;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 87;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 88;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 89;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 90;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 91;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 92;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 93;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 94;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 95;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 96;4;-0.961569, 0.005553,-0.001509,-0.260670;;, + 97;4;-0.987749, 0.005704,-0.000716,-0.123620;;, + 98;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 99;4;-0.992979, 0.005734, 0.000589, 0.102403;;, + 100;4;-0.974659, 0.005628, 0.001215, 0.210752;;, + 101;4;-0.956338, 0.005521, 0.001665, 0.288673;;, + 102;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 103;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 104;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 105;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 106;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 107;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 108;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 109;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 110;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 111;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 112;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 113;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 114;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 115;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 116;4;-0.961569, 0.005552, 0.001374, 0.238262;;, + 117;4;-0.987749, 0.005704, 0.000436, 0.075954;;, + 118;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 119;4;-0.999542,-0.017864,-0.000003,-0.000000;;, + 120;4;-0.998007,-0.043214,-0.000002, 0.000000;;, + 121;4;-0.995747,-0.070680,-0.000002, 0.000000;;, + 122;4;-0.993498,-0.099890,-0.000002, 0.000000;;, + 123;4;-0.991956,-0.123956,-0.000002, 0.000000;;, + 124;4;-0.991417,-0.130738,-0.000002, 0.000000;;, + 125;4;-0.991714,-0.126001,-0.000002, 0.000000;;, + 126;4;-0.992602,-0.111861,-0.000002, 0.000000;;, + 127;4;-0.993998,-0.089600,-0.000002, 0.000000;;, + 128;4;-0.995700,-0.062482,-0.000002, 0.000000;;, + 129;4;-0.997402,-0.035365,-0.000002, 0.000000;;, + 130;4;-0.998799,-0.013103,-0.000003, 0.000000;;, + 131;4;-0.999686, 0.001038,-0.000003,-0.000000;;, + 132;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 133;4;-0.999987, 0.005158,-0.000003,-0.000000;;, + 134;4;-0.999997, 0.003345,-0.000003,-0.000000;;, + 135;4;-1.000014, 0.000408,-0.000003,-0.000000;;, + 136;4;-1.000037,-0.003554,-0.000003,-0.000000;;, + 137;4;-1.000065,-0.008408,-0.000003,-0.000000;;, + 138;4;-1.000098,-0.013993,-0.000003,-0.000000;;, + 139;4;-1.000133,-0.020110,-0.000003,-0.000000;;, + 140;4;-1.000170,-0.026527,-0.000003,-0.000000;;, + 141;4;-1.000207,-0.032979,-0.000003,-0.000000;;, + 142;4;-1.000243,-0.039177,-0.000003,-0.000000;;, + 143;4;-1.000275,-0.044811,-0.000003,-0.000000;;, + 144;4;-1.000303,-0.049563,-0.000003,-0.000000;;, + 145;4;-1.000323,-0.053122,-0.000003,-0.000000;;, + 146;4;-1.000335,-0.055188,-0.000003,-0.000000;;, + 147;4;-1.000337,-0.055492,-0.000003,-0.000000;;, + 148;4;-1.000327,-0.053801,-0.000003,-0.000000;;, + 149;4;-1.000305,-0.049923,-0.000003,-0.000000;;, + 150;4;-1.000269,-0.043714,-0.000003,-0.000000;;, + 151;4;-1.000219,-0.035077,-0.000003,-0.000000;;, + 152;4;-1.000155,-0.023955,-0.000003,-0.000000;;, + 153;4;-1.000076,-0.010332,-0.000003,-0.000000;;, + 154;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 155;4;-0.999323,-0.001480,-0.000519, 0.002265;;, + 156;4;-0.997321,-0.021071,-0.002074, 0.009083;;, + 157;4;-0.994046,-0.049448,-0.004602, 0.020168;;, + 158;4;-0.989742,-0.082905,-0.007909, 0.034667;;, + 159;4;-0.984849,-0.117862,-0.011654, 0.051092;;, + 160;4;-0.979946,-0.151101,-0.015400, 0.067517;;, + 161;4;-0.975615,-0.179913,-0.018707, 0.082016;;, + 162;4;-0.972305,-0.202159,-0.021235, 0.093101;;, + 163;4;-0.970272,-0.216258,-0.022790, 0.099919;;, + 164;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 165;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 166;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 167;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 168;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 169;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 170;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 171;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 172;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 173;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 174;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 175;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 176;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 177;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 178;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 179;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 180;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 181;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 182;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 183;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 184;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 185;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 186;4;-0.999983, 0.005775,-0.000003,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.023066, 4.738051, 2.665740;;, + 1;3; 0.023066, 4.738051, 2.665740;;, + 2;3; 0.023066, 4.738051, 2.665740;;, + 3;3; 0.023066, 4.738051, 2.665740;;, + 4;3; 0.023066, 4.738051, 2.665740;;, + 5;3; 0.023066, 4.738051, 2.665740;;, + 6;3; 0.023066, 4.738051, 2.665740;;, + 7;3; 0.023066, 4.738051, 2.665740;;, + 8;3; 0.023066, 4.738051, 2.665740;;, + 9;3; 0.023066, 4.738051, 2.665740;;, + 10;3; 0.023066, 4.738051, 2.665740;;, + 11;3; 0.023066, 4.738051, 2.665740;;, + 12;3; 0.023066, 4.738051, 2.665740;;, + 13;3; 0.023066, 4.738051, 2.665740;;, + 14;3; 0.023066, 4.738051, 2.665740;;, + 15;3; 0.023066, 4.738051, 2.665740;;, + 16;3; 0.023066, 4.738051, 2.665740;;, + 17;3; 0.023066, 4.738051, 2.665740;;, + 18;3; 0.023066, 4.738051, 2.665740;;, + 19;3; 0.023066, 4.738051, 2.665740;;, + 20;3; 0.023066, 4.738051, 2.665740;;, + 21;3; 0.023066, 4.738051, 2.665740;;, + 22;3; 0.023066, 4.738051, 2.665740;;, + 23;3; 0.023066, 4.738051, 2.665740;;, + 24;3; 0.023066, 4.738051, 2.665740;;, + 25;3; 0.023066, 4.738051, 2.665740;;, + 26;3; 0.023066, 4.738051, 2.665740;;, + 27;3; 0.023066, 4.738052, 2.665740;;, + 28;3; 0.023066, 4.738051, 2.665740;;, + 29;3; 0.023066, 4.738051, 2.665740;;, + 30;3; 0.023066, 4.738052, 2.665740;;, + 31;3; 0.023066, 4.738051, 2.665740;;, + 32;3; 0.023066, 4.738051, 2.665740;;, + 33;3; 0.023066, 4.738051, 2.665740;;, + 34;3; 0.023066, 4.738051, 2.665740;;, + 35;3; 0.023066, 4.738051, 2.665740;;, + 36;3; 0.023066, 4.738052, 2.665740;;, + 37;3; 0.023066, 4.738051, 2.665740;;, + 38;3; 0.023066, 4.738052, 2.665739;;, + 39;3; 0.023066, 4.738051, 2.665740;;, + 40;3; 0.023066, 4.738052, 2.665740;;, + 41;3; 0.023066, 4.738051, 2.665740;;, + 42;3; 0.023066, 4.738052, 2.665740;;, + 43;3; 0.023066, 4.738052, 2.665740;;, + 44;3; 0.023066, 4.738052, 2.665740;;, + 45;3; 0.023066, 4.738052, 2.665740;;, + 46;3; 0.023066, 4.738051, 2.665740;;, + 47;3; 0.023066, 4.738052, 2.665740;;, + 48;3; 0.023066, 4.738051, 2.665740;;, + 49;3; 0.023066, 4.738051, 2.665740;;, + 50;3; 0.023066, 5.202209, 1.327686;;, + 51;3; 0.023066, 5.666367,-0.010368;;, + 52;3; 0.023066, 5.666367,-0.010368;;, + 53;3; 0.023066, 5.666367,-0.010368;;, + 54;3; 0.023066, 5.666367,-0.010368;;, + 55;3; 0.023066, 5.666367,-0.010368;;, + 56;3; 0.023066, 5.666367,-0.010368;;, + 57;3; 0.023066, 5.666367,-0.010368;;, + 58;3; 0.023066, 5.666367,-0.010368;;, + 59;3; 0.023066, 5.666367,-0.010368;;, + 60;3; 0.023066, 5.666367,-0.010368;;, + 61;3; 0.023066, 5.666367,-0.010368;;, + 62;3; 0.023066, 5.666367,-0.010368;;, + 63;3; 0.023068, 5.666367,-0.010368;;, + 64;3; 0.023075, 5.666367,-0.010368;;, + 65;3; 0.023084, 5.666367,-0.010368;;, + 66;3; 0.023090, 5.666367,-0.010368;;, + 67;3; 0.023093, 5.666367,-0.010368;;, + 68;3; 0.023092, 5.666367,-0.010368;;, + 69;3; 0.023091, 5.666367,-0.010368;;, + 70;3; 0.023088, 5.666367,-0.010368;;, + 71;3; 0.023085, 5.666367,-0.010368;;, + 72;3; 0.023082, 5.666367,-0.010368;;, + 73;3; 0.023078, 5.666367,-0.010368;;, + 74;3; 0.023074, 5.666367,-0.010368;;, + 75;3; 0.023071, 5.666367,-0.010368;;, + 76;3; 0.023067, 5.666367,-0.010368;;, + 77;3; 0.023066, 5.666367,-0.010368;;, + 78;3; 0.023066, 4.738051, 2.665740;;, + 79;3; 0.023066, 4.738051, 2.665740;;, + 80;3; 0.023066, 4.738051, 2.665740;;, + 81;3; 0.023066, 4.738051, 2.665740;;, + 82;3; 0.023066, 4.738051, 2.665740;;, + 83;3; 0.023066, 4.738051, 2.665740;;, + 84;3; 0.023066, 4.738051, 2.665740;;, + 85;3; 0.023066, 4.738051, 2.665740;;, + 86;3; 0.023066, 4.738051, 2.665740;;, + 87;3; 0.023066, 4.738051, 2.665740;;, + 88;3; 0.023066, 4.738051, 2.665740;;, + 89;3; 0.023066, 4.738051, 2.665740;;, + 90;3; 0.023066, 4.738051, 2.665740;;, + 91;3; 0.023066, 4.738051, 2.665740;;, + 92;3; 0.023066, 4.738051, 2.665740;;, + 93;3; 0.023066, 4.738051, 2.665740;;, + 94;3; 0.023066, 4.738051, 2.665740;;, + 95;3; 0.023066, 4.738051, 2.665740;;, + 96;3; 0.023066, 4.738051, 2.665740;;, + 97;3; 0.023066, 4.738051, 2.665740;;, + 98;3; 0.023066, 4.738051, 2.665740;;, + 99;3; 0.023066, 4.738051, 2.665740;;, + 100;3; 0.023066, 4.738051, 2.665740;;, + 101;3; 0.023066, 4.738051, 2.665740;;, + 102;3; 0.023066, 4.738051, 2.665740;;, + 103;3; 0.023066, 4.738051, 2.665740;;, + 104;3; 0.023066, 4.738051, 2.665740;;, + 105;3; 0.023066, 4.738051, 2.665740;;, + 106;3; 0.023066, 4.738051, 2.665740;;, + 107;3; 0.023066, 4.738051, 2.665740;;, + 108;3; 0.023066, 4.738051, 2.665740;;, + 109;3; 0.023066, 4.738051, 2.665740;;, + 110;3; 0.023066, 4.738051, 2.665740;;, + 111;3; 0.023066, 4.738051, 2.665740;;, + 112;3; 0.023066, 4.738051, 2.665740;;, + 113;3; 0.023066, 4.738051, 2.665740;;, + 114;3; 0.023066, 4.738051, 2.665740;;, + 115;3; 0.023066, 4.738051, 2.665740;;, + 116;3; 0.023066, 4.738051, 2.665740;;, + 117;3; 0.023066, 4.738051, 2.665740;;, + 118;3; 0.023066, 4.738051, 2.665740;;, + 119;3; 0.023066, 4.738051, 2.665740;;, + 120;3; 0.023066, 4.738051, 2.665740;;, + 121;3; 0.023066, 4.738051, 2.665740;;, + 122;3; 0.023066, 4.738051, 2.665740;;, + 123;3; 0.023066, 4.738051, 2.665740;;, + 124;3; 0.023066, 4.738051, 2.665740;;, + 125;3; 0.023066, 4.738051, 2.665740;;, + 126;3; 0.023066, 4.738051, 2.665740;;, + 127;3; 0.023066, 4.738051, 2.665740;;, + 128;3; 0.023066, 4.738051, 2.665740;;, + 129;3; 0.023066, 4.738051, 2.665740;;, + 130;3; 0.023066, 4.738051, 2.665740;;, + 131;3; 0.023066, 4.738051, 2.665740;;, + 132;3; 0.023066, 4.738051, 2.665740;;, + 133;3; 0.023066, 4.738051, 2.665740;;, + 134;3; 0.023066, 4.738051, 2.665740;;, + 135;3; 0.023066, 4.738051, 2.665740;;, + 136;3; 0.023066, 4.738051, 2.665740;;, + 137;3; 0.023066, 4.738051, 2.665740;;, + 138;3; 0.023066, 4.738051, 2.665740;;, + 139;3; 0.023066, 4.738051, 2.665740;;, + 140;3; 0.023066, 4.738051, 2.665740;;, + 141;3; 0.023066, 4.738051, 2.665740;;, + 142;3; 0.023066, 4.738051, 2.665740;;, + 143;3; 0.023066, 4.738051, 2.665740;;, + 144;3; 0.023066, 4.738051, 2.665740;;, + 145;3; 0.023066, 4.738051, 2.665740;;, + 146;3; 0.023066, 4.738051, 2.665740;;, + 147;3; 0.023066, 4.738051, 2.665740;;, + 148;3; 0.023066, 4.738051, 2.665740;;, + 149;3; 0.023066, 4.738051, 2.665740;;, + 150;3; 0.023066, 4.738051, 2.665740;;, + 151;3; 0.023066, 4.738051, 2.665740;;, + 152;3; 0.023066, 4.738051, 2.665740;;, + 153;3; 0.023066, 4.738051, 2.665740;;, + 154;3; 0.023066, 4.738051, 2.665740;;, + 155;3; 0.023066, 4.738051, 2.665740;;, + 156;3; 0.023066, 4.738051, 2.665740;;, + 157;3; 0.023066, 4.738051, 2.665740;;, + 158;3; 0.023066, 4.738051, 2.665740;;, + 159;3; 0.023066, 4.738051, 2.665740;;, + 160;3; 0.023066, 4.738051, 2.665740;;, + 161;3; 0.023066, 4.738051, 2.665740;;, + 162;3; 0.023066, 4.738051, 2.665740;;, + 163;3; 0.023066, 4.738052, 2.665740;;, + 164;3; 0.023066, 4.738051, 2.665740;;, + 165;3; 0.023066, 4.738051, 2.665740;;, + 166;3; 0.023066, 4.738051, 2.665740;;, + 167;3; 0.023066, 4.738051, 2.665740;;, + 168;3; 0.023066, 4.738051, 2.665740;;, + 169;3; 0.023066, 4.738051, 2.665740;;, + 170;3; 0.023066, 4.738051, 2.665740;;, + 171;3; 0.023066, 4.738051, 2.665740;;, + 172;3; 0.023066, 4.738051, 2.665740;;, + 173;3; 0.023066, 4.738051, 2.665740;;, + 174;3; 0.023066, 4.738051, 2.665740;;, + 175;3; 0.023066, 4.738051, 2.665740;;, + 176;3; 0.023066, 4.738051, 2.665740;;, + 177;3; 0.023066, 4.738051, 2.665740;;, + 178;3; 0.023066, 4.738051, 2.665740;;, + 179;3; 0.023066, 4.738051, 2.665740;;, + 180;3; 0.023066, 4.738051, 2.665740;;, + 181;3; 0.023066, 4.738051, 2.665740;;, + 182;3; 0.023066, 4.738051, 2.665740;;, + 183;3; 0.023066, 4.738051, 2.665740;;, + 184;3; 0.023066, 4.738051, 2.665740;;, + 185;3; 0.023066, 4.738051, 2.665740;;, + 186;3; 0.023066, 4.738051, 2.665740;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/models/mobs_mc_cow.x b/mods/mobs_mc/models/mobs_mc_cow.x new file mode 100644 index 000000000..8f809fe0a --- /dev/null +++ b/mods/mobs_mc/models/mobs_mc_cow.x @@ -0,0 +1,6138 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cow_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cow_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cow_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,11.409506, 5.419243, 1.000000;; + } + Frame Cow_Rig_Head { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000005, 0.000000, + -0.000000, 0.999933, 0.011550, 0.000000, + -0.000005,-0.011550, 0.999933, 0.000000, + 0.023066,10.494865, 2.240401, 1.000000;; + } + } // End of Cow_Rig_Head + Frame Cow_Rig_Leg_B_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948, 0.613843,-3.417443, 1.000000;; + } + } // End of Cow_Rig_Leg_B_L + Frame Cow_Rig_Leg_B_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931, 0.613843,-3.417443, 1.000000;; + } + } // End of Cow_Rig_Leg_B_R + Frame Cow_Rig_Leg_F_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948, 8.787700,-3.333342, 1.000000;; + } + } // End of Cow_Rig_Leg_F_L + Frame Cow_Rig_Leg_F_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931, 8.787700,-3.333342, 1.000000;; + } + } // End of Cow_Rig_Leg_F_R + } // End of Cow_Rig_Body + } // End of Cow_Rig_Root + Frame Cow { + FrameTransformMatrix { + -1.000000, 0.000001, 0.000000, 0.000000, + -0.000001,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.811645, 0.000000, + -1.449203, 3.843606, 1.832092, 1.000000;; + } + Mesh { // Cow mesh + 192; + -0.319025;-0.920603; 3.463393;, + -0.319025;-0.920603;-1.034894;, + -0.319025; 1.948128;-1.034894;, + -0.319025; 1.948128; 3.463393;, + -0.319025; 1.948128; 3.463393;, + -0.319025; 1.948128;-1.034894;, + 2.756796; 1.948128;-1.034894;, + 2.756796; 1.948128; 3.463393;, + 2.756796; 1.948128; 3.463393;, + 2.756796; 1.948128;-1.034894;, + 2.756796;-0.920603;-1.034894;, + 2.756796;-0.920603; 3.463393;, + 2.756796;-0.920603; 3.463393;, + 2.756796;-0.920603;-1.034894;, + -0.319025;-0.920603;-1.034894;, + -0.319025;-0.920603; 3.463393;, + -0.319025;-0.920603;-1.034894;, + 2.756796;-0.920603;-1.034894;, + 2.756796; 1.948128;-1.034894;, + -0.319025; 1.948128;-1.034894;, + 2.756796;-0.920603; 3.463393;, + -0.319025;-0.920603; 3.463393;, + -0.319025; 1.948128; 3.463393;, + 2.756796; 1.948128; 3.463393;, + -5.959183;-0.995505; 7.494431;, + -5.959183;-0.995505; 3.397127;, + -5.959183;10.632981; 3.397127;, + -5.959183;10.632981; 7.494431;, + -5.959183;10.632981; 7.494431;, + -5.959183;10.632981; 3.397127;, + 2.875628;10.632979; 3.397127;, + 2.875628;10.632979; 7.494431;, + 2.875628;10.632979; 7.494431;, + 2.875628;10.632979; 3.397127;, + 2.875628;-0.995506; 3.397127;, + 2.875628;-0.995506; 7.494431;, + 2.875628;-0.995506; 7.494431;, + 2.875628;-0.995506; 3.397127;, + -5.959183;-0.995505; 3.397127;, + -5.959183;-0.995505; 7.494431;, + -5.959183;-0.995505; 3.397127;, + 2.875628;-0.995506; 3.397127;, + 2.875628;10.632979; 3.397127;, + -5.959183;10.632981; 3.397127;, + 2.875628;-0.995506; 7.494431;, + -5.959183;-0.995505; 7.494431;, + -5.959183;10.632981; 7.494431;, + 2.875628;10.632979; 7.494431;, + -4.677953;-5.640978; 8.305634;, + -4.677953;-5.640978; 4.812226;, + -4.677955;-0.893501; 4.812226;, + -4.677955;-0.893501; 8.305634;, + -4.677955;-0.893501; 8.305634;, + -4.677955;-0.893501; 4.812226;, + 1.650862;-0.893501; 4.812226;, + 1.650862;-0.893501; 8.305634;, + 1.650862;-0.893501; 8.305634;, + 1.650862;-0.893501; 4.812226;, + 1.650864;-5.640978; 4.812226;, + 1.650864;-5.640978; 8.305634;, + 1.650864;-5.640978; 8.305634;, + 1.650864;-5.640978; 4.812226;, + -4.677953;-5.640978; 4.812226;, + -4.677953;-5.640978; 8.305634;, + -4.677953;-5.640978; 4.812226;, + 1.650864;-5.640978; 4.812226;, + 1.650862;-0.893501; 4.812226;, + -4.677955;-0.893501; 4.812226;, + 1.650864;-5.640978; 8.305634;, + -4.677953;-5.640978; 8.305634;, + -4.677955;-0.893501; 8.305634;, + 1.650862;-0.893501; 8.305634;, + 2.465974;-2.723090; 7.515670;, + 1.633924;-2.723089; 7.515670;, + 1.633923;-3.555140; 7.515670;, + 2.465973;-3.555141; 7.515670;, + 2.465974;-2.723090; 8.864790;, + 2.465974;-2.723090; 7.515670;, + 2.465973;-3.555141; 7.515670;, + 2.465973;-3.555141; 8.864790;, + 1.633923;-3.555140; 8.864790;, + 1.633923;-3.555140; 7.515670;, + 1.633924;-2.723089; 7.515670;, + 1.633924;-2.723089; 8.864790;, + 1.633924;-2.723089; 8.864790;, + 2.465974;-2.723090; 8.864790;, + 2.465973;-3.555141; 8.864790;, + 1.633923;-3.555140; 8.864790;, + 1.633924;-2.723089; 8.864790;, + 1.633924;-2.723089; 7.515670;, + 2.465974;-2.723090; 7.515670;, + 2.465974;-2.723090; 8.864790;, + 2.465973;-3.555141; 8.864790;, + 2.465973;-3.555141; 7.515670;, + 1.633923;-3.555140; 7.515670;, + 1.633923;-3.555140; 8.864790;, + -5.710455;-0.988127; 3.463393;, + -5.710455;-0.988127;-1.034894;, + -5.710455; 1.880604;-1.034894;, + -5.710455; 1.880604; 3.463393;, + -5.710455; 1.880604; 3.463393;, + -5.710455; 1.880604;-1.034894;, + -2.695819; 1.880604;-1.034894;, + -2.695819; 1.880604; 3.463393;, + -2.695819; 1.880604; 3.463393;, + -2.695819; 1.880604;-1.034894;, + -2.695819;-0.988127;-1.034894;, + -2.695819;-0.988127; 3.463393;, + -2.695819;-0.988127; 3.463393;, + -2.695819;-0.988127;-1.034894;, + -5.710455;-0.988127;-1.034894;, + -5.710455;-0.988127; 3.463393;, + -5.710455;-0.988127;-1.034894;, + -2.695819;-0.988127;-1.034894;, + -2.695819; 1.880604;-1.034894;, + -5.710455; 1.880604;-1.034894;, + -2.695819;-0.988127; 3.463393;, + -5.710455;-0.988127; 3.463393;, + -5.710455; 1.880604; 3.463393;, + -2.695819; 1.880604; 3.463393;, + -5.946746; 7.263296; 3.463393;, + -5.946746; 7.263296;-1.034894;, + -5.946746;10.132029;-1.034894;, + -5.946746;10.132029; 3.463393;, + -5.946746;10.132029; 3.463393;, + -5.946746;10.132029;-1.034894;, + -2.932109;10.132029;-1.034894;, + -2.932109;10.132029; 3.463393;, + -2.932109;10.132029; 3.463393;, + -2.932109;10.132029;-1.034894;, + -2.932109; 7.263296;-1.034894;, + -2.932109; 7.263296; 3.463393;, + -2.932109; 7.263296; 3.463393;, + -2.932109; 7.263296;-1.034894;, + -5.946746; 7.263296;-1.034894;, + -5.946746; 7.263296; 3.463393;, + -5.946746; 7.263296;-1.034894;, + -2.932109; 7.263296;-1.034894;, + -2.932109;10.132029;-1.034894;, + -5.946746;10.132029;-1.034894;, + -2.932109; 7.263296; 3.463393;, + -5.946746; 7.263296; 3.463393;, + -5.946746;10.132029; 3.463393;, + -2.932109;10.132029; 3.463393;, + -0.195168; 7.173268; 3.463393;, + -0.195168; 7.173268;-1.034894;, + -0.195168;10.042000;-1.034894;, + -0.195168;10.042000; 3.463393;, + -0.195168;10.042000; 3.463393;, + -0.195168;10.042000;-1.034894;, + 2.880652;10.042000;-1.034894;, + 2.880652;10.042000; 3.463393;, + 2.880652;10.042000; 3.463393;, + 2.880652;10.042000;-1.034894;, + 2.880652; 7.173268;-1.034894;, + 2.880652; 7.173268; 3.463393;, + 2.880652; 7.173268; 3.463393;, + 2.880652; 7.173268;-1.034894;, + -0.195168; 7.173268;-1.034894;, + -0.195168; 7.173268; 3.463393;, + -0.195168; 7.173268;-1.034894;, + 2.880652; 7.173268;-1.034894;, + 2.880652;10.042000;-1.034894;, + -0.195168;10.042000;-1.034894;, + 2.880652; 7.173268; 3.463393;, + -0.195168; 7.173268; 3.463393;, + -0.195168;10.042000; 3.463393;, + 2.880652;10.042000; 3.463393;, + -4.625976;-2.723081; 7.515670;, + -5.458026;-2.723080; 7.515670;, + -5.458027;-3.555131; 7.515670;, + -4.625977;-3.555132; 7.515670;, + -4.625976;-2.723081; 8.864790;, + -4.625976;-2.723081; 7.515670;, + -4.625977;-3.555132; 7.515670;, + -4.625977;-3.555132; 8.864790;, + -5.458027;-3.555131; 8.864790;, + -5.458027;-3.555131; 7.515670;, + -5.458026;-2.723080; 7.515670;, + -5.458026;-2.723080; 8.864790;, + -5.458026;-2.723080; 8.864790;, + -4.625976;-2.723081; 8.864790;, + -4.625977;-3.555132; 8.864790;, + -5.458027;-3.555131; 8.864790;, + -5.458026;-2.723080; 8.864790;, + -5.458026;-2.723080; 7.515670;, + -4.625976;-2.723081; 7.515670;, + -4.625976;-2.723081; 8.864790;, + -4.625977;-3.555132; 8.864790;, + -4.625977;-3.555132; 7.515670;, + -5.458027;-3.555131; 7.515670;, + -5.458027;-3.555131; 8.864790;; + 48; + 4;0,1,2,3;, + 4;4,5,6,7;, + 4;8,9,10,11;, + 4;12,13,14,15;, + 4;16,17,18,19;, + 4;20,21,22,23;, + 4;24,25,26,27;, + 4;28,29,30,31;, + 4;32,33,34,35;, + 4;36,37,38,39;, + 4;40,41,42,43;, + 4;44,45,46,47;, + 4;48,49,50,51;, + 4;52,53,54,55;, + 4;56,57,58,59;, + 4;60,61,62,63;, + 4;64,65,66,67;, + 4;68,69,70,71;, + 4;72,73,74,75;, + 4;76,77,78,79;, + 4;80,81,82,83;, + 4;84,85,86,87;, + 4;88,89,90,91;, + 4;92,93,94,95;, + 4;96,97,98,99;, + 4;100,101,102,103;, + 4;104,105,106,107;, + 4;108,109,110,111;, + 4;112,113,114,115;, + 4;116,117,118,119;, + 4;120,121,122,123;, + 4;124,125,126,127;, + 4;128,129,130,131;, + 4;132,133,134,135;, + 4;136,137,138,139;, + 4;140,141,142,143;, + 4;144,145,146,147;, + 4;148,149,150,151;, + 4;152,153,154,155;, + 4;156,157,158,159;, + 4;160,161,162,163;, + 4;164,165,166,167;, + 4;168,169,170,171;, + 4;172,173,174,175;, + 4;176,177,178,179;, + 4;180,181,182,183;, + 4;184,185,186,187;, + 4;188,189,190,191;; + MeshNormals { // Cow normals + 48; + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000001;-1.000000; 0.000000;, + 0.000001; 1.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 1.000000; 0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 0.000000;-1.000000;, + -0.000001;-1.000000; 0.000000;, + 0.000001; 1.000000; 0.000000;; + 48; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;, + 4;41,41,41,41;, + 4;42,42,42,42;, + 4;43,43,43,43;, + 4;44,44,44,44;, + 4;45,45,45,45;, + 4;46,46,46,46;, + 4;47,47,47,47;; + } // End of Cow normals + MeshTextureCoords { // Cow UV coordinates + 192; + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.281250; 0.437500;, + 0.437500; 0.437500;, + 0.437500; 1.000000;, + 0.281250; 1.000000;, + 0.812500; 0.125000;, + 0.812500; 0.437500;, + 0.625000; 0.437500;, + 0.625000; 0.125000;, + 0.593750; 0.437500;, + 0.765625; 0.437500;, + 0.765625; 1.000000;, + 0.593750; 1.000000;, + 0.625000; 0.125000;, + 0.625000; 0.437500;, + 0.437500; 0.437500;, + 0.437500; 0.125000;, + 0.437500; 0.437500;, + 0.593750; 0.437500;, + 0.593750; 1.000000;, + 0.437500; 1.000000;, + 0.765625; 0.437500;, + 0.968750; 0.437500;, + 0.968750; 1.000000;, + 0.765625; 1.000000;, + 0.093750; 0.187500;, + 0.093750; 0.437500;, + 0.000000; 0.437500;, + 0.000000; 0.187500;, + 0.437500; 0.187500;, + 0.437500; 0.437500;, + 0.320312; 0.437500;, + 0.320312; 0.187500;, + 0.320312; 0.187500;, + 0.320312; 0.437500;, + 0.218750; 0.437500;, + 0.218750; 0.187500;, + 0.218750; 0.187500;, + 0.218750; 0.437500;, + 0.093750; 0.437500;, + 0.093750; 0.187500;, + 0.218750; 0.000000;, + 0.320312; 0.000000;, + 0.320312; 0.187500;, + 0.218750; 0.187500;, + 0.218750; 0.187500;, + 0.093750; 0.187500;, + 0.093750; 0.000000;, + 0.218750; 0.000000;, + 0.375000; 0.000000;, + 0.375000; 0.031250;, + 0.359375; 0.031250;, + 0.359375; 0.000000;, + 0.359375; 0.031250;, + 0.359375; 0.125000;, + 0.343750; 0.125000;, + 0.343750; 0.031250;, + 0.406250; 0.031250;, + 0.406250; 0.125000;, + 0.390625; 0.125000;, + 0.390625; 0.031250;, + 0.375000; 0.000000;, + 0.390625; 0.000000;, + 0.390625; 0.031250;, + 0.375000; 0.031250;, + 0.390625; 0.031250;, + 0.390625; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.031250;, + 0.375000; 0.031250;, + 0.375000; 0.125000;, + 0.359375; 0.125000;, + 0.359375; 0.031250;, + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.000000; 1.000000;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.375000; 0.000000;, + 0.375000; 0.031250;, + 0.359375; 0.031250;, + 0.359375; 0.000000;, + 0.359375; 0.031250;, + 0.359375; 0.125000;, + 0.343750; 0.125000;, + 0.343750; 0.031250;, + 0.406250; 0.031250;, + 0.406250; 0.125000;, + 0.390625; 0.125000;, + 0.390625; 0.031250;, + 0.375000; 0.000000;, + 0.390625; 0.000000;, + 0.390625; 0.031250;, + 0.375000; 0.031250;, + 0.390625; 0.031250;, + 0.390625; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.031250;, + 0.375000; 0.031250;, + 0.375000; 0.125000;, + 0.359375; 0.125000;, + 0.359375; 0.031250;; + } // End of Cow UV coordinates + MeshMaterialList { // Cow material list + 1; + 48; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Cow_Mat { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.140000; 0.140000; 0.140000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"cow.png";} + } + } // End of Cow material list + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Cow_Rig_Leg_F_R"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + -3.178134, 6.244072, 0.475147, 1.000000;; + } // End of Cow_Rig_Leg_F_R skin weights + SkinWeights { + "Cow_Rig_Root"; + 0; + -1.000000, 0.000000,-0.000001, 0.000000, + -0.000001,-0.000000, 1.000000, 0.000000, + 0.000000, 1.811645, 0.000000, 0.000000, + -1.449203, 1.832093,-3.843606, 1.000000;; + } // End of Cow_Rig_Root skin weights + SkinWeights { + "Cow_Rig_Leg_B_R"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + -3.178136, 6.159972, 8.649004, 1.000000;; + } // End of Cow_Rig_Leg_B_R skin weights + SkinWeights { + "Cow_Rig_Leg_B_L"; + 24; + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + 0.311742, 6.159972, 8.649005, 1.000000;; + } // End of Cow_Rig_Leg_B_L skin weights + SkinWeights { + "Cow_Rig_Body"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000001, 0.000000, 0.000000, + -0.000001,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.811645, 0.000000, + -1.449203, 9.262848,-9.577414, 1.000000;; + } // End of Cow_Rig_Body skin weights + SkinWeights { + "Cow_Rig_Head"; + 72; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000001, 0.000005, 0.000000, + -0.000001,-0.999933, 0.011550, 0.000000, + 0.000009, 0.020925, 1.811524, 0.000000, + -1.472329,-1.368432,-11.802789, 1.000000;; + } // End of Cow_Rig_Head skin weights + SkinWeights { + "Cow_Rig_Leg_F_L"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.000000, 0.000000, 0.000001, 0.000000, + -0.000001,-0.000000,-1.000000, 0.000000, + -0.000000,-1.811645, 0.000000, 0.000000, + 0.311744, 6.244072, 0.475148, 1.000000;; + } // End of Cow_Rig_Leg_F_L skin weights + } // End of Cow mesh + } // End of Cow + } // End of Cow_Rig +} // End of Root +AnimationSet Global { + Animation { + {Cow} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 1;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 2;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 3;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 4;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 5;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 6;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 7;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 8;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 9;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 10;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 11;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 12;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 13;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 14;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 15;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 16;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 17;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 18;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 19;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 20;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 21;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 22;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 23;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 24;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 25;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 26;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 27;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 28;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 29;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 30;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 31;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 32;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 33;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 34;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 35;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 36;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 37;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 38;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 39;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 40;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 41;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 42;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 43;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 44;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 45;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 46;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 47;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 48;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 49;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 50;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 51;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 52;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 53;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 54;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 55;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 56;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 57;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 58;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 59;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 60;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 61;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 62;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 63;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 64;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 65;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 66;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 67;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 68;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 69;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 70;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 71;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 72;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 73;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 74;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 75;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 76;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 77;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 78;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 79;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 80;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 81;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 82;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 83;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 84;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 85;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 86;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 87;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 88;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 89;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 90;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 91;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 92;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 93;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 94;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 95;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 96;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 97;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 98;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 99;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 100;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 101;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 102;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 103;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 104;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 105;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 106;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 107;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 108;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 109;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 110;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 111;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 112;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 113;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 114;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 115;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 116;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 117;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 118;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 119;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 120;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 121;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 122;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 123;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 124;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 125;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 126;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 127;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 128;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 129;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 130;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 131;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 132;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 133;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 134;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 135;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 136;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 137;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 138;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 139;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 140;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 141;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 142;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 143;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 144;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 145;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 146;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 147;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 148;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 149;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 150;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 151;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 152;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 153;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 154;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 155;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 156;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 157;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 158;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 159;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 160;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 161;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 162;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 163;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 164;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 165;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 166;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 167;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 168;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 169;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 170;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 171;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 172;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 173;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 174;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 175;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 176;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 177;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 178;4;-0.000001, 0.000000, 0.000000, 1.000000;;, + 179;4;-0.000001, 0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.811645;;, + 1;3; 1.000000, 1.000000, 1.811645;;, + 2;3; 1.000000, 1.000000, 1.811645;;, + 3;3; 1.000000, 1.000000, 1.811645;;, + 4;3; 1.000000, 1.000000, 1.811645;;, + 5;3; 1.000000, 1.000000, 1.811645;;, + 6;3; 1.000000, 1.000000, 1.811645;;, + 7;3; 1.000000, 1.000000, 1.811645;;, + 8;3; 1.000000, 1.000000, 1.811645;;, + 9;3; 1.000000, 1.000000, 1.811645;;, + 10;3; 1.000000, 1.000000, 1.811645;;, + 11;3; 1.000000, 1.000000, 1.811645;;, + 12;3; 1.000000, 1.000000, 1.811645;;, + 13;3; 1.000000, 1.000000, 1.811645;;, + 14;3; 1.000000, 1.000000, 1.811645;;, + 15;3; 1.000000, 1.000000, 1.811645;;, + 16;3; 1.000000, 1.000000, 1.811645;;, + 17;3; 1.000000, 1.000000, 1.811645;;, + 18;3; 1.000000, 1.000000, 1.811645;;, + 19;3; 1.000000, 1.000000, 1.811645;;, + 20;3; 1.000000, 1.000000, 1.811645;;, + 21;3; 1.000000, 1.000000, 1.811645;;, + 22;3; 1.000000, 1.000000, 1.811645;;, + 23;3; 1.000000, 1.000000, 1.811645;;, + 24;3; 1.000000, 1.000000, 1.811645;;, + 25;3; 1.000000, 1.000000, 1.811645;;, + 26;3; 1.000000, 1.000000, 1.811645;;, + 27;3; 1.000000, 1.000000, 1.811645;;, + 28;3; 1.000000, 1.000000, 1.811645;;, + 29;3; 1.000000, 1.000000, 1.811645;;, + 30;3; 1.000000, 1.000000, 1.811645;;, + 31;3; 1.000000, 1.000000, 1.811645;;, + 32;3; 1.000000, 1.000000, 1.811645;;, + 33;3; 1.000000, 1.000000, 1.811645;;, + 34;3; 1.000000, 1.000000, 1.811645;;, + 35;3; 1.000000, 1.000000, 1.811645;;, + 36;3; 1.000000, 1.000000, 1.811645;;, + 37;3; 1.000000, 1.000000, 1.811645;;, + 38;3; 1.000000, 1.000000, 1.811645;;, + 39;3; 1.000000, 1.000000, 1.811645;;, + 40;3; 1.000000, 1.000000, 1.811645;;, + 41;3; 1.000000, 1.000000, 1.811645;;, + 42;3; 1.000000, 1.000000, 1.811645;;, + 43;3; 1.000000, 1.000000, 1.811645;;, + 44;3; 1.000000, 1.000000, 1.811645;;, + 45;3; 1.000000, 1.000000, 1.811645;;, + 46;3; 1.000000, 1.000000, 1.811645;;, + 47;3; 1.000000, 1.000000, 1.811645;;, + 48;3; 1.000000, 1.000000, 1.811645;;, + 49;3; 1.000000, 1.000000, 1.811645;;, + 50;3; 1.000000, 1.000000, 1.811645;;, + 51;3; 1.000000, 1.000000, 1.811645;;, + 52;3; 1.000000, 1.000000, 1.811645;;, + 53;3; 1.000000, 1.000000, 1.811645;;, + 54;3; 1.000000, 1.000000, 1.811645;;, + 55;3; 1.000000, 1.000000, 1.811645;;, + 56;3; 1.000000, 1.000000, 1.811645;;, + 57;3; 1.000000, 1.000000, 1.811645;;, + 58;3; 1.000000, 1.000000, 1.811645;;, + 59;3; 1.000000, 1.000000, 1.811645;;, + 60;3; 1.000000, 1.000000, 1.811645;;, + 61;3; 1.000000, 1.000000, 1.811645;;, + 62;3; 1.000000, 1.000000, 1.811645;;, + 63;3; 1.000000, 1.000000, 1.811645;;, + 64;3; 1.000000, 1.000000, 1.811645;;, + 65;3; 1.000000, 1.000000, 1.811645;;, + 66;3; 1.000000, 1.000000, 1.811645;;, + 67;3; 1.000000, 1.000000, 1.811645;;, + 68;3; 1.000000, 1.000000, 1.811645;;, + 69;3; 1.000000, 1.000000, 1.811645;;, + 70;3; 1.000000, 1.000000, 1.811645;;, + 71;3; 1.000000, 1.000000, 1.811645;;, + 72;3; 1.000000, 1.000000, 1.811645;;, + 73;3; 1.000000, 1.000000, 1.811645;;, + 74;3; 1.000000, 1.000000, 1.811645;;, + 75;3; 1.000000, 1.000000, 1.811645;;, + 76;3; 1.000000, 1.000000, 1.811645;;, + 77;3; 1.000000, 1.000000, 1.811645;;, + 78;3; 1.000000, 1.000000, 1.811645;;, + 79;3; 1.000000, 1.000000, 1.811645;;, + 80;3; 1.000000, 1.000000, 1.811645;;, + 81;3; 1.000000, 1.000000, 1.811645;;, + 82;3; 1.000000, 1.000000, 1.811645;;, + 83;3; 1.000000, 1.000000, 1.811645;;, + 84;3; 1.000000, 1.000000, 1.811645;;, + 85;3; 1.000000, 1.000000, 1.811645;;, + 86;3; 1.000000, 1.000000, 1.811645;;, + 87;3; 1.000000, 1.000000, 1.811645;;, + 88;3; 1.000000, 1.000000, 1.811645;;, + 89;3; 1.000000, 1.000000, 1.811645;;, + 90;3; 1.000000, 1.000000, 1.811645;;, + 91;3; 1.000000, 1.000000, 1.811645;;, + 92;3; 1.000000, 1.000000, 1.811645;;, + 93;3; 1.000000, 1.000000, 1.811645;;, + 94;3; 1.000000, 1.000000, 1.811645;;, + 95;3; 1.000000, 1.000000, 1.811645;;, + 96;3; 1.000000, 1.000000, 1.811645;;, + 97;3; 1.000000, 1.000000, 1.811645;;, + 98;3; 1.000000, 1.000000, 1.811645;;, + 99;3; 1.000000, 1.000000, 1.811645;;, + 100;3; 1.000000, 1.000000, 1.811645;;, + 101;3; 1.000000, 1.000000, 1.811645;;, + 102;3; 1.000000, 1.000000, 1.811645;;, + 103;3; 1.000000, 1.000000, 1.811645;;, + 104;3; 1.000000, 1.000000, 1.811645;;, + 105;3; 1.000000, 1.000000, 1.811645;;, + 106;3; 1.000000, 1.000000, 1.811645;;, + 107;3; 1.000000, 1.000000, 1.811645;;, + 108;3; 1.000000, 1.000000, 1.811645;;, + 109;3; 1.000000, 1.000000, 1.811645;;, + 110;3; 1.000000, 1.000000, 1.811645;;, + 111;3; 1.000000, 1.000000, 1.811645;;, + 112;3; 1.000000, 1.000000, 1.811645;;, + 113;3; 1.000000, 1.000000, 1.811645;;, + 114;3; 1.000000, 1.000000, 1.811645;;, + 115;3; 1.000000, 1.000000, 1.811645;;, + 116;3; 1.000000, 1.000000, 1.811645;;, + 117;3; 1.000000, 1.000000, 1.811645;;, + 118;3; 1.000000, 1.000000, 1.811645;;, + 119;3; 1.000000, 1.000000, 1.811645;;, + 120;3; 1.000000, 1.000000, 1.811645;;, + 121;3; 1.000000, 1.000000, 1.811645;;, + 122;3; 1.000000, 1.000000, 1.811645;;, + 123;3; 1.000000, 1.000000, 1.811645;;, + 124;3; 1.000000, 1.000000, 1.811645;;, + 125;3; 1.000000, 1.000000, 1.811645;;, + 126;3; 1.000000, 1.000000, 1.811645;;, + 127;3; 1.000000, 1.000000, 1.811645;;, + 128;3; 1.000000, 1.000000, 1.811645;;, + 129;3; 1.000000, 1.000000, 1.811645;;, + 130;3; 1.000000, 1.000000, 1.811645;;, + 131;3; 1.000000, 1.000000, 1.811645;;, + 132;3; 1.000000, 1.000000, 1.811645;;, + 133;3; 1.000000, 1.000000, 1.811645;;, + 134;3; 1.000000, 1.000000, 1.811645;;, + 135;3; 1.000000, 1.000000, 1.811645;;, + 136;3; 1.000000, 1.000000, 1.811645;;, + 137;3; 1.000000, 1.000000, 1.811645;;, + 138;3; 1.000000, 1.000000, 1.811645;;, + 139;3; 1.000000, 1.000000, 1.811645;;, + 140;3; 1.000000, 1.000000, 1.811645;;, + 141;3; 1.000000, 1.000000, 1.811645;;, + 142;3; 1.000000, 1.000000, 1.811645;;, + 143;3; 1.000000, 1.000000, 1.811645;;, + 144;3; 1.000000, 1.000000, 1.811645;;, + 145;3; 1.000000, 1.000000, 1.811645;;, + 146;3; 1.000000, 1.000000, 1.811645;;, + 147;3; 1.000000, 1.000000, 1.811645;;, + 148;3; 1.000000, 1.000000, 1.811645;;, + 149;3; 1.000000, 1.000000, 1.811645;;, + 150;3; 1.000000, 1.000000, 1.811645;;, + 151;3; 1.000000, 1.000000, 1.811645;;, + 152;3; 1.000000, 1.000000, 1.811645;;, + 153;3; 1.000000, 1.000000, 1.811645;;, + 154;3; 1.000000, 1.000000, 1.811645;;, + 155;3; 1.000000, 1.000000, 1.811645;;, + 156;3; 1.000000, 1.000000, 1.811645;;, + 157;3; 1.000000, 1.000000, 1.811645;;, + 158;3; 1.000000, 1.000000, 1.811645;;, + 159;3; 1.000000, 1.000000, 1.811645;;, + 160;3; 1.000000, 1.000000, 1.811645;;, + 161;3; 1.000000, 1.000000, 1.811645;;, + 162;3; 1.000000, 1.000000, 1.811645;;, + 163;3; 1.000000, 1.000000, 1.811645;;, + 164;3; 1.000000, 1.000000, 1.811645;;, + 165;3; 1.000000, 1.000000, 1.811645;;, + 166;3; 1.000000, 1.000000, 1.811645;;, + 167;3; 1.000000, 1.000000, 1.811645;;, + 168;3; 1.000000, 1.000000, 1.811645;;, + 169;3; 1.000000, 1.000000, 1.811645;;, + 170;3; 1.000000, 1.000000, 1.811645;;, + 171;3; 1.000000, 1.000000, 1.811645;;, + 172;3; 1.000000, 1.000000, 1.811645;;, + 173;3; 1.000000, 1.000000, 1.811645;;, + 174;3; 1.000000, 1.000000, 1.811645;;, + 175;3; 1.000000, 1.000000, 1.811645;;, + 176;3; 1.000000, 1.000000, 1.811645;;, + 177;3; 1.000000, 1.000000, 1.811645;;, + 178;3; 1.000000, 1.000000, 1.811645;;, + 179;3; 1.000000, 1.000000, 1.811645;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.449203, 3.843606, 1.832092;;, + 1;3;-1.449203, 3.843606, 1.832092;;, + 2;3;-1.449203, 3.843606, 1.832092;;, + 3;3;-1.449203, 3.843606, 1.832092;;, + 4;3;-1.449203, 3.843606, 1.832092;;, + 5;3;-1.449203, 3.843606, 1.832092;;, + 6;3;-1.449203, 3.843606, 1.832092;;, + 7;3;-1.449203, 3.843606, 1.832092;;, + 8;3;-1.449203, 3.843606, 1.832092;;, + 9;3;-1.449203, 3.843606, 1.832092;;, + 10;3;-1.449203, 3.843606, 1.832092;;, + 11;3;-1.449203, 3.843606, 1.832092;;, + 12;3;-1.449203, 3.843606, 1.832092;;, + 13;3;-1.449203, 3.843606, 1.832092;;, + 14;3;-1.449203, 3.843606, 1.832092;;, + 15;3;-1.449203, 3.843606, 1.832092;;, + 16;3;-1.449203, 3.843606, 1.832092;;, + 17;3;-1.449203, 3.843606, 1.832092;;, + 18;3;-1.449203, 3.843606, 1.832092;;, + 19;3;-1.449203, 3.843606, 1.832092;;, + 20;3;-1.449203, 3.843606, 1.832092;;, + 21;3;-1.449203, 3.843606, 1.832092;;, + 22;3;-1.449203, 3.843606, 1.832092;;, + 23;3;-1.449203, 3.843606, 1.832092;;, + 24;3;-1.449203, 3.843606, 1.832092;;, + 25;3;-1.449203, 3.843606, 1.832092;;, + 26;3;-1.449203, 3.843606, 1.832092;;, + 27;3;-1.449203, 3.843606, 1.832092;;, + 28;3;-1.449203, 3.843606, 1.832092;;, + 29;3;-1.449203, 3.843606, 1.832092;;, + 30;3;-1.449203, 3.843606, 1.832092;;, + 31;3;-1.449203, 3.843606, 1.832092;;, + 32;3;-1.449203, 3.843606, 1.832092;;, + 33;3;-1.449203, 3.843606, 1.832092;;, + 34;3;-1.449203, 3.843606, 1.832092;;, + 35;3;-1.449203, 3.843606, 1.832092;;, + 36;3;-1.449203, 3.843606, 1.832092;;, + 37;3;-1.449203, 3.843606, 1.832092;;, + 38;3;-1.449203, 3.843606, 1.832092;;, + 39;3;-1.449203, 3.843606, 1.832092;;, + 40;3;-1.449203, 3.843606, 1.832092;;, + 41;3;-1.449203, 3.843606, 1.832092;;, + 42;3;-1.449203, 3.843606, 1.832092;;, + 43;3;-1.449203, 3.843606, 1.832092;;, + 44;3;-1.449203, 3.843606, 1.832092;;, + 45;3;-1.449203, 3.843606, 1.832092;;, + 46;3;-1.449203, 3.843606, 1.832092;;, + 47;3;-1.449203, 3.843606, 1.832092;;, + 48;3;-1.449203, 3.843606, 1.832092;;, + 49;3;-1.449203, 3.843606, 1.832092;;, + 50;3;-1.449203, 3.843606, 1.832092;;, + 51;3;-1.449203, 3.843606, 1.832092;;, + 52;3;-1.449203, 3.843606, 1.832092;;, + 53;3;-1.449203, 3.843606, 1.832092;;, + 54;3;-1.449203, 3.843606, 1.832092;;, + 55;3;-1.449203, 3.843606, 1.832092;;, + 56;3;-1.449203, 3.843606, 1.832092;;, + 57;3;-1.449203, 3.843606, 1.832092;;, + 58;3;-1.449203, 3.843606, 1.832092;;, + 59;3;-1.449203, 3.843606, 1.832092;;, + 60;3;-1.449203, 3.843606, 1.832092;;, + 61;3;-1.449203, 3.843606, 1.832092;;, + 62;3;-1.449203, 3.843606, 1.832092;;, + 63;3;-1.449203, 3.843606, 1.832092;;, + 64;3;-1.449203, 3.843606, 1.832092;;, + 65;3;-1.449203, 3.843606, 1.832092;;, + 66;3;-1.449203, 3.843606, 1.832092;;, + 67;3;-1.449203, 3.843606, 1.832092;;, + 68;3;-1.449203, 3.843606, 1.832092;;, + 69;3;-1.449203, 3.843606, 1.832092;;, + 70;3;-1.449203, 3.843606, 1.832092;;, + 71;3;-1.449203, 3.843606, 1.832092;;, + 72;3;-1.449203, 3.843606, 1.832092;;, + 73;3;-1.449203, 3.843606, 1.832092;;, + 74;3;-1.449203, 3.843606, 1.832092;;, + 75;3;-1.449203, 3.843606, 1.832092;;, + 76;3;-1.449203, 3.843606, 1.832092;;, + 77;3;-1.449203, 3.843606, 1.832092;;, + 78;3;-1.449203, 3.843606, 1.832092;;, + 79;3;-1.449203, 3.843606, 1.832092;;, + 80;3;-1.449203, 3.843606, 1.832092;;, + 81;3;-1.449203, 3.843606, 1.832092;;, + 82;3;-1.449203, 3.843606, 1.832092;;, + 83;3;-1.449203, 3.843606, 1.832092;;, + 84;3;-1.449203, 3.843606, 1.832092;;, + 85;3;-1.449203, 3.843606, 1.832092;;, + 86;3;-1.449203, 3.843606, 1.832092;;, + 87;3;-1.449203, 3.843606, 1.832092;;, + 88;3;-1.449203, 3.843606, 1.832092;;, + 89;3;-1.449203, 3.843606, 1.832092;;, + 90;3;-1.449203, 3.843606, 1.832092;;, + 91;3;-1.449203, 3.843606, 1.832092;;, + 92;3;-1.449203, 3.843606, 1.832092;;, + 93;3;-1.449203, 3.843606, 1.832092;;, + 94;3;-1.449203, 3.843606, 1.832092;;, + 95;3;-1.449203, 3.843606, 1.832092;;, + 96;3;-1.449203, 3.843606, 1.832092;;, + 97;3;-1.449203, 3.843606, 1.832092;;, + 98;3;-1.449203, 3.843606, 1.832092;;, + 99;3;-1.449203, 3.843606, 1.832092;;, + 100;3;-1.449203, 3.843606, 1.832092;;, + 101;3;-1.449203, 3.843606, 1.832092;;, + 102;3;-1.449203, 3.843606, 1.832092;;, + 103;3;-1.449203, 3.843606, 1.832092;;, + 104;3;-1.449203, 3.843606, 1.832092;;, + 105;3;-1.449203, 3.843606, 1.832092;;, + 106;3;-1.449203, 3.843606, 1.832092;;, + 107;3;-1.449203, 3.843606, 1.832092;;, + 108;3;-1.449203, 3.843606, 1.832092;;, + 109;3;-1.449203, 3.843606, 1.832092;;, + 110;3;-1.449203, 3.843606, 1.832092;;, + 111;3;-1.449203, 3.843606, 1.832092;;, + 112;3;-1.449203, 3.843606, 1.832092;;, + 113;3;-1.449203, 3.843606, 1.832092;;, + 114;3;-1.449203, 3.843606, 1.832092;;, + 115;3;-1.449203, 3.843606, 1.832092;;, + 116;3;-1.449203, 3.843606, 1.832092;;, + 117;3;-1.449203, 3.843606, 1.832092;;, + 118;3;-1.449203, 3.843606, 1.832092;;, + 119;3;-1.449203, 3.843606, 1.832092;;, + 120;3;-1.449203, 3.843606, 1.832092;;, + 121;3;-1.449203, 3.843606, 1.832092;;, + 122;3;-1.449203, 3.843606, 1.832092;;, + 123;3;-1.449203, 3.843606, 1.832092;;, + 124;3;-1.449203, 3.843606, 1.832092;;, + 125;3;-1.449203, 3.843606, 1.832092;;, + 126;3;-1.449203, 3.843606, 1.832092;;, + 127;3;-1.449203, 3.843606, 1.832092;;, + 128;3;-1.449203, 3.843606, 1.832092;;, + 129;3;-1.449203, 3.843606, 1.832092;;, + 130;3;-1.449203, 3.843606, 1.832092;;, + 131;3;-1.449203, 3.843606, 1.832092;;, + 132;3;-1.449203, 3.843606, 1.832092;;, + 133;3;-1.449203, 3.843606, 1.832092;;, + 134;3;-1.449203, 3.843606, 1.832092;;, + 135;3;-1.449203, 3.843606, 1.832092;;, + 136;3;-1.449203, 3.843606, 1.832092;;, + 137;3;-1.449203, 3.843606, 1.832092;;, + 138;3;-1.449203, 3.843606, 1.832092;;, + 139;3;-1.449203, 3.843606, 1.832092;;, + 140;3;-1.449203, 3.843606, 1.832092;;, + 141;3;-1.449203, 3.843606, 1.832092;;, + 142;3;-1.449203, 3.843606, 1.832092;;, + 143;3;-1.449203, 3.843606, 1.832092;;, + 144;3;-1.449203, 3.843606, 1.832092;;, + 145;3;-1.449203, 3.843606, 1.832092;;, + 146;3;-1.449203, 3.843606, 1.832092;;, + 147;3;-1.449203, 3.843606, 1.832092;;, + 148;3;-1.449203, 3.843606, 1.832092;;, + 149;3;-1.449203, 3.843606, 1.832092;;, + 150;3;-1.449203, 3.843606, 1.832092;;, + 151;3;-1.449203, 3.843606, 1.832092;;, + 152;3;-1.449203, 3.843606, 1.832092;;, + 153;3;-1.449203, 3.843606, 1.832092;;, + 154;3;-1.449203, 3.843606, 1.832092;;, + 155;3;-1.449203, 3.843606, 1.832092;;, + 156;3;-1.449203, 3.843606, 1.832092;;, + 157;3;-1.449203, 3.843606, 1.832092;;, + 158;3;-1.449203, 3.843606, 1.832092;;, + 159;3;-1.449203, 3.843606, 1.832092;;, + 160;3;-1.449203, 3.843606, 1.832092;;, + 161;3;-1.449203, 3.843606, 1.832092;;, + 162;3;-1.449203, 3.843606, 1.832092;;, + 163;3;-1.449203, 3.843606, 1.832092;;, + 164;3;-1.449203, 3.843606, 1.832092;;, + 165;3;-1.449203, 3.843606, 1.832092;;, + 166;3;-1.449203, 3.843606, 1.832092;;, + 167;3;-1.449203, 3.843606, 1.832092;;, + 168;3;-1.449203, 3.843606, 1.832092;;, + 169;3;-1.449203, 3.843606, 1.832092;;, + 170;3;-1.449203, 3.843606, 1.832092;;, + 171;3;-1.449203, 3.843606, 1.832092;;, + 172;3;-1.449203, 3.843606, 1.832092;;, + 173;3;-1.449203, 3.843606, 1.832092;;, + 174;3;-1.449203, 3.843606, 1.832092;;, + 175;3;-1.449203, 3.843606, 1.832092;;, + 176;3;-1.449203, 3.843606, 1.832092;;, + 177;3;-1.449203, 3.843606, 1.832092;;, + 178;3;-1.449203, 3.843606, 1.832092;;, + 179;3;-1.449203, 3.843606, 1.832092;;; + } + } + Animation { + {Cow_Rig} + AnimationKey { // Rotation + 0; + 180; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Cow_Rig_Root} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 158;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 159;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 160;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 163;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 164;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 165;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 166;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 167;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Cow_Rig_Body} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 24;4;-0.707100,-0.707100, 0.000762,-0.000762;;, + 25;4;-0.707081,-0.707081, 0.002981,-0.002981;;, + 26;4;-0.707053,-0.707053, 0.006170,-0.006170;;, + 27;4;-0.707025,-0.707025, 0.009360,-0.009360;;, + 28;4;-0.707006,-0.707006, 0.011578,-0.011578;;, + 29;4;-0.706999,-0.706999, 0.012341,-0.012341;;, + 30;4;-0.707006,-0.707006, 0.011859,-0.011859;;, + 31;4;-0.707025,-0.707025, 0.010366,-0.010366;;, + 32;4;-0.707053,-0.707053, 0.007977,-0.007977;;, + 33;4;-0.707081,-0.707081, 0.005120,-0.005120;;, + 34;4;-0.707100,-0.707100, 0.002338,-0.002338;;, + 35;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 36;4;-0.707100,-0.707100,-0.002338, 0.002338;;, + 37;4;-0.707081,-0.707081,-0.005120, 0.005120;;, + 38;4;-0.707053,-0.707053,-0.007977, 0.007977;;, + 39;4;-0.707025,-0.707025,-0.010366, 0.010366;;, + 40;4;-0.707006,-0.707006,-0.011859, 0.011859;;, + 41;4;-0.706999,-0.706999,-0.012341, 0.012341;;, + 42;4;-0.707003,-0.707003,-0.011912, 0.011912;;, + 43;4;-0.707014,-0.707014,-0.010634, 0.010634;;, + 44;4;-0.707032,-0.707032,-0.008622, 0.008622;;, + 45;4;-0.707053,-0.707053,-0.006170, 0.006170;;, + 46;4;-0.707074,-0.707074,-0.003719, 0.003719;;, + 47;4;-0.707092,-0.707092,-0.001707, 0.001707;;, + 48;4;-0.707103,-0.707103,-0.000428, 0.000428;;, + 49;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 158;4;-0.697711,-0.697711,-0.022700, 0.022700;;, + 159;4;-0.669922,-0.669922,-0.089721, 0.089721;;, + 160;4;-0.627593,-0.627593,-0.191701, 0.191701;;, + 161;4;-0.579576,-0.579576,-0.307439, 0.307439;;, + 162;4;-0.537223,-0.537223,-0.409744, 0.409744;;, + 163;4;-0.509408,-0.509408,-0.477140, 0.477140;;, + 164;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 165;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 166;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 167;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 168;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 169;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 170;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 171;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 172;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 173;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 174;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 175;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 176;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 177;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 178;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 179;4;-0.500000,-0.500000,-0.500000, 0.500000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000,11.409506, 5.419243;;, + 1;3; 0.000000,11.409506, 5.419243;;, + 2;3; 0.000000,11.409506, 5.419243;;, + 3;3; 0.000000,11.409506, 5.419243;;, + 4;3; 0.000000,11.409506, 5.419243;;, + 5;3; 0.000000,11.409506, 5.419243;;, + 6;3; 0.000000,11.409506, 5.419243;;, + 7;3; 0.000000,11.409506, 5.419243;;, + 8;3; 0.000000,11.409506, 5.419243;;, + 9;3; 0.000000,11.409506, 5.419243;;, + 10;3; 0.000000,11.409506, 5.419243;;, + 11;3; 0.000000,11.409506, 5.419243;;, + 12;3; 0.000000,11.409506, 5.419243;;, + 13;3; 0.000000,11.409506, 5.419243;;, + 14;3; 0.000000,11.409506, 5.419243;;, + 15;3; 0.000000,11.409506, 5.419243;;, + 16;3; 0.000000,11.409506, 5.419243;;, + 17;3; 0.000000,11.409506, 5.419243;;, + 18;3; 0.000000,11.409506, 5.419243;;, + 19;3; 0.000000,11.409506, 5.419243;;, + 20;3; 0.000000,11.409506, 5.419243;;, + 21;3; 0.000000,11.409506, 5.419243;;, + 22;3; 0.000000,11.409506, 5.419243;;, + 23;3; 0.000000,11.409506, 5.419243;;, + 24;3; 0.000000,11.409506, 5.419243;;, + 25;3; 0.000000,11.409506, 5.419243;;, + 26;3; 0.000000,11.409506, 5.419243;;, + 27;3; 0.000000,11.409506, 5.419243;;, + 28;3; 0.000000,11.409506, 5.419243;;, + 29;3; 0.000000,11.409506, 5.419243;;, + 30;3; 0.000000,11.409506, 5.419243;;, + 31;3; 0.000000,11.409506, 5.419243;;, + 32;3; 0.000000,11.409506, 5.419243;;, + 33;3; 0.000000,11.409506, 5.419243;;, + 34;3; 0.000000,11.409506, 5.419243;;, + 35;3; 0.000000,11.409506, 5.419243;;, + 36;3; 0.000000,11.409506, 5.419243;;, + 37;3; 0.000000,11.409506, 5.419243;;, + 38;3; 0.000000,11.409506, 5.419243;;, + 39;3; 0.000000,11.409506, 5.419243;;, + 40;3; 0.000000,11.409506, 5.419243;;, + 41;3; 0.000000,11.409506, 5.419243;;, + 42;3; 0.000000,11.409506, 5.419243;;, + 43;3; 0.000000,11.409506, 5.419243;;, + 44;3; 0.000000,11.409506, 5.419243;;, + 45;3; 0.000000,11.409506, 5.419243;;, + 46;3; 0.000000,11.409506, 5.419243;;, + 47;3; 0.000000,11.409506, 5.419243;;, + 48;3; 0.000000,11.409506, 5.419243;;, + 49;3; 0.000000,11.409506, 5.419243;;, + 50;3; 0.000000,11.409506, 5.419243;;, + 51;3; 0.000000,11.409506, 5.419243;;, + 52;3; 0.000000,11.409506, 5.419243;;, + 53;3; 0.000000,11.409506, 5.419243;;, + 54;3; 0.000000,11.409506, 5.419243;;, + 55;3; 0.000000,11.409506, 5.419243;;, + 56;3; 0.000000,11.409506, 5.419243;;, + 57;3; 0.000000,11.409506, 5.419243;;, + 58;3; 0.000000,11.409506, 5.419243;;, + 59;3; 0.000000,11.409506, 5.419243;;, + 60;3; 0.000000,11.409506, 5.419243;;, + 61;3; 0.000000,11.409506, 5.419243;;, + 62;3; 0.000000,11.409506, 5.419243;;, + 63;3; 0.000000,11.409506, 5.419243;;, + 64;3; 0.000000,11.409506, 5.419243;;, + 65;3; 0.000000,11.409506, 5.419243;;, + 66;3; 0.000000,11.409506, 5.419243;;, + 67;3; 0.000000,11.409506, 5.419243;;, + 68;3; 0.000000,11.409506, 5.419243;;, + 69;3; 0.000000,11.409506, 5.419243;;, + 70;3; 0.000000,11.409506, 5.419243;;, + 71;3; 0.000000,11.409506, 5.419243;;, + 72;3; 0.000000,11.409506, 5.419243;;, + 73;3; 0.000000,11.409506, 5.419243;;, + 74;3; 0.000000,11.409506, 5.419243;;, + 75;3; 0.000000,11.409506, 5.419243;;, + 76;3; 0.000000,11.409506, 5.419243;;, + 77;3; 0.000000,11.409506, 5.419243;;, + 78;3; 0.000000,11.409506, 5.419243;;, + 79;3; 0.000000,11.409506, 5.419243;;, + 80;3; 0.000000,11.409506, 5.419243;;, + 81;3; 0.000000,11.409506, 5.419243;;, + 82;3; 0.000000,11.409506, 5.419243;;, + 83;3; 0.000000,11.409506, 5.419243;;, + 84;3; 0.000000,11.409506, 5.419243;;, + 85;3; 0.000000,11.409506, 5.419243;;, + 86;3; 0.000000,11.409506, 5.419243;;, + 87;3; 0.000000,11.409506, 5.419243;;, + 88;3; 0.000000,11.409506, 5.419243;;, + 89;3; 0.000000,11.409506, 5.419243;;, + 90;3; 0.000000,11.409506, 5.419243;;, + 91;3; 0.000000,11.409506, 5.419243;;, + 92;3; 0.000000,11.409506, 5.419243;;, + 93;3; 0.000000,11.409506, 5.419243;;, + 94;3; 0.000000,11.409506, 5.419243;;, + 95;3; 0.000000,11.409506, 5.419243;;, + 96;3; 0.000000,11.409506, 5.419243;;, + 97;3; 0.000000,11.409506, 5.419243;;, + 98;3; 0.000000,11.409506, 5.419243;;, + 99;3; 0.000000,11.409506, 5.419243;;, + 100;3; 0.000000,11.409506, 5.419243;;, + 101;3; 0.000000,11.409506, 5.419243;;, + 102;3; 0.000000,11.409506, 5.419243;;, + 103;3; 0.000000,11.409506, 5.419243;;, + 104;3; 0.000000,11.409506, 5.419243;;, + 105;3; 0.000000,11.409506, 5.419243;;, + 106;3; 0.000000,11.409506, 5.419243;;, + 107;3; 0.000000,11.409506, 5.419243;;, + 108;3; 0.000000,11.409506, 5.419243;;, + 109;3; 0.000000,11.409506, 5.419243;;, + 110;3; 0.000000,11.409506, 5.419243;;, + 111;3; 0.000000,11.409506, 5.419243;;, + 112;3; 0.000000,11.409506, 5.419243;;, + 113;3; 0.000000,11.409506, 5.419243;;, + 114;3; 0.000000,11.409506, 5.419243;;, + 115;3; 0.000000,11.409506, 5.419243;;, + 116;3; 0.000000,11.409506, 5.419243;;, + 117;3; 0.000000,11.409506, 5.419243;;, + 118;3; 0.000000,11.409506, 5.419243;;, + 119;3; 0.000000,11.929585, 5.419243;;, + 120;3; 0.000000,12.472727, 5.419243;;, + 121;3; 0.000000,12.960096, 5.419243;;, + 122;3; 0.000000,13.352370, 5.419243;;, + 123;3; 0.000000,13.616222, 5.419243;;, + 124;3; 0.000000,13.714186, 5.419243;;, + 125;3; 0.000000,13.634228, 5.419243;;, + 126;3; 0.000000,13.396275, 5.419243;;, + 127;3; 0.000000,13.022429, 5.419243;;, + 128;3; 0.000000,12.566847, 5.419243;;, + 129;3; 0.000000,12.109687, 5.419243;;, + 130;3; 0.000000,11.732204, 5.419243;;, + 131;3; 0.000000,11.490833, 5.419243;;, + 132;3; 0.000000,11.409506, 5.419243;;, + 133;3; 0.000000,11.409436, 5.419243;;, + 134;3; 0.000000,11.409246, 5.419243;;, + 135;3; 0.000000,11.408957, 5.419243;;, + 136;3; 0.000000,11.408587, 5.419243;;, + 137;3; 0.000000,11.408154, 5.419243;;, + 138;3; 0.000000,11.407667, 5.419243;;, + 139;3; 0.000000,11.407142, 5.419243;;, + 140;3; 0.000000,11.406587, 5.419243;;, + 141;3; 0.000000,11.406015, 5.419243;;, + 142;3; 0.000000,11.405437, 5.419243;;, + 143;3; 0.000000,11.404861, 5.419243;;, + 144;3; 0.000000,11.404304, 5.419243;;, + 145;3; 0.000000,11.403775, 5.419243;;, + 146;3; 0.000000,11.403294, 5.419243;;, + 147;3; 0.000000,11.402880, 5.419243;;, + 148;3; 0.000000,11.402558, 5.419243;;, + 149;3; 0.000000,11.402367, 5.419243;;, + 150;3; 0.000000,11.402359, 5.419243;;, + 151;3; 0.000000,11.402626, 5.419243;;, + 152;3; 0.000000,11.403333, 5.419243;;, + 153;3; 0.000000,11.404892, 5.419243;;, + 154;3; 0.000000,11.409506, 5.419243;;, + 155;3; 0.000000,12.021920, 5.419243;;, + 156;3; 0.000000,12.973394, 5.419243;;, + 157;3; 0.000000,13.409506, 5.419243;;, + 158;3;-0.011617,13.068136, 5.419243;;, + 159;3;-0.045976,12.249222, 5.419243;;, + 160;3;-0.098318,11.118513, 5.419243;;, + 161;3;-0.157691, 9.755448, 5.419243;;, + 162;3;-0.210054, 8.200048, 5.419243;;, + 163;3;-0.244439, 6.462389, 5.419243;;, + 164;3;-0.256067, 4.396759, 5.419243;;, + 165;3;-0.256067, 4.396759, 5.419243;;, + 166;3;-0.256067, 4.396759, 5.419243;;, + 167;3;-0.256067, 4.396759, 5.419243;;, + 168;3;-0.256067, 4.396759, 5.419243;;, + 169;3;-0.256067, 4.396759, 5.419243;;, + 170;3;-0.256067, 4.396759, 5.419243;;, + 171;3;-0.256067, 4.396759, 5.419243;;, + 172;3;-0.256067, 4.396759, 5.419243;;, + 173;3;-0.256067, 4.396759, 5.419243;;, + 174;3;-0.256067, 4.396759, 5.419243;;, + 175;3;-0.256067, 4.396759, 5.419243;;, + 176;3;-0.256067, 4.396759, 5.419243;;, + 177;3;-0.256067, 4.396759, 5.419243;;, + 178;3;-0.256067, 4.396759, 5.419243;;, + 179;3;-0.256067, 4.396759, 5.419243;;; + } + } + Animation { + {Cow_Rig_Leg_B_L} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.677652,-0.732304, 0.001104,-0.001104;;, + 156;4;-0.614838,-0.785491, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.555869,-0.832037, 0.004091,-0.004091;;, + 159;4;-0.541254,-0.842217, 0.003516,-0.003516;;, + 160;4;-0.530481,-0.849211, 0.002640,-0.002640;;, + 161;4;-0.523690,-0.853119, 0.001646,-0.001646;;, + 162;4;-0.520229,-0.854693, 0.000770,-0.000770;;, + 163;4;-0.518938,-0.855000, 0.000194,-0.000194;;, + 164;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 165;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 166;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 167;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 168;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 169;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 170;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 171;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 172;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 173;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 174;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 175;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 176;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 177;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 178;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 179;4;-0.518701,-0.854956, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.760948, 0.613843,-3.417443;;, + 1;3;-1.760948, 0.613843,-3.417443;;, + 2;3;-1.760948, 0.613843,-3.417443;;, + 3;3;-1.760948, 0.613843,-3.417443;;, + 4;3;-1.760948, 0.613843,-3.417443;;, + 5;3;-1.760948, 0.613843,-3.417443;;, + 6;3;-1.760948, 0.613843,-3.417443;;, + 7;3;-1.760948, 0.613843,-3.417443;;, + 8;3;-1.760948, 0.613843,-3.417443;;, + 9;3;-1.760948, 0.613843,-3.417443;;, + 10;3;-1.760948, 0.613843,-3.417443;;, + 11;3;-1.760948, 0.613843,-3.417443;;, + 12;3;-1.760948, 0.613843,-3.417443;;, + 13;3;-1.760948, 0.613843,-3.417443;;, + 14;3;-1.760948, 0.613843,-3.417443;;, + 15;3;-1.760948, 0.613843,-3.417443;;, + 16;3;-1.760948, 0.613843,-3.417443;;, + 17;3;-1.760948, 0.613843,-3.417443;;, + 18;3;-1.760948, 0.613843,-3.417443;;, + 19;3;-1.760948, 0.613843,-3.417443;;, + 20;3;-1.760948, 0.613843,-3.417443;;, + 21;3;-1.760948, 0.613843,-3.417443;;, + 22;3;-1.760948, 0.613843,-3.417443;;, + 23;3;-1.760948, 0.613843,-3.417443;;, + 24;3;-1.760948, 0.613843,-3.417443;;, + 25;3;-1.760948, 0.613843,-3.417442;;, + 26;3;-1.760948, 0.613843,-3.417443;;, + 27;3;-1.760948, 0.613843,-3.417443;;, + 28;3;-1.760948, 0.613843,-3.417442;;, + 29;3;-1.760948, 0.613843,-3.417443;;, + 30;3;-1.760948, 0.613843,-3.417443;;, + 31;3;-1.760948, 0.613842,-3.417443;;, + 32;3;-1.760948, 0.613843,-3.417443;;, + 33;3;-1.760948, 0.613843,-3.417443;;, + 34;3;-1.760948, 0.613843,-3.417443;;, + 35;3;-1.760948, 0.613843,-3.417443;;, + 36;3;-1.760948, 0.613843,-3.417443;;, + 37;3;-1.760948, 0.613843,-3.417443;;, + 38;3;-1.760948, 0.613843,-3.417443;;, + 39;3;-1.760948, 0.613842,-3.417443;;, + 40;3;-1.760948, 0.613843,-3.417443;;, + 41;3;-1.760948, 0.613843,-3.417443;;, + 42;3;-1.760948, 0.613843,-3.417443;;, + 43;3;-1.760948, 0.613843,-3.417443;;, + 44;3;-1.760948, 0.613843,-3.417443;;, + 45;3;-1.760948, 0.613843,-3.417443;;, + 46;3;-1.760948, 0.613843,-3.417442;;, + 47;3;-1.760948, 0.613843,-3.417443;;, + 48;3;-1.760948, 0.613843,-3.417443;;, + 49;3;-1.760948, 0.613843,-3.417443;;, + 50;3;-1.760948, 0.613843,-3.417443;;, + 51;3;-1.760948, 0.613843,-3.417443;;, + 52;3;-1.760948, 0.613843,-3.417443;;, + 53;3;-1.760948, 0.613843,-3.417443;;, + 54;3;-1.760948, 0.613843,-3.417443;;, + 55;3;-1.760948, 0.613843,-3.417443;;, + 56;3;-1.760948, 0.613843,-3.417443;;, + 57;3;-1.760948, 0.613843,-3.417443;;, + 58;3;-1.760948, 0.613843,-3.417443;;, + 59;3;-1.760948, 0.613843,-3.417443;;, + 60;3;-1.760948, 0.613843,-3.417443;;, + 61;3;-1.760948, 0.613843,-3.417443;;, + 62;3;-1.760948, 0.613843,-3.417443;;, + 63;3;-1.760948, 0.613843,-3.417443;;, + 64;3;-1.760948, 0.613843,-3.417443;;, + 65;3;-1.760948, 0.613843,-3.417443;;, + 66;3;-1.760948, 0.613843,-3.417443;;, + 67;3;-1.760948, 0.613843,-3.417443;;, + 68;3;-1.760948, 0.613843,-3.417443;;, + 69;3;-1.760948, 0.613843,-3.417443;;, + 70;3;-1.760948, 0.613843,-3.417443;;, + 71;3;-1.760948, 0.613843,-3.417443;;, + 72;3;-1.760948, 0.613843,-3.417443;;, + 73;3;-1.760948, 0.613843,-3.417443;;, + 74;3;-1.760948, 0.613843,-3.417443;;, + 75;3;-1.760948, 0.613843,-3.417443;;, + 76;3;-1.760948, 0.613843,-3.417443;;, + 77;3;-1.760948, 0.613843,-3.417443;;, + 78;3;-1.760948, 0.613843,-3.417443;;, + 79;3;-1.760948, 0.613843,-3.417443;;, + 80;3;-1.760948, 0.613843,-3.417443;;, + 81;3;-1.760948, 0.613843,-3.417443;;, + 82;3;-1.760948, 0.613843,-3.417443;;, + 83;3;-1.760948, 0.613843,-3.417443;;, + 84;3;-1.760948, 0.613843,-3.417443;;, + 85;3;-1.760948, 0.613843,-3.417443;;, + 86;3;-1.760948, 0.613843,-3.417443;;, + 87;3;-1.760948, 0.613843,-3.417443;;, + 88;3;-1.760948, 0.613843,-3.417443;;, + 89;3;-1.760948, 0.613843,-3.417443;;, + 90;3;-1.760948, 0.613843,-3.417443;;, + 91;3;-1.760948, 0.613843,-3.417443;;, + 92;3;-1.760948, 0.613843,-3.417443;;, + 93;3;-1.760948, 0.613843,-3.417443;;, + 94;3;-1.760948, 0.613843,-3.417443;;, + 95;3;-1.760948, 0.613843,-3.417443;;, + 96;3;-1.760948, 0.613843,-3.417443;;, + 97;3;-1.760948, 0.613843,-3.417443;;, + 98;3;-1.760948, 0.613843,-3.417443;;, + 99;3;-1.760948, 0.613843,-3.417443;;, + 100;3;-1.760948, 0.613843,-3.417443;;, + 101;3;-1.760948, 0.613843,-3.417443;;, + 102;3;-1.760948, 0.613843,-3.417443;;, + 103;3;-1.760948, 0.613843,-3.417443;;, + 104;3;-1.760948, 0.613843,-3.417443;;, + 105;3;-1.760948, 0.613843,-3.417443;;, + 106;3;-1.760948, 0.613843,-3.417443;;, + 107;3;-1.760948, 0.613843,-3.417443;;, + 108;3;-1.760948, 0.613843,-3.417443;;, + 109;3;-1.760948, 0.613843,-3.417443;;, + 110;3;-1.760948, 0.613843,-3.417443;;, + 111;3;-1.760948, 0.613843,-3.417443;;, + 112;3;-1.760948, 0.613843,-3.417443;;, + 113;3;-1.760948, 0.613843,-3.417443;;, + 114;3;-1.760948, 0.613843,-3.417443;;, + 115;3;-1.760948, 0.613843,-3.417443;;, + 116;3;-1.760948, 0.613843,-3.417443;;, + 117;3;-1.760948, 0.613843,-3.417443;;, + 118;3;-1.760948, 0.613843,-3.417443;;, + 119;3;-1.760948, 0.613843,-3.417442;;, + 120;3;-1.760948, 0.613843,-3.417442;;, + 121;3;-1.760948, 0.613843,-3.417442;;, + 122;3;-1.760948, 0.613843,-3.417443;;, + 123;3;-1.760948, 0.613843,-3.417442;;, + 124;3;-1.760948, 0.613843,-3.417442;;, + 125;3;-1.760948, 0.613843,-3.417442;;, + 126;3;-1.760948, 0.613843,-3.417442;;, + 127;3;-1.760948, 0.613843,-3.417443;;, + 128;3;-1.760948, 0.613843,-3.417442;;, + 129;3;-1.760948, 0.613843,-3.417443;;, + 130;3;-1.760948, 0.613843,-3.417442;;, + 131;3;-1.760948, 0.613843,-3.417442;;, + 132;3;-1.760948, 0.613843,-3.417443;;, + 133;3;-1.760948, 0.613843,-3.417443;;, + 134;3;-1.760948, 0.613843,-3.417443;;, + 135;3;-1.760948, 0.613843,-3.417443;;, + 136;3;-1.760948, 0.613843,-3.417443;;, + 137;3;-1.760948, 0.613843,-3.417443;;, + 138;3;-1.760948, 0.613843,-3.417443;;, + 139;3;-1.760948, 0.613843,-3.417443;;, + 140;3;-1.760948, 0.613843,-3.417443;;, + 141;3;-1.760948, 0.613843,-3.417443;;, + 142;3;-1.760948, 0.613843,-3.417443;;, + 143;3;-1.760948, 0.613843,-3.417443;;, + 144;3;-1.760948, 0.613843,-3.417443;;, + 145;3;-1.760948, 0.613843,-3.417443;;, + 146;3;-1.760948, 0.613843,-3.417443;;, + 147;3;-1.760948, 0.613843,-3.417443;;, + 148;3;-1.760948, 0.613843,-3.417443;;, + 149;3;-1.760948, 0.613843,-3.417443;;, + 150;3;-1.760948, 0.613843,-3.417443;;, + 151;3;-1.760948, 0.613843,-3.417443;;, + 152;3;-1.760948, 0.613843,-3.417443;;, + 153;3;-1.760948, 0.613843,-3.417443;;, + 154;3;-1.760948, 0.613843,-3.417443;;, + 155;3;-1.760948, 0.613843,-3.417443;;, + 156;3;-1.760948, 0.613843,-3.417442;;, + 157;3;-1.760948, 0.613843,-3.417442;;, + 158;3;-1.760948, 0.613843,-3.417443;;, + 159;3;-1.760948, 0.613843,-3.417443;;, + 160;3;-1.760948, 0.613843,-3.417442;;, + 161;3;-1.760948, 0.613843,-3.417443;;, + 162;3;-1.760947, 0.613843,-3.417443;;, + 163;3;-1.760948, 0.613843,-3.417443;;, + 164;3;-1.760948, 0.613842,-3.417443;;, + 165;3;-1.760948, 0.613842,-3.417443;;, + 166;3;-1.760948, 0.613842,-3.417443;;, + 167;3;-1.760948, 0.613842,-3.417443;;, + 168;3;-1.760948, 0.613842,-3.417443;;, + 169;3;-1.760948, 0.613842,-3.417443;;, + 170;3;-1.760948, 0.613842,-3.417443;;, + 171;3;-1.760948, 0.613842,-3.417443;;, + 172;3;-1.760948, 0.613842,-3.417443;;, + 173;3;-1.760948, 0.613842,-3.417443;;, + 174;3;-1.760948, 0.613842,-3.417443;;, + 175;3;-1.760948, 0.613842,-3.417443;;, + 176;3;-1.760948, 0.613842,-3.417443;;, + 177;3;-1.760948, 0.613842,-3.417443;;, + 178;3;-1.760948, 0.613842,-3.417443;;, + 179;3;-1.760948, 0.613842,-3.417443;;; + } + } + Animation { + {Cow_Rig_Leg_F_L} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729690,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640378, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.673113,-0.736384, 0.001104,-0.001104;;, + 156;4;-0.605738,-0.793671, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.584336,-0.805462, 0.004091,-0.004091;;, + 159;4;-0.619086,-0.768348, 0.003516,-0.003516;;, + 160;4;-0.672979,-0.712760, 0.002640,-0.002640;;, + 161;4;-0.734582,-0.650136, 0.001646,-0.001646;;, + 162;4;-0.789150,-0.595088, 0.000770,-0.000770;;, + 163;4;-0.825083,-0.559002, 0.000195,-0.000194;;, + 164;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 165;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 166;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 167;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 168;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 169;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 170;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 171;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 172;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 173;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 174;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 175;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 176;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 177;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 178;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 179;4;-0.837257,-0.546810, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.760948, 8.787700,-3.333342;;, + 1;3;-1.760948, 8.787700,-3.333342;;, + 2;3;-1.760948, 8.787700,-3.333342;;, + 3;3;-1.760948, 8.787700,-3.333342;;, + 4;3;-1.760948, 8.787700,-3.333342;;, + 5;3;-1.760948, 8.787700,-3.333342;;, + 6;3;-1.760948, 8.787700,-3.333342;;, + 7;3;-1.760948, 8.787700,-3.333342;;, + 8;3;-1.760948, 8.787700,-3.333342;;, + 9;3;-1.760948, 8.787700,-3.333342;;, + 10;3;-1.760948, 8.787700,-3.333342;;, + 11;3;-1.760948, 8.787700,-3.333342;;, + 12;3;-1.760948, 8.787700,-3.333342;;, + 13;3;-1.760948, 8.787700,-3.333342;;, + 14;3;-1.760948, 8.787700,-3.333342;;, + 15;3;-1.760948, 8.787700,-3.333342;;, + 16;3;-1.760948, 8.787700,-3.333342;;, + 17;3;-1.760948, 8.787700,-3.333342;;, + 18;3;-1.760948, 8.787700,-3.333342;;, + 19;3;-1.760948, 8.787700,-3.333342;;, + 20;3;-1.760948, 8.787700,-3.333342;;, + 21;3;-1.760948, 8.787700,-3.333342;;, + 22;3;-1.760948, 8.787700,-3.333342;;, + 23;3;-1.760948, 8.787700,-3.333342;;, + 24;3;-1.760948, 8.787701,-3.333341;;, + 25;3;-1.760948, 8.787700,-3.333341;;, + 26;3;-1.760948, 8.787700,-3.333342;;, + 27;3;-1.760948, 8.787701,-3.333342;;, + 28;3;-1.760948, 8.787700,-3.333341;;, + 29;3;-1.760948, 8.787700,-3.333341;;, + 30;3;-1.760948, 8.787701,-3.333342;;, + 31;3;-1.760948, 8.787700,-3.333342;;, + 32;3;-1.760948, 8.787701,-3.333342;;, + 33;3;-1.760948, 8.787700,-3.333342;;, + 34;3;-1.760948, 8.787700,-3.333341;;, + 35;3;-1.760948, 8.787700,-3.333342;;, + 36;3;-1.760948, 8.787700,-3.333341;;, + 37;3;-1.760948, 8.787700,-3.333342;;, + 38;3;-1.760948, 8.787700,-3.333342;;, + 39;3;-1.760948, 8.787699,-3.333342;;, + 40;3;-1.760948, 8.787700,-3.333341;;, + 41;3;-1.760948, 8.787700,-3.333341;;, + 42;3;-1.760948, 8.787700,-3.333342;;, + 43;3;-1.760948, 8.787700,-3.333341;;, + 44;3;-1.760948, 8.787700,-3.333342;;, + 45;3;-1.760948, 8.787700,-3.333342;;, + 46;3;-1.760948, 8.787700,-3.333341;;, + 47;3;-1.760948, 8.787700,-3.333341;;, + 48;3;-1.760948, 8.787700,-3.333341;;, + 49;3;-1.760948, 8.787700,-3.333342;;, + 50;3;-1.760948, 8.787700,-3.333342;;, + 51;3;-1.760948, 8.787700,-3.333342;;, + 52;3;-1.760948, 8.787700,-3.333342;;, + 53;3;-1.760948, 8.787700,-3.333342;;, + 54;3;-1.760948, 8.787700,-3.333342;;, + 55;3;-1.760948, 8.787700,-3.333342;;, + 56;3;-1.760948, 8.787700,-3.333342;;, + 57;3;-1.760948, 8.787700,-3.333342;;, + 58;3;-1.760948, 8.787700,-3.333342;;, + 59;3;-1.760948, 8.787700,-3.333342;;, + 60;3;-1.760948, 8.787700,-3.333342;;, + 61;3;-1.760948, 8.787700,-3.333342;;, + 62;3;-1.760948, 8.787700,-3.333342;;, + 63;3;-1.760948, 8.787700,-3.333342;;, + 64;3;-1.760948, 8.787700,-3.333342;;, + 65;3;-1.760948, 8.787700,-3.333342;;, + 66;3;-1.760948, 8.787700,-3.333342;;, + 67;3;-1.760948, 8.787700,-3.333342;;, + 68;3;-1.760948, 8.787700,-3.333342;;, + 69;3;-1.760948, 8.787700,-3.333342;;, + 70;3;-1.760948, 8.787700,-3.333342;;, + 71;3;-1.760948, 8.787700,-3.333342;;, + 72;3;-1.760948, 8.787700,-3.333342;;, + 73;3;-1.760948, 8.787700,-3.333342;;, + 74;3;-1.760948, 8.787700,-3.333342;;, + 75;3;-1.760948, 8.787700,-3.333342;;, + 76;3;-1.760948, 8.787700,-3.333342;;, + 77;3;-1.760948, 8.787700,-3.333342;;, + 78;3;-1.760948, 8.787700,-3.333342;;, + 79;3;-1.760948, 8.787700,-3.333342;;, + 80;3;-1.760948, 8.787700,-3.333342;;, + 81;3;-1.760948, 8.787700,-3.333342;;, + 82;3;-1.760948, 8.787700,-3.333342;;, + 83;3;-1.760948, 8.787700,-3.333342;;, + 84;3;-1.760948, 8.787700,-3.333342;;, + 85;3;-1.760948, 8.787700,-3.333342;;, + 86;3;-1.760948, 8.787700,-3.333342;;, + 87;3;-1.760948, 8.787700,-3.333342;;, + 88;3;-1.760948, 8.787700,-3.333342;;, + 89;3;-1.760948, 8.787700,-3.333342;;, + 90;3;-1.760948, 8.787700,-3.333342;;, + 91;3;-1.760948, 8.787700,-3.333342;;, + 92;3;-1.760948, 8.787700,-3.333342;;, + 93;3;-1.760948, 8.787700,-3.333342;;, + 94;3;-1.760948, 8.787700,-3.333342;;, + 95;3;-1.760948, 8.787700,-3.333342;;, + 96;3;-1.760948, 8.787700,-3.333342;;, + 97;3;-1.760948, 8.787700,-3.333342;;, + 98;3;-1.760948, 8.787700,-3.333342;;, + 99;3;-1.760948, 8.787700,-3.333342;;, + 100;3;-1.760948, 8.787700,-3.333342;;, + 101;3;-1.760948, 8.787700,-3.333342;;, + 102;3;-1.760948, 8.787700,-3.333342;;, + 103;3;-1.760948, 8.787700,-3.333342;;, + 104;3;-1.760948, 8.787700,-3.333342;;, + 105;3;-1.760948, 8.787700,-3.333342;;, + 106;3;-1.760948, 8.787700,-3.333342;;, + 107;3;-1.760948, 8.787700,-3.333342;;, + 108;3;-1.760948, 8.787700,-3.333342;;, + 109;3;-1.760948, 8.787700,-3.333342;;, + 110;3;-1.760948, 8.787700,-3.333342;;, + 111;3;-1.760948, 8.787700,-3.333342;;, + 112;3;-1.760948, 8.787700,-3.333342;;, + 113;3;-1.760948, 8.787700,-3.333342;;, + 114;3;-1.760948, 8.787700,-3.333342;;, + 115;3;-1.760948, 8.787700,-3.333342;;, + 116;3;-1.760948, 8.787700,-3.333342;;, + 117;3;-1.760948, 8.787700,-3.333342;;, + 118;3;-1.760948, 8.787700,-3.333342;;, + 119;3;-1.760948, 8.787700,-3.333342;;, + 120;3;-1.760948, 8.787700,-3.333342;;, + 121;3;-1.760948, 8.787700,-3.333342;;, + 122;3;-1.760948, 8.787700,-3.333342;;, + 123;3;-1.760948, 8.787700,-3.333342;;, + 124;3;-1.760948, 8.787700,-3.333342;;, + 125;3;-1.760948, 8.787700,-3.333342;;, + 126;3;-1.760948, 8.787700,-3.333342;;, + 127;3;-1.760948, 8.787700,-3.333342;;, + 128;3;-1.760948, 8.787700,-3.333342;;, + 129;3;-1.760948, 8.787700,-3.333342;;, + 130;3;-1.760948, 8.787700,-3.333342;;, + 131;3;-1.760948, 8.787700,-3.333342;;, + 132;3;-1.760948, 8.787700,-3.333342;;, + 133;3;-1.760948, 8.787700,-3.333342;;, + 134;3;-1.760948, 8.787700,-3.333342;;, + 135;3;-1.760948, 8.787700,-3.333342;;, + 136;3;-1.760948, 8.787700,-3.333342;;, + 137;3;-1.760948, 8.787700,-3.333342;;, + 138;3;-1.760948, 8.787700,-3.333342;;, + 139;3;-1.760948, 8.787700,-3.333342;;, + 140;3;-1.760948, 8.787700,-3.333342;;, + 141;3;-1.760948, 8.787700,-3.333342;;, + 142;3;-1.760948, 8.787700,-3.333342;;, + 143;3;-1.760948, 8.787700,-3.333342;;, + 144;3;-1.760948, 8.787700,-3.333342;;, + 145;3;-1.760948, 8.787700,-3.333342;;, + 146;3;-1.760948, 8.787700,-3.333342;;, + 147;3;-1.760948, 8.787700,-3.333342;;, + 148;3;-1.760948, 8.787700,-3.333342;;, + 149;3;-1.760948, 8.787700,-3.333342;;, + 150;3;-1.760948, 8.787700,-3.333342;;, + 151;3;-1.760948, 8.787700,-3.333342;;, + 152;3;-1.760948, 8.787700,-3.333342;;, + 153;3;-1.760948, 8.787700,-3.333342;;, + 154;3;-1.760948, 8.787700,-3.333342;;, + 155;3;-1.760948, 8.787700,-3.333342;;, + 156;3;-1.760948, 8.787700,-3.333342;;, + 157;3;-1.760948, 8.787700,-3.333342;;, + 158;3;-1.760948, 8.787700,-3.333342;;, + 159;3;-1.760948, 8.787701,-3.333341;;, + 160;3;-1.760948, 8.787700,-3.333341;;, + 161;3;-1.760949, 8.787700,-3.333342;;, + 162;3;-1.760947, 8.787700,-3.333342;;, + 163;3;-1.760948, 8.787700,-3.333342;;, + 164;3;-1.760948, 8.787700,-3.333342;;, + 165;3;-1.760948, 8.787700,-3.333342;;, + 166;3;-1.760948, 8.787700,-3.333342;;, + 167;3;-1.760948, 8.787700,-3.333342;;, + 168;3;-1.760948, 8.787700,-3.333342;;, + 169;3;-1.760948, 8.787700,-3.333342;;, + 170;3;-1.760948, 8.787700,-3.333342;;, + 171;3;-1.760948, 8.787700,-3.333342;;, + 172;3;-1.760948, 8.787700,-3.333342;;, + 173;3;-1.760948, 8.787700,-3.333342;;, + 174;3;-1.760948, 8.787700,-3.333342;;, + 175;3;-1.760948, 8.787700,-3.333342;;, + 176;3;-1.760948, 8.787700,-3.333342;;, + 177;3;-1.760948, 8.787700,-3.333342;;, + 178;3;-1.760948, 8.787700,-3.333342;;, + 179;3;-1.760948, 8.787700,-3.333342;;; + } + } + Animation { + {Cow_Rig_Leg_B_R} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000593, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736713,-0.673453,-0.000673, 0.000673;;, + 156;4;-0.794332,-0.606419,-0.002416, 0.002416;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.815242,-0.571498, 0.000931, 0.013380;;, + 159;4;-0.809622,-0.570851, 0.019673, 0.036966;;, + 160;4;-0.802791,-0.571596, 0.049229, 0.071895;;, + 161;4;-0.795862,-0.573259, 0.083228, 0.111042;;, + 162;4;-0.790135,-0.575105, 0.113432, 0.145342;;, + 163;4;-0.786524,-0.576465, 0.133350, 0.167777;;, + 164;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 165;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 166;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 167;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 168;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 169;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 170;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 171;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 172;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 173;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 174;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 175;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 176;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 177;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 178;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 179;4;-0.785333,-0.576955, 0.140102, 0.175346;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 1.728931, 0.613843,-3.417443;;, + 1;3; 1.728931, 0.613843,-3.417443;;, + 2;3; 1.728931, 0.613843,-3.417443;;, + 3;3; 1.728931, 0.613843,-3.417443;;, + 4;3; 1.728931, 0.613843,-3.417443;;, + 5;3; 1.728931, 0.613843,-3.417443;;, + 6;3; 1.728931, 0.613843,-3.417443;;, + 7;3; 1.728931, 0.613843,-3.417443;;, + 8;3; 1.728931, 0.613843,-3.417443;;, + 9;3; 1.728931, 0.613843,-3.417443;;, + 10;3; 1.728931, 0.613843,-3.417443;;, + 11;3; 1.728931, 0.613843,-3.417443;;, + 12;3; 1.728931, 0.613843,-3.417443;;, + 13;3; 1.728931, 0.613843,-3.417443;;, + 14;3; 1.728931, 0.613843,-3.417443;;, + 15;3; 1.728931, 0.613843,-3.417443;;, + 16;3; 1.728931, 0.613843,-3.417443;;, + 17;3; 1.728931, 0.613843,-3.417443;;, + 18;3; 1.728931, 0.613843,-3.417443;;, + 19;3; 1.728931, 0.613843,-3.417443;;, + 20;3; 1.728931, 0.613843,-3.417443;;, + 21;3; 1.728931, 0.613843,-3.417443;;, + 22;3; 1.728931, 0.613843,-3.417443;;, + 23;3; 1.728931, 0.613843,-3.417443;;, + 24;3; 1.728931, 0.613843,-3.417443;;, + 25;3; 1.728931, 0.613843,-3.417443;;, + 26;3; 1.728931, 0.613843,-3.417443;;, + 27;3; 1.728931, 0.613843,-3.417443;;, + 28;3; 1.728931, 0.613843,-3.417442;;, + 29;3; 1.728931, 0.613843,-3.417443;;, + 30;3; 1.728931, 0.613843,-3.417443;;, + 31;3; 1.728931, 0.613842,-3.417443;;, + 32;3; 1.728931, 0.613843,-3.417442;;, + 33;3; 1.728931, 0.613843,-3.417443;;, + 34;3; 1.728931, 0.613843,-3.417443;;, + 35;3; 1.728931, 0.613843,-3.417443;;, + 36;3; 1.728931, 0.613843,-3.417443;;, + 37;3; 1.728931, 0.613843,-3.417442;;, + 38;3; 1.728931, 0.613843,-3.417443;;, + 39;3; 1.728931, 0.613842,-3.417443;;, + 40;3; 1.728931, 0.613843,-3.417444;;, + 41;3; 1.728931, 0.613843,-3.417443;;, + 42;3; 1.728931, 0.613843,-3.417443;;, + 43;3; 1.728931, 0.613843,-3.417443;;, + 44;3; 1.728931, 0.613843,-3.417443;;, + 45;3; 1.728931, 0.613843,-3.417443;;, + 46;3; 1.728931, 0.613843,-3.417443;;, + 47;3; 1.728931, 0.613843,-3.417443;;, + 48;3; 1.728931, 0.613843,-3.417443;;, + 49;3; 1.728931, 0.613843,-3.417443;;, + 50;3; 1.728931, 0.613843,-3.417443;;, + 51;3; 1.728931, 0.613843,-3.417443;;, + 52;3; 1.728931, 0.613843,-3.417443;;, + 53;3; 1.728931, 0.613843,-3.417443;;, + 54;3; 1.728931, 0.613843,-3.417443;;, + 55;3; 1.728931, 0.613843,-3.417443;;, + 56;3; 1.728931, 0.613843,-3.417443;;, + 57;3; 1.728931, 0.613843,-3.417443;;, + 58;3; 1.728931, 0.613843,-3.417443;;, + 59;3; 1.728931, 0.613843,-3.417443;;, + 60;3; 1.728931, 0.613843,-3.417443;;, + 61;3; 1.728931, 0.613843,-3.417443;;, + 62;3; 1.728931, 0.613843,-3.417443;;, + 63;3; 1.728931, 0.613843,-3.417443;;, + 64;3; 1.728931, 0.613843,-3.417443;;, + 65;3; 1.728931, 0.613843,-3.417443;;, + 66;3; 1.728931, 0.613843,-3.417443;;, + 67;3; 1.728931, 0.613843,-3.417443;;, + 68;3; 1.728931, 0.613843,-3.417443;;, + 69;3; 1.728931, 0.613843,-3.417443;;, + 70;3; 1.728931, 0.613843,-3.417443;;, + 71;3; 1.728931, 0.613843,-3.417443;;, + 72;3; 1.728931, 0.613843,-3.417443;;, + 73;3; 1.728931, 0.613843,-3.417443;;, + 74;3; 1.728931, 0.613843,-3.417443;;, + 75;3; 1.728931, 0.613843,-3.417443;;, + 76;3; 1.728931, 0.613843,-3.417443;;, + 77;3; 1.728931, 0.613843,-3.417443;;, + 78;3; 1.728931, 0.613843,-3.417443;;, + 79;3; 1.728931, 0.613843,-3.417443;;, + 80;3; 1.728931, 0.613843,-3.417443;;, + 81;3; 1.728931, 0.613843,-3.417443;;, + 82;3; 1.728931, 0.613843,-3.417443;;, + 83;3; 1.728931, 0.613843,-3.417443;;, + 84;3; 1.728931, 0.613843,-3.417443;;, + 85;3; 1.728931, 0.613843,-3.417443;;, + 86;3; 1.728931, 0.613843,-3.417443;;, + 87;3; 1.728931, 0.613843,-3.417443;;, + 88;3; 1.728931, 0.613843,-3.417443;;, + 89;3; 1.728931, 0.613843,-3.417443;;, + 90;3; 1.728931, 0.613843,-3.417443;;, + 91;3; 1.728931, 0.613843,-3.417443;;, + 92;3; 1.728931, 0.613843,-3.417443;;, + 93;3; 1.728931, 0.613843,-3.417443;;, + 94;3; 1.728931, 0.613843,-3.417443;;, + 95;3; 1.728931, 0.613843,-3.417443;;, + 96;3; 1.728931, 0.613843,-3.417443;;, + 97;3; 1.728931, 0.613843,-3.417443;;, + 98;3; 1.728931, 0.613843,-3.417443;;, + 99;3; 1.728931, 0.613843,-3.417443;;, + 100;3; 1.728931, 0.613843,-3.417443;;, + 101;3; 1.728931, 0.613843,-3.417443;;, + 102;3; 1.728931, 0.613843,-3.417443;;, + 103;3; 1.728931, 0.613843,-3.417443;;, + 104;3; 1.728931, 0.613843,-3.417443;;, + 105;3; 1.728931, 0.613843,-3.417443;;, + 106;3; 1.728931, 0.613843,-3.417443;;, + 107;3; 1.728931, 0.613843,-3.417443;;, + 108;3; 1.728931, 0.613843,-3.417443;;, + 109;3; 1.728931, 0.613843,-3.417443;;, + 110;3; 1.728931, 0.613843,-3.417443;;, + 111;3; 1.728931, 0.613843,-3.417443;;, + 112;3; 1.728931, 0.613843,-3.417443;;, + 113;3; 1.728931, 0.613843,-3.417443;;, + 114;3; 1.728931, 0.613843,-3.417443;;, + 115;3; 1.728931, 0.613843,-3.417443;;, + 116;3; 1.728931, 0.613843,-3.417443;;, + 117;3; 1.728931, 0.613843,-3.417443;;, + 118;3; 1.728931, 0.613843,-3.417443;;, + 119;3; 1.728931, 0.613843,-3.417442;;, + 120;3; 1.728931, 0.613843,-3.417442;;, + 121;3; 1.728931, 0.613843,-3.417442;;, + 122;3; 1.728931, 0.613843,-3.417443;;, + 123;3; 1.728931, 0.613843,-3.417442;;, + 124;3; 1.728931, 0.613843,-3.417442;;, + 125;3; 1.728931, 0.613843,-3.417442;;, + 126;3; 1.728931, 0.613843,-3.417442;;, + 127;3; 1.728931, 0.613843,-3.417443;;, + 128;3; 1.728931, 0.613843,-3.417442;;, + 129;3; 1.728931, 0.613843,-3.417443;;, + 130;3; 1.728931, 0.613843,-3.417442;;, + 131;3; 1.728931, 0.613843,-3.417442;;, + 132;3; 1.728931, 0.613843,-3.417443;;, + 133;3; 1.728931, 0.613843,-3.417443;;, + 134;3; 1.728931, 0.613843,-3.417443;;, + 135;3; 1.728931, 0.613843,-3.417443;;, + 136;3; 1.728931, 0.613843,-3.417443;;, + 137;3; 1.728931, 0.613843,-3.417443;;, + 138;3; 1.728931, 0.613843,-3.417443;;, + 139;3; 1.728931, 0.613843,-3.417443;;, + 140;3; 1.728931, 0.613843,-3.417443;;, + 141;3; 1.728931, 0.613843,-3.417443;;, + 142;3; 1.728931, 0.613843,-3.417443;;, + 143;3; 1.728931, 0.613843,-3.417443;;, + 144;3; 1.728931, 0.613843,-3.417443;;, + 145;3; 1.728931, 0.613843,-3.417443;;, + 146;3; 1.728931, 0.613843,-3.417443;;, + 147;3; 1.728931, 0.613843,-3.417443;;, + 148;3; 1.728931, 0.613843,-3.417443;;, + 149;3; 1.728931, 0.613843,-3.417443;;, + 150;3; 1.728931, 0.613843,-3.417443;;, + 151;3; 1.728931, 0.613843,-3.417443;;, + 152;3; 1.728931, 0.613843,-3.417443;;, + 153;3; 1.728931, 0.613843,-3.417443;;, + 154;3; 1.728931, 0.613843,-3.417443;;, + 155;3; 1.728931, 0.613843,-3.417443;;, + 156;3; 1.728931, 0.613843,-3.417442;;, + 157;3; 1.728931, 0.613843,-3.417442;;, + 158;3; 1.728931, 0.613843,-3.417444;;, + 159;3; 1.728931, 0.613844,-3.417443;;, + 160;3; 1.728930, 0.613843,-3.417442;;, + 161;3; 1.728930, 0.613843,-3.417443;;, + 162;3; 1.728931, 0.613843,-3.417443;;, + 163;3; 1.728930, 0.613843,-3.417443;;, + 164;3; 1.728930, 0.613843,-3.417443;;, + 165;3; 1.728930, 0.613843,-3.417443;;, + 166;3; 1.728930, 0.613843,-3.417443;;, + 167;3; 1.728930, 0.613843,-3.417443;;, + 168;3; 1.728930, 0.613843,-3.417443;;, + 169;3; 1.728930, 0.613843,-3.417443;;, + 170;3; 1.728930, 0.613843,-3.417443;;, + 171;3; 1.728930, 0.613843,-3.417443;;, + 172;3; 1.728930, 0.613843,-3.417443;;, + 173;3; 1.728930, 0.613843,-3.417443;;, + 174;3; 1.728930, 0.613843,-3.417443;;, + 175;3; 1.728930, 0.613843,-3.417443;;, + 176;3; 1.728930, 0.613843,-3.417443;;, + 177;3; 1.728930, 0.613843,-3.417443;;, + 178;3; 1.728930, 0.613843,-3.417443;;, + 179;3; 1.728930, 0.613843,-3.417443;;; + } + } + Animation { + {Cow_Rig_Leg_F_R} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605887,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729690,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579102,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578282,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763094,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000592, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596207,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649317,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736581,-0.673311,-0.001104, 0.001104;;, + 156;4;-0.794065,-0.606133,-0.003281, 0.003281;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.806073,-0.582193, 0.001740, 0.008346;;, + 159;4;-0.772277,-0.612122, 0.019564, 0.020360;;, + 160;4;-0.722202,-0.659130, 0.046720, 0.038662;;, + 161;4;-0.666055,-0.713132, 0.077523, 0.059422;;, + 162;4;-0.616832,-0.761085, 0.104682, 0.077728;;, + 163;4;-0.584619,-0.792705, 0.122511, 0.089746;;, + 164;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 165;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 166;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 167;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 168;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 169;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 170;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 171;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 172;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 173;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 174;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 175;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 176;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 177;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 178;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 179;4;-0.573748,-0.803425, 0.128538, 0.093809;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 1.728931, 8.787700,-3.333342;;, + 1;3; 1.728931, 8.787700,-3.333342;;, + 2;3; 1.728931, 8.787700,-3.333342;;, + 3;3; 1.728931, 8.787700,-3.333342;;, + 4;3; 1.728931, 8.787700,-3.333342;;, + 5;3; 1.728931, 8.787700,-3.333342;;, + 6;3; 1.728931, 8.787700,-3.333342;;, + 7;3; 1.728931, 8.787700,-3.333342;;, + 8;3; 1.728931, 8.787700,-3.333342;;, + 9;3; 1.728931, 8.787700,-3.333342;;, + 10;3; 1.728931, 8.787700,-3.333342;;, + 11;3; 1.728931, 8.787700,-3.333342;;, + 12;3; 1.728931, 8.787700,-3.333342;;, + 13;3; 1.728931, 8.787700,-3.333342;;, + 14;3; 1.728931, 8.787700,-3.333342;;, + 15;3; 1.728931, 8.787700,-3.333342;;, + 16;3; 1.728931, 8.787700,-3.333342;;, + 17;3; 1.728931, 8.787700,-3.333342;;, + 18;3; 1.728931, 8.787700,-3.333342;;, + 19;3; 1.728931, 8.787700,-3.333342;;, + 20;3; 1.728931, 8.787700,-3.333342;;, + 21;3; 1.728931, 8.787700,-3.333342;;, + 22;3; 1.728931, 8.787700,-3.333342;;, + 23;3; 1.728931, 8.787700,-3.333342;;, + 24;3; 1.728931, 8.787700,-3.333342;;, + 25;3; 1.728931, 8.787700,-3.333342;;, + 26;3; 1.728931, 8.787700,-3.333342;;, + 27;3; 1.728931, 8.787700,-3.333341;;, + 28;3; 1.728931, 8.787700,-3.333341;;, + 29;3; 1.728931, 8.787700,-3.333341;;, + 30;3; 1.728931, 8.787700,-3.333342;;, + 31;3; 1.728931, 8.787699,-3.333342;;, + 32;3; 1.728931, 8.787700,-3.333341;;, + 33;3; 1.728931, 8.787700,-3.333342;;, + 34;3; 1.728931, 8.787700,-3.333341;;, + 35;3; 1.728931, 8.787700,-3.333342;;, + 36;3; 1.728931, 8.787700,-3.333341;;, + 37;3; 1.728931, 8.787700,-3.333342;;, + 38;3; 1.728931, 8.787701,-3.333341;;, + 39;3; 1.728931, 8.787700,-3.333341;;, + 40;3; 1.728931, 8.787701,-3.333342;;, + 41;3; 1.728931, 8.787700,-3.333341;;, + 42;3; 1.728931, 8.787701,-3.333342;;, + 43;3; 1.728931, 8.787700,-3.333341;;, + 44;3; 1.728931, 8.787700,-3.333341;;, + 45;3; 1.728931, 8.787700,-3.333342;;, + 46;3; 1.728931, 8.787700,-3.333341;;, + 47;3; 1.728931, 8.787701,-3.333342;;, + 48;3; 1.728931, 8.787701,-3.333342;;, + 49;3; 1.728931, 8.787700,-3.333342;;, + 50;3; 1.728931, 8.787700,-3.333342;;, + 51;3; 1.728931, 8.787700,-3.333342;;, + 52;3; 1.728931, 8.787700,-3.333342;;, + 53;3; 1.728931, 8.787700,-3.333342;;, + 54;3; 1.728931, 8.787700,-3.333342;;, + 55;3; 1.728931, 8.787700,-3.333342;;, + 56;3; 1.728931, 8.787700,-3.333342;;, + 57;3; 1.728931, 8.787700,-3.333342;;, + 58;3; 1.728931, 8.787700,-3.333342;;, + 59;3; 1.728931, 8.787700,-3.333342;;, + 60;3; 1.728931, 8.787700,-3.333342;;, + 61;3; 1.728931, 8.787700,-3.333342;;, + 62;3; 1.728931, 8.787700,-3.333342;;, + 63;3; 1.728931, 8.787700,-3.333342;;, + 64;3; 1.728931, 8.787700,-3.333342;;, + 65;3; 1.728931, 8.787700,-3.333342;;, + 66;3; 1.728931, 8.787700,-3.333342;;, + 67;3; 1.728931, 8.787700,-3.333342;;, + 68;3; 1.728931, 8.787700,-3.333342;;, + 69;3; 1.728931, 8.787700,-3.333342;;, + 70;3; 1.728931, 8.787700,-3.333342;;, + 71;3; 1.728931, 8.787700,-3.333342;;, + 72;3; 1.728931, 8.787700,-3.333342;;, + 73;3; 1.728931, 8.787700,-3.333342;;, + 74;3; 1.728931, 8.787700,-3.333342;;, + 75;3; 1.728931, 8.787700,-3.333342;;, + 76;3; 1.728931, 8.787700,-3.333342;;, + 77;3; 1.728931, 8.787700,-3.333342;;, + 78;3; 1.728931, 8.787700,-3.333342;;, + 79;3; 1.728931, 8.787700,-3.333342;;, + 80;3; 1.728931, 8.787700,-3.333342;;, + 81;3; 1.728931, 8.787700,-3.333342;;, + 82;3; 1.728931, 8.787700,-3.333342;;, + 83;3; 1.728931, 8.787700,-3.333342;;, + 84;3; 1.728931, 8.787700,-3.333342;;, + 85;3; 1.728931, 8.787700,-3.333342;;, + 86;3; 1.728931, 8.787700,-3.333342;;, + 87;3; 1.728931, 8.787700,-3.333342;;, + 88;3; 1.728931, 8.787700,-3.333342;;, + 89;3; 1.728931, 8.787700,-3.333342;;, + 90;3; 1.728931, 8.787700,-3.333342;;, + 91;3; 1.728931, 8.787700,-3.333342;;, + 92;3; 1.728931, 8.787700,-3.333342;;, + 93;3; 1.728931, 8.787700,-3.333342;;, + 94;3; 1.728931, 8.787700,-3.333342;;, + 95;3; 1.728931, 8.787700,-3.333342;;, + 96;3; 1.728931, 8.787700,-3.333342;;, + 97;3; 1.728931, 8.787700,-3.333342;;, + 98;3; 1.728931, 8.787700,-3.333342;;, + 99;3; 1.728931, 8.787700,-3.333342;;, + 100;3; 1.728931, 8.787700,-3.333342;;, + 101;3; 1.728931, 8.787700,-3.333342;;, + 102;3; 1.728931, 8.787700,-3.333342;;, + 103;3; 1.728931, 8.787700,-3.333342;;, + 104;3; 1.728931, 8.787700,-3.333342;;, + 105;3; 1.728931, 8.787700,-3.333342;;, + 106;3; 1.728931, 8.787700,-3.333342;;, + 107;3; 1.728931, 8.787700,-3.333342;;, + 108;3; 1.728931, 8.787700,-3.333342;;, + 109;3; 1.728931, 8.787700,-3.333342;;, + 110;3; 1.728931, 8.787700,-3.333342;;, + 111;3; 1.728931, 8.787700,-3.333342;;, + 112;3; 1.728931, 8.787700,-3.333342;;, + 113;3; 1.728931, 8.787700,-3.333342;;, + 114;3; 1.728931, 8.787700,-3.333342;;, + 115;3; 1.728931, 8.787700,-3.333342;;, + 116;3; 1.728931, 8.787700,-3.333342;;, + 117;3; 1.728931, 8.787700,-3.333342;;, + 118;3; 1.728931, 8.787700,-3.333342;;, + 119;3; 1.728931, 8.787700,-3.333342;;, + 120;3; 1.728931, 8.787700,-3.333342;;, + 121;3; 1.728931, 8.787700,-3.333342;;, + 122;3; 1.728931, 8.787700,-3.333342;;, + 123;3; 1.728931, 8.787700,-3.333342;;, + 124;3; 1.728931, 8.787700,-3.333342;;, + 125;3; 1.728931, 8.787700,-3.333342;;, + 126;3; 1.728931, 8.787700,-3.333342;;, + 127;3; 1.728931, 8.787700,-3.333342;;, + 128;3; 1.728931, 8.787700,-3.333342;;, + 129;3; 1.728931, 8.787700,-3.333342;;, + 130;3; 1.728931, 8.787700,-3.333342;;, + 131;3; 1.728931, 8.787700,-3.333342;;, + 132;3; 1.728931, 8.787700,-3.333342;;, + 133;3; 1.728931, 8.787700,-3.333342;;, + 134;3; 1.728931, 8.787700,-3.333342;;, + 135;3; 1.728931, 8.787700,-3.333342;;, + 136;3; 1.728931, 8.787700,-3.333342;;, + 137;3; 1.728931, 8.787700,-3.333342;;, + 138;3; 1.728931, 8.787700,-3.333342;;, + 139;3; 1.728931, 8.787700,-3.333342;;, + 140;3; 1.728931, 8.787700,-3.333342;;, + 141;3; 1.728931, 8.787700,-3.333342;;, + 142;3; 1.728931, 8.787700,-3.333342;;, + 143;3; 1.728931, 8.787700,-3.333342;;, + 144;3; 1.728931, 8.787700,-3.333342;;, + 145;3; 1.728931, 8.787700,-3.333342;;, + 146;3; 1.728931, 8.787700,-3.333342;;, + 147;3; 1.728931, 8.787700,-3.333342;;, + 148;3; 1.728931, 8.787700,-3.333342;;, + 149;3; 1.728931, 8.787700,-3.333342;;, + 150;3; 1.728931, 8.787700,-3.333342;;, + 151;3; 1.728931, 8.787700,-3.333342;;, + 152;3; 1.728931, 8.787700,-3.333342;;, + 153;3; 1.728931, 8.787700,-3.333342;;, + 154;3; 1.728931, 8.787700,-3.333342;;, + 155;3; 1.728931, 8.787700,-3.333342;;, + 156;3; 1.728931, 8.787700,-3.333342;;, + 157;3; 1.728931, 8.787700,-3.333342;;, + 158;3; 1.728931, 8.787700,-3.333342;;, + 159;3; 1.728931, 8.787701,-3.333342;;, + 160;3; 1.728930, 8.787700,-3.333341;;, + 161;3; 1.728930, 8.787700,-3.333341;;, + 162;3; 1.728931, 8.787700,-3.333342;;, + 163;3; 1.728931, 8.787700,-3.333342;;, + 164;3; 1.728930, 8.787700,-3.333342;;, + 165;3; 1.728930, 8.787700,-3.333342;;, + 166;3; 1.728930, 8.787700,-3.333342;;, + 167;3; 1.728930, 8.787700,-3.333342;;, + 168;3; 1.728930, 8.787700,-3.333342;;, + 169;3; 1.728930, 8.787700,-3.333342;;, + 170;3; 1.728930, 8.787700,-3.333342;;, + 171;3; 1.728930, 8.787700,-3.333342;;, + 172;3; 1.728930, 8.787700,-3.333342;;, + 173;3; 1.728930, 8.787700,-3.333342;;, + 174;3; 1.728930, 8.787700,-3.333342;;, + 175;3; 1.728930, 8.787700,-3.333342;;, + 176;3; 1.728930, 8.787700,-3.333342;;, + 177;3; 1.728930, 8.787700,-3.333342;;, + 178;3; 1.728930, 8.787700,-3.333342;;, + 179;3; 1.728930, 8.787700,-3.333342;;; + } + } + Animation { + {Cow_Rig_Head} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 1;4;-0.999945, 0.007153,-0.000003,-0.000000;;, + 2;4;-0.999837, 0.011033,-0.000003,-0.000000;;, + 3;4;-0.999698, 0.016016,-0.000003,-0.000000;;, + 4;4;-0.999590, 0.019896,-0.000003,-0.000000;;, + 5;4;-0.999551, 0.021274,-0.000003,-0.000000;;, + 6;4;-0.999576, 0.020670,-0.000003,-0.000000;;, + 7;4;-0.999648, 0.018794,-0.000003,-0.000000;;, + 8;4;-0.999754, 0.015794,-0.000003,-0.000000;;, + 9;4;-0.999863, 0.012205,-0.000003,-0.000000;;, + 10;4;-0.999945, 0.008711,-0.000003,-0.000000;;, + 11;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 12;4;-0.999979, 0.002839,-0.000003, 0.000000;;, + 13;4;-0.999938,-0.000656,-0.000003, 0.000000;;, + 14;4;-0.999870,-0.004246,-0.000003, 0.000000;;, + 15;4;-0.999799,-0.007247,-0.000003, 0.000000;;, + 16;4;-0.999748,-0.009123,-0.000003, 0.000000;;, + 17;4;-0.999730,-0.009728,-0.000003, 0.000000;;, + 18;4;-0.999746,-0.008770,-0.000003, 0.000000;;, + 19;4;-0.999791,-0.005983,-0.000003, 0.000000;;, + 20;4;-0.999857,-0.001976,-0.000003, 0.000000;;, + 21;4;-0.999922, 0.002030,-0.000003, 0.000000;;, + 22;4;-0.999968, 0.004818,-0.000003,-0.000000;;, + 23;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 24;4;-0.999962, 0.005775,-0.001619, 0.000009;;, + 25;4;-0.999901, 0.005775,-0.006326, 0.000037;;, + 26;4;-0.999812, 0.005774,-0.013091, 0.000076;;, + 27;4;-0.999723, 0.005774,-0.019856, 0.000115;;, + 28;4;-0.999662, 0.005773,-0.024562, 0.000142;;, + 29;4;-0.999641, 0.005773,-0.026179, 0.000151;;, + 30;4;-0.999662, 0.005773,-0.025158, 0.000145;;, + 31;4;-0.999723, 0.005774,-0.021990, 0.000127;;, + 32;4;-0.999812, 0.005774,-0.016923, 0.000098;;, + 33;4;-0.999901, 0.005775,-0.010862, 0.000063;;, + 34;4;-0.999962, 0.005775,-0.004961, 0.000029;;, + 35;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 36;4;-0.999962, 0.005775, 0.004956,-0.000029;;, + 37;4;-0.999901, 0.005775, 0.010857,-0.000063;;, + 38;4;-0.999812, 0.005774, 0.016918,-0.000098;;, + 39;4;-0.999723, 0.005774, 0.021985,-0.000127;;, + 40;4;-0.999662, 0.005773, 0.025153,-0.000145;;, + 41;4;-0.999641, 0.005773, 0.026174,-0.000151;;, + 42;4;-0.999653, 0.005773, 0.025266,-0.000146;;, + 43;4;-0.999688, 0.005773, 0.022554,-0.000131;;, + 44;4;-0.999744, 0.005774, 0.018286,-0.000106;;, + 45;4;-0.999812, 0.005774, 0.013086,-0.000077;;, + 46;4;-0.999880, 0.005775, 0.007886,-0.000047;;, + 47;4;-0.999936, 0.005775, 0.003617,-0.000022;;, + 48;4;-0.999971, 0.005775, 0.000906,-0.000006;;, + 49;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 50;4;-0.995667,-0.011278,-0.000002, 0.000001;;, + 51;4;-0.982775,-0.062162,-0.000002, 0.000001;;, + 52;4;-0.962455,-0.142241,-0.000002, 0.000001;;, + 53;4;-0.937658,-0.239769,-0.000002, 0.000002;;, + 54;4;-0.912788,-0.337296,-0.000002, 0.000001;;, + 55;4;-0.892259,-0.417377,-0.000002, 0.000001;;, + 56;4;-0.879049,-0.468263,-0.000002, 0.000001;;, + 57;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 58;4;-0.873959,-0.485279, 0.001880,-0.003389;;, + 59;4;-0.873694,-0.485164, 0.007180,-0.012938;;, + 60;4;-0.873556,-0.485014, 0.013985,-0.025198;;, + 61;4;-0.873511,-0.484898, 0.019285,-0.034747;;, + 62;4;-0.873505,-0.484856, 0.021167,-0.038137;;, + 63;4;-0.873505,-0.484856, 0.017404,-0.031357;;, + 64;4;-0.873505,-0.484856, 0.006803,-0.012261;;, + 65;4;-0.873505,-0.484857,-0.006808, 0.012258;;, + 66;4;-0.873505,-0.484857,-0.017408, 0.031355;;, + 67;4;-0.873505,-0.484857,-0.021171, 0.038134;;, + 68;4;-0.873511,-0.484898,-0.019290, 0.034745;;, + 69;4;-0.873556,-0.485015,-0.013990, 0.025198;;, + 70;4;-0.873694,-0.485164,-0.007184, 0.012939;;, + 71;4;-0.873959,-0.485279,-0.001884, 0.003392;;, + 72;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 73;4;-0.882425,-0.454949,-0.000002, 0.000000;;, + 74;4;-0.905131,-0.366639,-0.000002, 0.000000;;, + 75;4;-0.937534,-0.239770,-0.000002, 0.000001;;, + 76;4;-0.969841,-0.112901,-0.000002, 0.000001;;, + 77;4;-0.992280,-0.024592,-0.000002, 0.000001;;, + 78;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 79;4;-0.998860, 0.005769,-0.000043,-0.006968;;, + 80;4;-0.995481, 0.005749,-0.000164,-0.027937;;, + 81;4;-0.989986, 0.005717,-0.000361,-0.062028;;, + 82;4;-0.982799, 0.005676,-0.000618,-0.106614;;, + 83;4;-0.974658, 0.005629,-0.000910,-0.157119;;, + 84;4;-0.966517, 0.005581,-0.001201,-0.207623;;, + 85;4;-0.959330, 0.005540,-0.001459,-0.252203;;, + 86;4;-0.953836, 0.005508,-0.001656,-0.286288;;, + 87;4;-0.950457, 0.005488,-0.001777,-0.307251;;, + 88;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 89;4;-0.950457, 0.005488,-0.001792,-0.309884;;, + 90;4;-0.953836, 0.005508,-0.001714,-0.296428;;, + 91;4;-0.959330, 0.005540,-0.001582,-0.273571;;, + 92;4;-0.966517, 0.005581,-0.001399,-0.241896;;, + 93;4;-0.974659, 0.005629,-0.001175,-0.203118;;, + 94;4;-0.982800, 0.005676,-0.000926,-0.159976;;, + 95;4;-0.989987, 0.005717,-0.000670,-0.115648;;, + 96;4;-0.995481, 0.005749,-0.000424,-0.072993;;, + 97;4;-0.998860, 0.005769,-0.000199,-0.034058;;, + 98;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 99;4;-0.998860, 0.005769, 0.000194, 0.034058;;, + 100;4;-0.995481, 0.005749, 0.000419, 0.072993;;, + 101;4;-0.989987, 0.005717, 0.000665, 0.115648;;, + 102;4;-0.982800, 0.005675, 0.000921, 0.159976;;, + 103;4;-0.974659, 0.005628, 0.001170, 0.203118;;, + 104;4;-0.966517, 0.005580, 0.001395, 0.241896;;, + 105;4;-0.959330, 0.005538, 0.001577, 0.273571;;, + 106;4;-0.953836, 0.005506, 0.001710, 0.296428;;, + 107;4;-0.950457, 0.005487, 0.001787, 0.309884;;, + 108;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 109;4;-0.950457, 0.005487, 0.001772, 0.307251;;, + 110;4;-0.953836, 0.005507, 0.001651, 0.286288;;, + 111;4;-0.959330, 0.005539, 0.001454, 0.252203;;, + 112;4;-0.966517, 0.005580, 0.001197, 0.207622;;, + 113;4;-0.974658, 0.005628, 0.000905, 0.157118;;, + 114;4;-0.982800, 0.005675, 0.000613, 0.106612;;, + 115;4;-0.989987, 0.005717, 0.000356, 0.062026;;, + 116;4;-0.995481, 0.005749, 0.000159, 0.027935;;, + 117;4;-0.998860, 0.005769, 0.000038, 0.006967;;, + 118;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 119;4;-0.999542,-0.017863,-0.000003,-0.000000;;, + 120;4;-0.998007,-0.043214,-0.000002, 0.000000;;, + 121;4;-0.995747,-0.070680,-0.000002, 0.000000;;, + 122;4;-0.993498,-0.099890,-0.000002, 0.000000;;, + 123;4;-0.991956,-0.123956,-0.000002, 0.000000;;, + 124;4;-0.991417,-0.130738,-0.000002, 0.000000;;, + 125;4;-0.991714,-0.126001,-0.000002, 0.000000;;, + 126;4;-0.992602,-0.111861,-0.000002, 0.000000;;, + 127;4;-0.993998,-0.089600,-0.000002, 0.000000;;, + 128;4;-0.995700,-0.062482,-0.000002, 0.000000;;, + 129;4;-0.997402,-0.035365,-0.000002, 0.000000;;, + 130;4;-0.998799,-0.013103,-0.000003, 0.000000;;, + 131;4;-0.999686, 0.001038,-0.000003,-0.000000;;, + 132;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 133;4;-0.999987, 0.005158,-0.000003,-0.000000;;, + 134;4;-0.999997, 0.003345,-0.000003,-0.000000;;, + 135;4;-1.000014, 0.000408,-0.000003,-0.000000;;, + 136;4;-1.000037,-0.003553,-0.000003,-0.000000;;, + 137;4;-1.000065,-0.008408,-0.000003,-0.000000;;, + 138;4;-1.000098,-0.013993,-0.000003,-0.000000;;, + 139;4;-1.000133,-0.020110,-0.000003,-0.000000;;, + 140;4;-1.000170,-0.026527,-0.000003,-0.000000;;, + 141;4;-1.000207,-0.032979,-0.000003,-0.000000;;, + 142;4;-1.000243,-0.039177,-0.000003,-0.000000;;, + 143;4;-1.000275,-0.044811,-0.000003,-0.000000;;, + 144;4;-1.000303,-0.049563,-0.000003,-0.000000;;, + 145;4;-1.000323,-0.053122,-0.000003,-0.000000;;, + 146;4;-1.000335,-0.055188,-0.000003,-0.000000;;, + 147;4;-1.000337,-0.055492,-0.000003,-0.000000;;, + 148;4;-1.000327,-0.053801,-0.000003,-0.000000;;, + 149;4;-1.000305,-0.049923,-0.000003,-0.000000;;, + 150;4;-1.000269,-0.043714,-0.000003,-0.000000;;, + 151;4;-1.000219,-0.035077,-0.000003,-0.000000;;, + 152;4;-1.000155,-0.023955,-0.000003,-0.000000;;, + 153;4;-1.000076,-0.010332,-0.000003,-0.000000;;, + 154;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 155;4;-0.999323,-0.001479,-0.000519, 0.002265;;, + 156;4;-0.997321,-0.021069,-0.002074, 0.009083;;, + 157;4;-0.994046,-0.049443,-0.004602, 0.020168;;, + 158;4;-0.989742,-0.082896,-0.007909, 0.034667;;, + 159;4;-0.984849,-0.117852,-0.011654, 0.051091;;, + 160;4;-0.979946,-0.151091,-0.015400, 0.067516;;, + 161;4;-0.975615,-0.179905,-0.018707, 0.082015;;, + 162;4;-0.972305,-0.202154,-0.021235, 0.093100;;, + 163;4;-0.970272,-0.216256,-0.022790, 0.099919;;, + 164;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 165;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 166;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 167;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 168;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 169;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 170;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 171;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 172;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 173;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 174;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 175;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 176;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 177;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 178;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 179;4;-0.969597,-0.221126,-0.023306, 0.102184;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.023066,10.494865, 2.240401;;, + 1;3; 0.023066,10.494865, 2.240401;;, + 2;3; 0.023066,10.494865, 2.240401;;, + 3;3; 0.023066,10.494865, 2.240401;;, + 4;3; 0.023066,10.494865, 2.240401;;, + 5;3; 0.023066,10.494865, 2.240401;;, + 6;3; 0.023066,10.494865, 2.240401;;, + 7;3; 0.023066,10.494865, 2.240401;;, + 8;3; 0.023066,10.494865, 2.240401;;, + 9;3; 0.023066,10.494865, 2.240401;;, + 10;3; 0.023066,10.494865, 2.240401;;, + 11;3; 0.023066,10.494865, 2.240401;;, + 12;3; 0.023066,10.494865, 2.240401;;, + 13;3; 0.023066,10.494865, 2.240401;;, + 14;3; 0.023066,10.494865, 2.240401;;, + 15;3; 0.023066,10.494865, 2.240401;;, + 16;3; 0.023066,10.494865, 2.240401;;, + 17;3; 0.023066,10.494865, 2.240401;;, + 18;3; 0.023066,10.494865, 2.240401;;, + 19;3; 0.023066,10.494865, 2.240401;;, + 20;3; 0.023066,10.494865, 2.240401;;, + 21;3; 0.023066,10.494865, 2.240401;;, + 22;3; 0.023066,10.494865, 2.240401;;, + 23;3; 0.023066,10.494865, 2.240401;;, + 24;3; 0.023066,10.494865, 2.240401;;, + 25;3; 0.023066,10.494865, 2.240402;;, + 26;3; 0.023066,10.494865, 2.240401;;, + 27;3; 0.023066,10.494866, 2.240402;;, + 28;3; 0.023066,10.494865, 2.240402;;, + 29;3; 0.023066,10.494865, 2.240402;;, + 30;3; 0.023066,10.494866, 2.240401;;, + 31;3; 0.023066,10.494865, 2.240401;;, + 32;3; 0.023066,10.494866, 2.240401;;, + 33;3; 0.023066,10.494865, 2.240400;;, + 34;3; 0.023066,10.494865, 2.240402;;, + 35;3; 0.023066,10.494865, 2.240401;;, + 36;3; 0.023066,10.494865, 2.240402;;, + 37;3; 0.023066,10.494865, 2.240401;;, + 38;3; 0.023066,10.494866, 2.240402;;, + 39;3; 0.023066,10.494865, 2.240401;;, + 40;3; 0.023066,10.494866, 2.240402;;, + 41;3; 0.023066,10.494865, 2.240401;;, + 42;3; 0.023066,10.494866, 2.240401;;, + 43;3; 0.023066,10.494865, 2.240402;;, + 44;3; 0.023066,10.494865, 2.240402;;, + 45;3; 0.023066,10.494865, 2.240401;;, + 46;3; 0.023066,10.494865, 2.240402;;, + 47;3; 0.023066,10.494866, 2.240401;;, + 48;3; 0.023066,10.494866, 2.240402;;, + 49;3; 0.023066,10.494865, 2.240401;;, + 50;3; 0.023067,10.529997, 1.901121;;, + 51;3; 0.023070,10.633707, 0.978715;;, + 52;3; 0.023075,10.795458,-0.356916;;, + 53;3; 0.023080,10.991475,-1.907127;;, + 54;3; 0.023085,11.187492,-3.457337;;, + 55;3; 0.023090,11.349243,-4.792970;;, + 56;3; 0.023093,11.452953,-5.715377;;, + 57;3; 0.023094,11.488085,-6.054656;;, + 58;3; 0.023094,11.488085,-6.054656;;, + 59;3; 0.023094,11.488085,-6.054656;;, + 60;3; 0.023094,11.488085,-6.054656;;, + 61;3; 0.023094,11.488085,-6.054656;;, + 62;3; 0.023094,11.488085,-6.054656;;, + 63;3; 0.023096,11.488085,-6.054656;;, + 64;3; 0.023103,11.488085,-6.054656;;, + 65;3; 0.023112,11.488085,-6.054656;;, + 66;3; 0.023119,11.488085,-6.054656;;, + 67;3; 0.023121,11.488085,-6.054656;;, + 68;3; 0.023119,11.488085,-6.054656;;, + 69;3; 0.023112,11.488085,-6.054656;;, + 70;3; 0.023103,11.488085,-6.054656;;, + 71;3; 0.023096,11.488085,-6.054656;;, + 72;3; 0.023094,11.488085,-6.054656;;, + 73;3; 0.023092,11.425079,-5.416062;;, + 74;3; 0.023086,11.245809,-3.873902;;, + 75;3; 0.023080,10.991475,-1.907127;;, + 76;3; 0.023074,10.737142, 0.059648;;, + 77;3; 0.023068,10.557871, 1.601807;;, + 78;3; 0.023066,10.494865, 2.240401;;, + 79;3; 0.023066,10.494865, 2.240401;;, + 80;3; 0.023066,10.494865, 2.240401;;, + 81;3; 0.023066,10.494865, 2.240401;;, + 82;3; 0.023066,10.494865, 2.240401;;, + 83;3; 0.023066,10.494865, 2.240401;;, + 84;3; 0.023066,10.494865, 2.240401;;, + 85;3; 0.023066,10.494865, 2.240401;;, + 86;3; 0.023066,10.494865, 2.240401;;, + 87;3; 0.023066,10.494865, 2.240401;;, + 88;3; 0.023066,10.494865, 2.240401;;, + 89;3; 0.023066,10.494865, 2.240401;;, + 90;3; 0.023066,10.494865, 2.240401;;, + 91;3; 0.023066,10.494865, 2.240401;;, + 92;3; 0.023066,10.494865, 2.240401;;, + 93;3; 0.023066,10.494865, 2.240401;;, + 94;3; 0.023066,10.494865, 2.240401;;, + 95;3; 0.023066,10.494865, 2.240401;;, + 96;3; 0.023066,10.494865, 2.240401;;, + 97;3; 0.023066,10.494865, 2.240401;;, + 98;3; 0.023066,10.494865, 2.240401;;, + 99;3; 0.023066,10.494865, 2.240401;;, + 100;3; 0.023066,10.494865, 2.240401;;, + 101;3; 0.023066,10.494865, 2.240401;;, + 102;3; 0.023066,10.494865, 2.240401;;, + 103;3; 0.023066,10.494865, 2.240401;;, + 104;3; 0.023066,10.494865, 2.240401;;, + 105;3; 0.023066,10.494865, 2.240401;;, + 106;3; 0.023066,10.494865, 2.240401;;, + 107;3; 0.023066,10.494865, 2.240401;;, + 108;3; 0.023066,10.494865, 2.240401;;, + 109;3; 0.023066,10.494865, 2.240401;;, + 110;3; 0.023066,10.494865, 2.240401;;, + 111;3; 0.023066,10.494865, 2.240401;;, + 112;3; 0.023066,10.494865, 2.240401;;, + 113;3; 0.023066,10.494865, 2.240401;;, + 114;3; 0.023066,10.494865, 2.240401;;, + 115;3; 0.023066,10.494865, 2.240401;;, + 116;3; 0.023066,10.494865, 2.240401;;, + 117;3; 0.023066,10.494865, 2.240401;;, + 118;3; 0.023066,10.494865, 2.240401;;, + 119;3; 0.023066,10.494865, 2.240401;;, + 120;3; 0.023066,10.494865, 2.240401;;, + 121;3; 0.023066,10.494865, 2.240401;;, + 122;3; 0.023066,10.494865, 2.240401;;, + 123;3; 0.023066,10.494865, 2.240401;;, + 124;3; 0.023066,10.494865, 2.240401;;, + 125;3; 0.023066,10.494865, 2.240401;;, + 126;3; 0.023066,10.494865, 2.240401;;, + 127;3; 0.023066,10.494865, 2.240401;;, + 128;3; 0.023066,10.494865, 2.240401;;, + 129;3; 0.023066,10.494865, 2.240401;;, + 130;3; 0.023066,10.494865, 2.240401;;, + 131;3; 0.023066,10.494865, 2.240401;;, + 132;3; 0.023066,10.494865, 2.240401;;, + 133;3; 0.023066,10.494865, 2.240401;;, + 134;3; 0.023066,10.494865, 2.240401;;, + 135;3; 0.023066,10.494865, 2.240401;;, + 136;3; 0.023066,10.494865, 2.240401;;, + 137;3; 0.023066,10.494865, 2.240401;;, + 138;3; 0.023066,10.494865, 2.240401;;, + 139;3; 0.023066,10.494865, 2.240401;;, + 140;3; 0.023066,10.494865, 2.240401;;, + 141;3; 0.023066,10.494865, 2.240401;;, + 142;3; 0.023066,10.494865, 2.240401;;, + 143;3; 0.023066,10.494865, 2.240401;;, + 144;3; 0.023066,10.494865, 2.240401;;, + 145;3; 0.023066,10.494865, 2.240401;;, + 146;3; 0.023066,10.494865, 2.240401;;, + 147;3; 0.023066,10.494865, 2.240401;;, + 148;3; 0.023066,10.494865, 2.240401;;, + 149;3; 0.023066,10.494865, 2.240401;;, + 150;3; 0.023066,10.494865, 2.240401;;, + 151;3; 0.023066,10.494865, 2.240401;;, + 152;3; 0.023066,10.494865, 2.240401;;, + 153;3; 0.023066,10.494865, 2.240401;;, + 154;3; 0.023066,10.494865, 2.240401;;, + 155;3; 0.023066,10.494865, 2.240401;;, + 156;3; 0.023066,10.494865, 2.240401;;, + 157;3; 0.023066,10.494865, 2.240401;;, + 158;3; 0.023066,10.494865, 2.240402;;, + 159;3; 0.023066,10.494866, 2.240401;;, + 160;3; 0.023066,10.494865, 2.240402;;, + 161;3; 0.023065,10.494865, 2.240401;;, + 162;3; 0.023066,10.494865, 2.240401;;, + 163;3; 0.023066,10.494865, 2.240401;;, + 164;3; 0.023066,10.494864, 2.240401;;, + 165;3; 0.023066,10.494864, 2.240401;;, + 166;3; 0.023066,10.494864, 2.240401;;, + 167;3; 0.023066,10.494864, 2.240401;;, + 168;3; 0.023066,10.494864, 2.240401;;, + 169;3; 0.023066,10.494864, 2.240401;;, + 170;3; 0.023066,10.494864, 2.240401;;, + 171;3; 0.023066,10.494864, 2.240401;;, + 172;3; 0.023066,10.494864, 2.240401;;, + 173;3; 0.023066,10.494864, 2.240401;;, + 174;3; 0.023066,10.494864, 2.240401;;, + 175;3; 0.023066,10.494864, 2.240401;;, + 176;3; 0.023066,10.494864, 2.240401;;, + 177;3; 0.023066,10.494864, 2.240401;;, + 178;3; 0.023066,10.494864, 2.240401;;, + 179;3; 0.023066,10.494864, 2.240401;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/models/mobs_pig.x b/mods/mobs_mc/models/mobs_pig.x new file mode 100644 index 000000000..48ed2ce95 --- /dev/null +++ b/mods/mobs_mc/models/mobs_pig.x @@ -0,0 +1,5998 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Pig_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Pig_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Pig_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 5.152347, 3.904636, 1.000000;; + } + Frame Pig_Rig_Head { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000005, 0.000000, + -0.000000, 0.999933, 0.011550, 0.000000, + -0.000005,-0.011550, 0.999933, 0.000000, + 0.023066, 7.567350, 2.341323, 1.000000;; + } + } // End of Pig_Rig_Head + Frame Pig_Rig_Leg_B_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948, 0.318705,-1.659701, 1.000000;; + } + } // End of Pig_Rig_Leg_B_L + Frame Pig_Rig_Leg_B_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931, 0.318705,-1.659701, 1.000000;; + } + } // End of Pig_Rig_Leg_B_R + Frame Pig_Rig_Leg_F_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948, 6.305928,-1.659701, 1.000000;; + } + } // End of Pig_Rig_Leg_F_L + Frame Pig_Rig_Leg_F_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931, 6.305928,-1.659701, 1.000000;; + } + } // End of Pig_Rig_Leg_F_R + } // End of Pig_Rig_Body + } // End of Pig_Rig_Root + Frame Pig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Pig mesh + 164; + -0.449202; 3.362010; 3.643737;, + -0.449202; 3.362010; 0.020448;, + -0.449200; 1.362010; 0.020448;, + -0.449200; 1.362010; 3.643737;, + -0.449200; 1.362010; 3.643737;, + -0.449200; 1.362010; 0.020448;, + -2.449200; 1.362007; 0.020448;, + -2.449200; 1.362007; 3.643737;, + -2.449200; 1.362007; 3.643737;, + -2.449200; 1.362007; 0.020448;, + -2.449202; 3.362007; 0.020448;, + -2.449202; 3.362007; 3.643737;, + -2.449202; 3.362007; 3.643737;, + -2.449202; 3.362007; 0.020448;, + -0.449202; 3.362010; 0.020448;, + -0.449202; 3.362010; 3.643737;, + -0.449202; 3.362010; 0.020448;, + -2.449202; 3.362007; 0.020448;, + -2.449200; 1.362007; 0.020448;, + -0.449200; 1.362010; 0.020448;, + -2.449202; 3.362007; 3.643737;, + -0.449202; 3.362010; 3.643737;, + -0.449200; 1.362010; 3.643737;, + -2.449200; 1.362007; 3.643737;, + 2.642966; 4.075021; 8.735056;, + 2.642966; 4.075021; 3.560041;, + 2.642976;-4.032038; 3.560041;, + 2.642976;-4.032038; 8.735056;, + 2.642976;-4.032038; 8.735056;, + 2.642976;-4.032038; 3.560041;, + -2.532038;-4.032045; 3.560041;, + -2.532038;-4.032045; 8.735056;, + -2.532038;-4.032045; 8.735056;, + -2.532038;-4.032045; 3.560041;, + -2.532049; 4.075015; 3.560041;, + -2.532049; 4.075015; 8.735056;, + -2.532049; 4.075015; 8.735056;, + -2.532049; 4.075015; 3.560041;, + 2.642966; 4.075021; 3.560041;, + 2.642966; 4.075021; 8.735056;, + 2.642966; 4.075021; 3.560041;, + -2.532049; 4.075015; 3.560041;, + -2.532038;-4.032045; 3.560041;, + 2.642976;-4.032038; 3.560041;, + -2.532049; 4.075015; 8.735056;, + 2.642966; 4.075021; 8.735056;, + 2.642976;-4.032038; 8.735056;, + -2.532038;-4.032045; 8.735056;, + 2.261596; 7.904323; 9.759628;, + 2.261596; 7.904323; 5.347353;, + 2.261602; 3.492046; 5.347353;, + 2.261602; 3.492046; 9.759628;, + 2.261602; 3.492046; 9.759628;, + 2.261602; 3.492046; 5.347353;, + -2.150674; 3.492041; 5.347353;, + -2.150674; 3.492041; 9.759628;, + -2.150674; 3.492041; 9.759628;, + -2.150674; 3.492041; 5.347353;, + -2.150680; 7.904317; 5.347353;, + -2.150680; 7.904317; 9.759628;, + -2.150680; 7.904317; 9.759628;, + -2.150680; 7.904317; 5.347353;, + 2.261596; 7.904323; 5.347353;, + 2.261596; 7.904323; 9.759628;, + 2.261596; 7.904323; 5.347353;, + -2.150680; 7.904317; 5.347353;, + -2.150674; 3.492041; 5.347353;, + 2.261602; 3.492046; 5.347353;, + -2.150680; 7.904317; 9.759628;, + 2.261596; 7.904323; 9.759628;, + 2.261602; 3.492046; 9.759628;, + -2.150674; 3.492041; 9.759628;, + 1.009046; 8.327799; 7.505416;, + 1.009046; 8.327799; 5.968570;, + 1.009047; 7.598929; 5.968570;, + 1.009047; 7.598929; 7.505416;, + -0.990953; 7.598926; 7.505416;, + -0.990953; 7.598926; 5.968570;, + -0.990954; 8.327797; 5.968570;, + -0.990954; 8.327797; 7.505416;, + -0.990954; 8.327797; 7.505416;, + -0.990954; 8.327797; 5.968570;, + 1.009046; 8.327799; 5.968570;, + 1.009046; 8.327799; 7.505416;, + 1.009046; 8.327799; 5.968570;, + -0.990954; 8.327797; 5.968570;, + -0.990953; 7.598926; 5.968570;, + 1.009047; 7.598929; 5.968570;, + -0.990954; 8.327797; 7.505416;, + 1.009046; 8.327799; 7.505416;, + 1.009047; 7.598929; 7.505416;, + -0.990953; 7.598926; 7.505416;, + 2.469560; 3.409090; 3.643737;, + 2.469560; 3.409090; 0.020448;, + 2.469562; 1.409090; 0.020448;, + 2.469562; 1.409090; 3.643737;, + 2.469562; 1.409090; 3.643737;, + 2.469562; 1.409090; 0.020448;, + 0.469562; 1.409088; 0.020448;, + 0.469562; 1.409088; 3.643737;, + 0.469562; 1.409088; 3.643737;, + 0.469562; 1.409088; 0.020448;, + 0.469560; 3.409088; 0.020448;, + 0.469560; 3.409088; 3.643737;, + 0.469560; 3.409088; 3.643737;, + 0.469560; 3.409088; 0.020448;, + 2.469560; 3.409090; 0.020448;, + 2.469560; 3.409090; 3.643737;, + 2.469560; 3.409090; 0.020448;, + 0.469560; 3.409088; 0.020448;, + 0.469562; 1.409088; 0.020448;, + 2.469562; 1.409090; 0.020448;, + 0.469560; 3.409088; 3.643737;, + 2.469560; 3.409090; 3.643737;, + 2.469562; 1.409090; 3.643737;, + 0.469562; 1.409088; 3.643737;, + 2.634302;-2.530417; 3.643737;, + 2.634302;-2.530417; 0.020448;, + 2.634305;-4.530418; 0.020448;, + 2.634305;-4.530418; 3.643737;, + 2.634305;-4.530418; 3.643737;, + 2.634305;-4.530418; 0.020448;, + 0.634305;-4.530420; 0.020448;, + 0.634305;-4.530420; 3.643737;, + 0.634305;-4.530420; 3.643737;, + 0.634305;-4.530420; 0.020448;, + 0.634302;-2.530420; 0.020448;, + 0.634302;-2.530420; 3.643737;, + 0.634302;-2.530420; 3.643737;, + 0.634302;-2.530420; 0.020448;, + 2.634302;-2.530417; 0.020448;, + 2.634302;-2.530417; 3.643737;, + 2.634302;-2.530417; 0.020448;, + 0.634302;-2.530420; 0.020448;, + 0.634305;-4.530420; 0.020448;, + 2.634305;-4.530418; 0.020448;, + 0.634302;-2.530420; 3.643737;, + 2.634302;-2.530417; 3.643737;, + 2.634305;-4.530418; 3.643737;, + 0.634305;-4.530420; 3.643737;, + -0.535544;-2.467658; 3.643737;, + -0.535544;-2.467658; 0.020448;, + -0.535542;-4.467658; 0.020448;, + -0.535542;-4.467658; 3.643737;, + -0.535542;-4.467658; 3.643737;, + -0.535542;-4.467658; 0.020448;, + -2.535542;-4.467660; 0.020448;, + -2.535542;-4.467660; 3.643737;, + -2.535542;-4.467660; 3.643737;, + -2.535542;-4.467660; 0.020448;, + -2.535544;-2.467660; 0.020448;, + -2.535544;-2.467660; 3.643737;, + -2.535544;-2.467660; 3.643737;, + -2.535544;-2.467660; 0.020448;, + -0.535544;-2.467658; 0.020448;, + -0.535544;-2.467658; 3.643737;, + -0.535544;-2.467658; 0.020448;, + -2.535544;-2.467660; 0.020448;, + -2.535542;-4.467660; 0.020448;, + -0.535542;-4.467658; 0.020448;, + -2.535544;-2.467660; 3.643737;, + -0.535544;-2.467658; 3.643737;, + -0.535542;-4.467658; 3.643737;, + -2.535542;-4.467660; 3.643737;; + 41; + 4;0,1,2,3;, + 4;4,5,6,7;, + 4;8,9,10,11;, + 4;12,13,14,15;, + 4;16,17,18,19;, + 4;20,21,22,23;, + 4;24,25,26,27;, + 4;28,29,30,31;, + 4;32,33,34,35;, + 4;36,37,38,39;, + 4;40,41,42,43;, + 4;44,45,46,47;, + 4;48,49,50,51;, + 4;52,53,54,55;, + 4;56,57,58,59;, + 4;60,61,62,63;, + 4;64,65,66,67;, + 4;68,69,70,71;, + 4;72,73,74,75;, + 4;76,77,78,79;, + 4;80,81,82,83;, + 4;84,85,86,87;, + 4;88,89,90,91;, + 4;92,93,94,95;, + 4;96,97,98,99;, + 4;100,101,102,103;, + 4;104,105,106,107;, + 4;108,109,110,111;, + 4;112,113,114,115;, + 4;116,117,118,119;, + 4;120,121,122,123;, + 4;124,125,126,127;, + 4;128,129,130,131;, + 4;132,133,134,135;, + 4;136,137,138,139;, + 4;140,141,142,143;, + 4;144,145,146,147;, + 4;148,149,150,151;, + 4;152,153,154,155;, + 4;156,157,158,159;, + 4;160,161,162,163;; + MeshNormals { // Pig normals + 41; + -1.000000;-0.000001; 0.000000;, + -0.000001; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000001; 0.000000;, + -0.000001; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000001; 0.000000;, + -0.000001; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000001; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000001; 0.000000;, + -0.000001; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000001; 0.000000;, + -0.000001; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;, + -1.000000;-0.000001; 0.000000;, + -0.000001; 1.000000; 0.000000;, + 1.000000; 0.000001; 0.000000;, + 0.000001;-1.000000; 0.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000; 0.000000;-1.000000;; + 41; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;, + 4;36,36,36,36;, + 4;37,37,37,37;, + 4;38,38,38,38;, + 4;39,39,39,39;, + 4;40,40,40,40;; + } // End of Pig normals + MeshTextureCoords { // Pig UV coordinates + 164; + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.437500; 0.500000;, + 0.562500; 0.500000;, + 0.562500; 1.000000;, + 0.437500; 1.000000;, + 0.718750; 0.500000;, + 0.718750; 0.250000;, + 0.875000; 0.250000;, + 0.875000; 0.500000;, + 0.718750; 0.500000;, + 0.875000; 0.500000;, + 0.875000; 1.000000;, + 0.718750; 1.000000;, + 0.718750; 0.250000;, + 0.718750; 0.500000;, + 0.562500; 0.500000;, + 0.562500; 0.250000;, + 0.562500; 0.500000;, + 0.718750; 0.500000;, + 0.718750; 1.000000;, + 0.562500; 1.000000;, + 0.875000; 0.500000;, + 1.000000; 0.500000;, + 1.000000; 1.000000;, + 0.875000; 1.000000;, + 0.000000; 0.500000;, + 0.000000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.500000;, + 0.250000; 0.250000;, + 0.250000; 0.000000;, + 0.375000; 0.000000;, + 0.375000; 0.250000;, + 0.375000; 0.250000;, + 0.375000; 0.500000;, + 0.250000; 0.500000;, + 0.250000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.250000;, + 0.250000; 0.000000;, + 0.375000; 0.000000;, + 0.375000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.000000;, + 0.250000; 0.000000;, + 0.265625; 0.531250;, + 0.265625; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 0.531250;, + 0.343750; 0.531250;, + 0.343750; 0.625000;, + 0.328125; 0.625000;, + 0.328125; 0.531250;, + 0.328125; 0.531250;, + 0.328125; 0.625000;, + 0.265625; 0.625000;, + 0.265625; 0.531250;, + 0.265625; 0.609375;, + 0.328125; 0.609375;, + 0.328125; 0.625000;, + 0.265625; 0.625000;, + 0.328125; 0.531250;, + 0.265625; 0.531250;, + 0.265625; 0.500000;, + 0.328125; 0.500000;, + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.000000; 0.812500;, + 0.000000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.812500;, + 0.250000; 0.625000;, + 0.250000; 0.812500;, + 0.187500; 0.812500;, + 0.187500; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.812500;, + 0.125000; 0.812500;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.812500;, + 0.062500; 0.812500;, + 0.062500; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;; + } // End of Pig UV coordinates + MeshMaterialList { // Pig material list + 1; + 41; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Pig_Mat { + 0.627786; 0.627786; 0.627786; 1.000000;; + 96.078431; + 0.011450; 0.011450; 0.011450;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"pig.png";} + } + } // End of Pig material list + XSkinMeshHeader { + 1; + 3; + 7; + } + SkinWeights { + "Pig_Rig_Leg_F_L"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.760948, 3.492646,-2.401293, 1.000000;; + } // End of Pig_Rig_Leg_F_L skin weights + SkinWeights { + "Pig_Rig_Leg_B_R"; + 24; + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.728932, 3.492647, 3.585929, 1.000000;; + } // End of Pig_Rig_Leg_B_R skin weights + SkinWeights { + "Pig_Rig_Body"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 3.904635,-5.152347, 1.000000;; + } // End of Pig_Rig_Body skin weights + SkinWeights { + "Pig_Rig_Root"; + 0; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } // End of Pig_Rig_Root skin weights + SkinWeights { + "Pig_Rig_Leg_B_L"; + 24; + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.760947, 3.492647, 3.585930, 1.000000;; + } // End of Pig_Rig_Leg_B_L skin weights + SkinWeights { + "Pig_Rig_Leg_F_R"; + 24; + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.728930, 3.492646,-2.401294, 1.000000;; + } // End of Pig_Rig_Leg_F_R skin weights + SkinWeights { + "Pig_Rig_Head"; + 44; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000005, 0.000000, + -0.000000, 0.999933,-0.011550, 0.000000, + 0.000005, 0.011550, 0.999933, 0.000000, + -0.023103,-3.749022,-7.450867, 1.000000;; + } // End of Pig_Rig_Head skin weights + } // End of Pig mesh + } // End of Pig + } // End of Pig_Rig +} // End of Root +AnimationSet Global { + Animation { + {Pig} + AnimationKey { // Rotation + 0; + 180; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Pig_Rig} + AnimationKey { // Rotation + 0; + 180; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Pig_Rig_Root} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 158;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 159;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 160;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 163;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 164;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 165;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 166;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 167;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Pig_Rig_Body} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 24;4;-0.707100,-0.707100, 0.000762,-0.000762;;, + 25;4;-0.707081,-0.707081, 0.002981,-0.002981;;, + 26;4;-0.707053,-0.707053, 0.006170,-0.006170;;, + 27;4;-0.707025,-0.707025, 0.009360,-0.009360;;, + 28;4;-0.707006,-0.707006, 0.011578,-0.011578;;, + 29;4;-0.706999,-0.706999, 0.012341,-0.012341;;, + 30;4;-0.707006,-0.707006, 0.011859,-0.011859;;, + 31;4;-0.707025,-0.707025, 0.010366,-0.010366;;, + 32;4;-0.707053,-0.707053, 0.007977,-0.007977;;, + 33;4;-0.707081,-0.707081, 0.005120,-0.005120;;, + 34;4;-0.707100,-0.707100, 0.002338,-0.002338;;, + 35;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 36;4;-0.707100,-0.707100,-0.002338, 0.002338;;, + 37;4;-0.707081,-0.707081,-0.005120, 0.005120;;, + 38;4;-0.707053,-0.707053,-0.007977, 0.007977;;, + 39;4;-0.707025,-0.707025,-0.010366, 0.010366;;, + 40;4;-0.707006,-0.707006,-0.011859, 0.011859;;, + 41;4;-0.706999,-0.706999,-0.012341, 0.012341;;, + 42;4;-0.707003,-0.707003,-0.011912, 0.011912;;, + 43;4;-0.707014,-0.707014,-0.010634, 0.010634;;, + 44;4;-0.707032,-0.707032,-0.008622, 0.008622;;, + 45;4;-0.707053,-0.707053,-0.006170, 0.006170;;, + 46;4;-0.707074,-0.707074,-0.003719, 0.003719;;, + 47;4;-0.707092,-0.707092,-0.001707, 0.001707;;, + 48;4;-0.707103,-0.707103,-0.000428, 0.000428;;, + 49;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 158;4;-0.697711,-0.697711,-0.022700, 0.022700;;, + 159;4;-0.669922,-0.669922,-0.089721, 0.089721;;, + 160;4;-0.627593,-0.627593,-0.191701, 0.191701;;, + 161;4;-0.579576,-0.579576,-0.307439, 0.307439;;, + 162;4;-0.537223,-0.537223,-0.409744, 0.409744;;, + 163;4;-0.509408,-0.509408,-0.477140, 0.477140;;, + 164;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 165;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 166;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 167;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 168;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 169;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 170;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 171;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 172;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 173;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 174;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 175;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 176;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 177;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 178;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 179;4;-0.500000,-0.500000,-0.500000, 0.500000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.000000, 5.152347, 3.904636;;, + 1;3; 0.000000, 5.152347, 3.904636;;, + 2;3; 0.000000, 5.152347, 3.904636;;, + 3;3; 0.000000, 5.152347, 3.904636;;, + 4;3; 0.000000, 5.152347, 3.904636;;, + 5;3; 0.000000, 5.152347, 3.904636;;, + 6;3; 0.000000, 5.152347, 3.904636;;, + 7;3; 0.000000, 5.152347, 3.904636;;, + 8;3; 0.000000, 5.152347, 3.904636;;, + 9;3; 0.000000, 5.152347, 3.904636;;, + 10;3; 0.000000, 5.152347, 3.904636;;, + 11;3; 0.000000, 5.152347, 3.904636;;, + 12;3; 0.000000, 5.152347, 3.904636;;, + 13;3; 0.000000, 5.152347, 3.904636;;, + 14;3; 0.000000, 5.152347, 3.904636;;, + 15;3; 0.000000, 5.152347, 3.904636;;, + 16;3; 0.000000, 5.152347, 3.904636;;, + 17;3; 0.000000, 5.152347, 3.904636;;, + 18;3; 0.000000, 5.152347, 3.904636;;, + 19;3; 0.000000, 5.152347, 3.904636;;, + 20;3; 0.000000, 5.152347, 3.904636;;, + 21;3; 0.000000, 5.152347, 3.904636;;, + 22;3; 0.000000, 5.152347, 3.904636;;, + 23;3; 0.000000, 5.152347, 3.904636;;, + 24;3; 0.000000, 5.152347, 3.904636;;, + 25;3; 0.000000, 5.152347, 3.904636;;, + 26;3; 0.000000, 5.152347, 3.904636;;, + 27;3; 0.000000, 5.152347, 3.904636;;, + 28;3; 0.000000, 5.152347, 3.904636;;, + 29;3; 0.000000, 5.152347, 3.904636;;, + 30;3; 0.000000, 5.152347, 3.904636;;, + 31;3; 0.000000, 5.152347, 3.904636;;, + 32;3; 0.000000, 5.152347, 3.904636;;, + 33;3; 0.000000, 5.152347, 3.904636;;, + 34;3; 0.000000, 5.152347, 3.904636;;, + 35;3; 0.000000, 5.152347, 3.904636;;, + 36;3; 0.000000, 5.152347, 3.904636;;, + 37;3; 0.000000, 5.152347, 3.904636;;, + 38;3; 0.000000, 5.152347, 3.904636;;, + 39;3; 0.000000, 5.152347, 3.904636;;, + 40;3; 0.000000, 5.152347, 3.904636;;, + 41;3; 0.000000, 5.152347, 3.904636;;, + 42;3; 0.000000, 5.152347, 3.904636;;, + 43;3; 0.000000, 5.152347, 3.904636;;, + 44;3; 0.000000, 5.152347, 3.904636;;, + 45;3; 0.000000, 5.152347, 3.904636;;, + 46;3; 0.000000, 5.152347, 3.904636;;, + 47;3; 0.000000, 5.152347, 3.904636;;, + 48;3; 0.000000, 5.152347, 3.904636;;, + 49;3; 0.000000, 5.152347, 3.904636;;, + 50;3; 0.000000, 5.152347, 3.904636;;, + 51;3; 0.000000, 5.152347, 3.904636;;, + 52;3; 0.000000, 5.152347, 3.904636;;, + 53;3; 0.000000, 5.152347, 3.904636;;, + 54;3; 0.000000, 5.152347, 3.904636;;, + 55;3; 0.000000, 5.152347, 3.904636;;, + 56;3; 0.000000, 5.152347, 3.904636;;, + 57;3; 0.000000, 5.152347, 3.904636;;, + 58;3; 0.000000, 5.152347, 3.904636;;, + 59;3; 0.000000, 5.152347, 3.904636;;, + 60;3; 0.000000, 5.152347, 3.904636;;, + 61;3; 0.000000, 5.152347, 3.904636;;, + 62;3; 0.000000, 5.152347, 3.904636;;, + 63;3; 0.000000, 5.152347, 3.904636;;, + 64;3; 0.000000, 5.152347, 3.904636;;, + 65;3; 0.000000, 5.152347, 3.904636;;, + 66;3; 0.000000, 5.152347, 3.904636;;, + 67;3; 0.000000, 5.152347, 3.904636;;, + 68;3; 0.000000, 5.152347, 3.904636;;, + 69;3; 0.000000, 5.152347, 3.904636;;, + 70;3; 0.000000, 5.152347, 3.904636;;, + 71;3; 0.000000, 5.152347, 3.904636;;, + 72;3; 0.000000, 5.152347, 3.904636;;, + 73;3; 0.000000, 5.152347, 3.904636;;, + 74;3; 0.000000, 5.152347, 3.904636;;, + 75;3; 0.000000, 5.152347, 3.904636;;, + 76;3; 0.000000, 5.152347, 3.904636;;, + 77;3; 0.000000, 5.152347, 3.904636;;, + 78;3; 0.000000, 5.152347, 3.904636;;, + 79;3; 0.000000, 5.152347, 3.904636;;, + 80;3; 0.000000, 5.152347, 3.904636;;, + 81;3; 0.000000, 5.152347, 3.904636;;, + 82;3; 0.000000, 5.152347, 3.904636;;, + 83;3; 0.000000, 5.152347, 3.904636;;, + 84;3; 0.000000, 5.152347, 3.904636;;, + 85;3; 0.000000, 5.152347, 3.904636;;, + 86;3; 0.000000, 5.152347, 3.904636;;, + 87;3; 0.000000, 5.152347, 3.904636;;, + 88;3; 0.000000, 5.152347, 3.904636;;, + 89;3; 0.000000, 5.152347, 3.904636;;, + 90;3; 0.000000, 5.152347, 3.904636;;, + 91;3; 0.000000, 5.152347, 3.904636;;, + 92;3; 0.000000, 5.152347, 3.904636;;, + 93;3; 0.000000, 5.152347, 3.904636;;, + 94;3; 0.000000, 5.152347, 3.904636;;, + 95;3; 0.000000, 5.152347, 3.904636;;, + 96;3; 0.000000, 5.152347, 3.904636;;, + 97;3; 0.000000, 5.152347, 3.904636;;, + 98;3; 0.000000, 5.152347, 3.904636;;, + 99;3; 0.000000, 5.152347, 3.904636;;, + 100;3; 0.000000, 5.152347, 3.904636;;, + 101;3; 0.000000, 5.152347, 3.904636;;, + 102;3; 0.000000, 5.152347, 3.904636;;, + 103;3; 0.000000, 5.152347, 3.904636;;, + 104;3; 0.000000, 5.152347, 3.904636;;, + 105;3; 0.000000, 5.152347, 3.904636;;, + 106;3; 0.000000, 5.152347, 3.904636;;, + 107;3; 0.000000, 5.152347, 3.904636;;, + 108;3; 0.000000, 5.152347, 3.904636;;, + 109;3; 0.000000, 5.152347, 3.904636;;, + 110;3; 0.000000, 5.152347, 3.904636;;, + 111;3; 0.000000, 5.152347, 3.904636;;, + 112;3; 0.000000, 5.152347, 3.904636;;, + 113;3; 0.000000, 5.152347, 3.904636;;, + 114;3; 0.000000, 5.152347, 3.904636;;, + 115;3; 0.000000, 5.152347, 3.904636;;, + 116;3; 0.000000, 5.152347, 3.904636;;, + 117;3; 0.000000, 5.152347, 3.904636;;, + 118;3; 0.000000, 5.152347, 3.904636;;, + 119;3; 0.000000, 5.672426, 3.904636;;, + 120;3; 0.000000, 6.215568, 3.904636;;, + 121;3; 0.000000, 6.702937, 3.904636;;, + 122;3; 0.000000, 7.095211, 3.904636;;, + 123;3; 0.000000, 7.359063, 3.904636;;, + 124;3; 0.000000, 7.457027, 3.904636;;, + 125;3; 0.000000, 7.377068, 3.904636;;, + 126;3; 0.000000, 7.139115, 3.904636;;, + 127;3; 0.000000, 6.765270, 3.904636;;, + 128;3; 0.000000, 6.309688, 3.904636;;, + 129;3; 0.000000, 5.852528, 3.904636;;, + 130;3; 0.000000, 5.475046, 3.904636;;, + 131;3; 0.000000, 5.233674, 3.904636;;, + 132;3; 0.000000, 5.152347, 3.904636;;, + 133;3; 0.000000, 5.152277, 3.904636;;, + 134;3; 0.000000, 5.152087, 3.904636;;, + 135;3; 0.000000, 5.151798, 3.904636;;, + 136;3; 0.000000, 5.151428, 3.904636;;, + 137;3; 0.000000, 5.150994, 3.904636;;, + 138;3; 0.000000, 5.150508, 3.904636;;, + 139;3; 0.000000, 5.149982, 3.904636;;, + 140;3; 0.000000, 5.149428, 3.904636;;, + 141;3; 0.000000, 5.148856, 3.904636;;, + 142;3; 0.000000, 5.148277, 3.904636;;, + 143;3; 0.000000, 5.147702, 3.904636;;, + 144;3; 0.000000, 5.147144, 3.904636;;, + 145;3; 0.000000, 5.146616, 3.904636;;, + 146;3; 0.000000, 5.146135, 3.904636;;, + 147;3; 0.000000, 5.145720, 3.904636;;, + 148;3; 0.000000, 5.145399, 3.904636;;, + 149;3; 0.000000, 5.145207, 3.904636;;, + 150;3; 0.000000, 5.145200, 3.904636;;, + 151;3; 0.000000, 5.145466, 3.904636;;, + 152;3; 0.000000, 5.146174, 3.904636;;, + 153;3; 0.000000, 5.147733, 3.904636;;, + 154;3; 0.000000, 5.152347, 3.904636;;, + 155;3; 0.000000, 5.774442, 3.904636;;, + 156;3; 0.000000, 6.735393, 3.904636;;, + 157;3; 0.000000, 7.152347, 3.904636;;, + 158;3;-0.011617, 6.994819, 3.904636;;, + 159;3;-0.045976, 6.605898, 3.904636;;, + 160;3;-0.098318, 6.057001, 3.904636;;, + 161;3;-0.157691, 5.383482, 3.904636;;, + 162;3;-0.210054, 4.601677, 3.904636;;, + 163;3;-0.244439, 3.709204, 3.904636;;, + 164;3;-0.256067, 2.559664, 3.904636;;, + 165;3;-0.256067, 2.559664, 3.904636;;, + 166;3;-0.256067, 2.559664, 3.904636;;, + 167;3;-0.256067, 2.559664, 3.904636;;, + 168;3;-0.256067, 2.559664, 3.904636;;, + 169;3;-0.256067, 2.559664, 3.904636;;, + 170;3;-0.256067, 2.559664, 3.904636;;, + 171;3;-0.256067, 2.559664, 3.904636;;, + 172;3;-0.256067, 2.559664, 3.904636;;, + 173;3;-0.256067, 2.559664, 3.904636;;, + 174;3;-0.256067, 2.559664, 3.904636;;, + 175;3;-0.256067, 2.559664, 3.904636;;, + 176;3;-0.256067, 2.559664, 3.904636;;, + 177;3;-0.256067, 2.559664, 3.904636;;, + 178;3;-0.256067, 2.559664, 3.904636;;, + 179;3;-0.256067, 2.559664, 3.904636;;; + } + } + Animation { + {Pig_Rig_Leg_B_L} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.677652,-0.732304, 0.001104,-0.001104;;, + 156;4;-0.614838,-0.785491, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.555869,-0.832037, 0.004091,-0.004091;;, + 159;4;-0.541254,-0.842217, 0.003516,-0.003516;;, + 160;4;-0.530481,-0.849211, 0.002640,-0.002640;;, + 161;4;-0.523690,-0.853119, 0.001646,-0.001646;;, + 162;4;-0.520229,-0.854693, 0.000770,-0.000770;;, + 163;4;-0.518938,-0.855000, 0.000194,-0.000194;;, + 164;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 165;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 166;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 167;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 168;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 169;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 170;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 171;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 172;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 173;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 174;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 175;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 176;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 177;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 178;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 179;4;-0.518701,-0.854956, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.760948, 0.318705,-1.659701;;, + 1;3;-1.760948, 0.318705,-1.659701;;, + 2;3;-1.760948, 0.318705,-1.659701;;, + 3;3;-1.760948, 0.318705,-1.659701;;, + 4;3;-1.760948, 0.318705,-1.659701;;, + 5;3;-1.760948, 0.318705,-1.659701;;, + 6;3;-1.760948, 0.318705,-1.659701;;, + 7;3;-1.760948, 0.318705,-1.659701;;, + 8;3;-1.760948, 0.318705,-1.659701;;, + 9;3;-1.760948, 0.318705,-1.659701;;, + 10;3;-1.760948, 0.318705,-1.659701;;, + 11;3;-1.760948, 0.318705,-1.659701;;, + 12;3;-1.760948, 0.318705,-1.659701;;, + 13;3;-1.760948, 0.318705,-1.659701;;, + 14;3;-1.760948, 0.318705,-1.659701;;, + 15;3;-1.760948, 0.318705,-1.659701;;, + 16;3;-1.760948, 0.318705,-1.659701;;, + 17;3;-1.760948, 0.318705,-1.659701;;, + 18;3;-1.760948, 0.318705,-1.659701;;, + 19;3;-1.760948, 0.318705,-1.659701;;, + 20;3;-1.760948, 0.318705,-1.659701;;, + 21;3;-1.760948, 0.318705,-1.659701;;, + 22;3;-1.760948, 0.318705,-1.659701;;, + 23;3;-1.760948, 0.318705,-1.659701;;, + 24;3;-1.760948, 0.318705,-1.659701;;, + 25;3;-1.760948, 0.318705,-1.659701;;, + 26;3;-1.760948, 0.318705,-1.659701;;, + 27;3;-1.760948, 0.318705,-1.659701;;, + 28;3;-1.760948, 0.318705,-1.659701;;, + 29;3;-1.760948, 0.318705,-1.659701;;, + 30;3;-1.760948, 0.318705,-1.659701;;, + 31;3;-1.760948, 0.318705,-1.659701;;, + 32;3;-1.760948, 0.318705,-1.659701;;, + 33;3;-1.760948, 0.318705,-1.659701;;, + 34;3;-1.760948, 0.318705,-1.659701;;, + 35;3;-1.760948, 0.318705,-1.659701;;, + 36;3;-1.760948, 0.318705,-1.659701;;, + 37;3;-1.760948, 0.318705,-1.659701;;, + 38;3;-1.760948, 0.318705,-1.659701;;, + 39;3;-1.760948, 0.318705,-1.659701;;, + 40;3;-1.760948, 0.318705,-1.659701;;, + 41;3;-1.760948, 0.318705,-1.659701;;, + 42;3;-1.760948, 0.318705,-1.659701;;, + 43;3;-1.760948, 0.318705,-1.659701;;, + 44;3;-1.760948, 0.318705,-1.659701;;, + 45;3;-1.760948, 0.318705,-1.659701;;, + 46;3;-1.760948, 0.318705,-1.659701;;, + 47;3;-1.760948, 0.318706,-1.659701;;, + 48;3;-1.760948, 0.318705,-1.659701;;, + 49;3;-1.760948, 0.318705,-1.659701;;, + 50;3;-1.760948, 0.318705,-1.659701;;, + 51;3;-1.760948, 0.318705,-1.659701;;, + 52;3;-1.760948, 0.318705,-1.659701;;, + 53;3;-1.760948, 0.318705,-1.659701;;, + 54;3;-1.760948, 0.318705,-1.659701;;, + 55;3;-1.760948, 0.318705,-1.659701;;, + 56;3;-1.760948, 0.318705,-1.659701;;, + 57;3;-1.760948, 0.318705,-1.659701;;, + 58;3;-1.760948, 0.318705,-1.659701;;, + 59;3;-1.760948, 0.318705,-1.659701;;, + 60;3;-1.760948, 0.318705,-1.659701;;, + 61;3;-1.760948, 0.318705,-1.659701;;, + 62;3;-1.760948, 0.318705,-1.659701;;, + 63;3;-1.760948, 0.318705,-1.659701;;, + 64;3;-1.760948, 0.318705,-1.659701;;, + 65;3;-1.760948, 0.318705,-1.659701;;, + 66;3;-1.760948, 0.318705,-1.659701;;, + 67;3;-1.760948, 0.318705,-1.659701;;, + 68;3;-1.760948, 0.318705,-1.659701;;, + 69;3;-1.760948, 0.318705,-1.659701;;, + 70;3;-1.760948, 0.318705,-1.659701;;, + 71;3;-1.760948, 0.318705,-1.659701;;, + 72;3;-1.760948, 0.318705,-1.659701;;, + 73;3;-1.760948, 0.318705,-1.659701;;, + 74;3;-1.760948, 0.318705,-1.659701;;, + 75;3;-1.760948, 0.318705,-1.659701;;, + 76;3;-1.760948, 0.318705,-1.659701;;, + 77;3;-1.760948, 0.318705,-1.659701;;, + 78;3;-1.760948, 0.318705,-1.659701;;, + 79;3;-1.760948, 0.318705,-1.659701;;, + 80;3;-1.760948, 0.318705,-1.659701;;, + 81;3;-1.760948, 0.318705,-1.659701;;, + 82;3;-1.760948, 0.318705,-1.659701;;, + 83;3;-1.760948, 0.318705,-1.659701;;, + 84;3;-1.760948, 0.318705,-1.659701;;, + 85;3;-1.760948, 0.318705,-1.659701;;, + 86;3;-1.760948, 0.318705,-1.659701;;, + 87;3;-1.760948, 0.318705,-1.659701;;, + 88;3;-1.760948, 0.318705,-1.659701;;, + 89;3;-1.760948, 0.318705,-1.659701;;, + 90;3;-1.760948, 0.318705,-1.659701;;, + 91;3;-1.760948, 0.318705,-1.659701;;, + 92;3;-1.760948, 0.318705,-1.659701;;, + 93;3;-1.760948, 0.318705,-1.659701;;, + 94;3;-1.760948, 0.318705,-1.659701;;, + 95;3;-1.760948, 0.318705,-1.659701;;, + 96;3;-1.760948, 0.318705,-1.659701;;, + 97;3;-1.760948, 0.318705,-1.659701;;, + 98;3;-1.760948, 0.318705,-1.659701;;, + 99;3;-1.760948, 0.318705,-1.659701;;, + 100;3;-1.760948, 0.318705,-1.659701;;, + 101;3;-1.760948, 0.318705,-1.659701;;, + 102;3;-1.760948, 0.318705,-1.659701;;, + 103;3;-1.760948, 0.318705,-1.659701;;, + 104;3;-1.760948, 0.318705,-1.659701;;, + 105;3;-1.760948, 0.318705,-1.659701;;, + 106;3;-1.760948, 0.318705,-1.659701;;, + 107;3;-1.760948, 0.318705,-1.659701;;, + 108;3;-1.760948, 0.318705,-1.659701;;, + 109;3;-1.760948, 0.318705,-1.659701;;, + 110;3;-1.760948, 0.318705,-1.659701;;, + 111;3;-1.760948, 0.318705,-1.659701;;, + 112;3;-1.760948, 0.318705,-1.659701;;, + 113;3;-1.760948, 0.318705,-1.659701;;, + 114;3;-1.760948, 0.318705,-1.659701;;, + 115;3;-1.760948, 0.318705,-1.659701;;, + 116;3;-1.760948, 0.318705,-1.659701;;, + 117;3;-1.760948, 0.318705,-1.659701;;, + 118;3;-1.760948, 0.318705,-1.659701;;, + 119;3;-1.760948, 0.318705,-1.659701;;, + 120;3;-1.760948, 0.318705,-1.659701;;, + 121;3;-1.760948, 0.318705,-1.659701;;, + 122;3;-1.760948, 0.318705,-1.659701;;, + 123;3;-1.760948, 0.318705,-1.659701;;, + 124;3;-1.760948, 0.318705,-1.659701;;, + 125;3;-1.760948, 0.318705,-1.659701;;, + 126;3;-1.760948, 0.318705,-1.659701;;, + 127;3;-1.760948, 0.318705,-1.659701;;, + 128;3;-1.760948, 0.318705,-1.659701;;, + 129;3;-1.760948, 0.318705,-1.659701;;, + 130;3;-1.760948, 0.318705,-1.659701;;, + 131;3;-1.760948, 0.318705,-1.659701;;, + 132;3;-1.760948, 0.318705,-1.659701;;, + 133;3;-1.760948, 0.318705,-1.659701;;, + 134;3;-1.760948, 0.318705,-1.659701;;, + 135;3;-1.760948, 0.318705,-1.659701;;, + 136;3;-1.760948, 0.318705,-1.659701;;, + 137;3;-1.760948, 0.318705,-1.659701;;, + 138;3;-1.760948, 0.318705,-1.659701;;, + 139;3;-1.760948, 0.318705,-1.659701;;, + 140;3;-1.760948, 0.318705,-1.659701;;, + 141;3;-1.760948, 0.318705,-1.659701;;, + 142;3;-1.760948, 0.318705,-1.659701;;, + 143;3;-1.760948, 0.318705,-1.659701;;, + 144;3;-1.760948, 0.318705,-1.659701;;, + 145;3;-1.760948, 0.318705,-1.659701;;, + 146;3;-1.760948, 0.318705,-1.659701;;, + 147;3;-1.760948, 0.318705,-1.659701;;, + 148;3;-1.760948, 0.318705,-1.659701;;, + 149;3;-1.760948, 0.318705,-1.659701;;, + 150;3;-1.760948, 0.318705,-1.659701;;, + 151;3;-1.760948, 0.318705,-1.659701;;, + 152;3;-1.760948, 0.318705,-1.659701;;, + 153;3;-1.760948, 0.318705,-1.659701;;, + 154;3;-1.760948, 0.318705,-1.659701;;, + 155;3;-1.760948, 0.318705,-1.659701;;, + 156;3;-1.760948, 0.318705,-1.659701;;, + 157;3;-1.760948, 0.318705,-1.659701;;, + 158;3;-1.760948, 0.318705,-1.659701;;, + 159;3;-1.760948, 0.318705,-1.659701;;, + 160;3;-1.760947, 0.318705,-1.659701;;, + 161;3;-1.760948, 0.318705,-1.659701;;, + 162;3;-1.760947, 0.318705,-1.659701;;, + 163;3;-1.760948, 0.318705,-1.659701;;, + 164;3;-1.760948, 0.318705,-1.659701;;, + 165;3;-1.760948, 0.318705,-1.659701;;, + 166;3;-1.760948, 0.318705,-1.659701;;, + 167;3;-1.760948, 0.318705,-1.659701;;, + 168;3;-1.760948, 0.318705,-1.659701;;, + 169;3;-1.760948, 0.318705,-1.659701;;, + 170;3;-1.760948, 0.318705,-1.659701;;, + 171;3;-1.760948, 0.318705,-1.659701;;, + 172;3;-1.760948, 0.318705,-1.659701;;, + 173;3;-1.760948, 0.318705,-1.659701;;, + 174;3;-1.760948, 0.318705,-1.659701;;, + 175;3;-1.760948, 0.318705,-1.659701;;, + 176;3;-1.760948, 0.318705,-1.659701;;, + 177;3;-1.760948, 0.318705,-1.659701;;, + 178;3;-1.760948, 0.318705,-1.659701;;, + 179;3;-1.760948, 0.318705,-1.659701;;; + } + } + Animation { + {Pig_Rig_Leg_F_L} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.673113,-0.736384, 0.001104,-0.001104;;, + 156;4;-0.605738,-0.793670, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.584336,-0.805462, 0.004091,-0.004091;;, + 159;4;-0.619086,-0.768348, 0.003516,-0.003516;;, + 160;4;-0.672979,-0.712760, 0.002640,-0.002640;;, + 161;4;-0.734582,-0.650136, 0.001646,-0.001646;;, + 162;4;-0.789150,-0.595088, 0.000770,-0.000770;;, + 163;4;-0.825083,-0.559002, 0.000195,-0.000194;;, + 164;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 165;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 166;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 167;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 168;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 169;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 170;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 171;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 172;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 173;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 174;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 175;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 176;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 177;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 178;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 179;4;-0.837257,-0.546810, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3;-1.760948, 6.305928,-1.659701;;, + 1;3;-1.760948, 6.305928,-1.659701;;, + 2;3;-1.760948, 6.305928,-1.659701;;, + 3;3;-1.760948, 6.305928,-1.659701;;, + 4;3;-1.760948, 6.305928,-1.659701;;, + 5;3;-1.760948, 6.305928,-1.659701;;, + 6;3;-1.760948, 6.305928,-1.659701;;, + 7;3;-1.760948, 6.305928,-1.659701;;, + 8;3;-1.760948, 6.305928,-1.659701;;, + 9;3;-1.760948, 6.305928,-1.659701;;, + 10;3;-1.760948, 6.305928,-1.659701;;, + 11;3;-1.760948, 6.305928,-1.659701;;, + 12;3;-1.760948, 6.305928,-1.659701;;, + 13;3;-1.760948, 6.305928,-1.659701;;, + 14;3;-1.760948, 6.305928,-1.659701;;, + 15;3;-1.760948, 6.305928,-1.659701;;, + 16;3;-1.760948, 6.305928,-1.659701;;, + 17;3;-1.760948, 6.305928,-1.659701;;, + 18;3;-1.760948, 6.305928,-1.659701;;, + 19;3;-1.760948, 6.305928,-1.659701;;, + 20;3;-1.760948, 6.305928,-1.659701;;, + 21;3;-1.760948, 6.305928,-1.659701;;, + 22;3;-1.760948, 6.305928,-1.659701;;, + 23;3;-1.760948, 6.305928,-1.659701;;, + 24;3;-1.760948, 6.305928,-1.659701;;, + 25;3;-1.760948, 6.305928,-1.659701;;, + 26;3;-1.760948, 6.305928,-1.659701;;, + 27;3;-1.760948, 6.305929,-1.659701;;, + 28;3;-1.760948, 6.305928,-1.659701;;, + 29;3;-1.760948, 6.305929,-1.659701;;, + 30;3;-1.760948, 6.305929,-1.659701;;, + 31;3;-1.760948, 6.305928,-1.659701;;, + 32;3;-1.760948, 6.305928,-1.659701;;, + 33;3;-1.760948, 6.305928,-1.659701;;, + 34;3;-1.760948, 6.305929,-1.659701;;, + 35;3;-1.760948, 6.305928,-1.659701;;, + 36;3;-1.760948, 6.305928,-1.659701;;, + 37;3;-1.760948, 6.305928,-1.659701;;, + 38;3;-1.760948, 6.305928,-1.659701;;, + 39;3;-1.760948, 6.305928,-1.659701;;, + 40;3;-1.760948, 6.305928,-1.659701;;, + 41;3;-1.760948, 6.305928,-1.659701;;, + 42;3;-1.760948, 6.305928,-1.659701;;, + 43;3;-1.760948, 6.305928,-1.659701;;, + 44;3;-1.760948, 6.305928,-1.659701;;, + 45;3;-1.760948, 6.305928,-1.659701;;, + 46;3;-1.760948, 6.305928,-1.659701;;, + 47;3;-1.760948, 6.305929,-1.659701;;, + 48;3;-1.760948, 6.305928,-1.659701;;, + 49;3;-1.760948, 6.305928,-1.659701;;, + 50;3;-1.760948, 6.305928,-1.659701;;, + 51;3;-1.760948, 6.305928,-1.659701;;, + 52;3;-1.760948, 6.305928,-1.659701;;, + 53;3;-1.760948, 6.305928,-1.659701;;, + 54;3;-1.760948, 6.305928,-1.659701;;, + 55;3;-1.760948, 6.305928,-1.659701;;, + 56;3;-1.760948, 6.305928,-1.659701;;, + 57;3;-1.760948, 6.305928,-1.659701;;, + 58;3;-1.760948, 6.305928,-1.659701;;, + 59;3;-1.760948, 6.305928,-1.659701;;, + 60;3;-1.760948, 6.305928,-1.659701;;, + 61;3;-1.760948, 6.305928,-1.659701;;, + 62;3;-1.760948, 6.305928,-1.659701;;, + 63;3;-1.760948, 6.305928,-1.659701;;, + 64;3;-1.760948, 6.305928,-1.659701;;, + 65;3;-1.760948, 6.305928,-1.659701;;, + 66;3;-1.760948, 6.305928,-1.659701;;, + 67;3;-1.760948, 6.305928,-1.659701;;, + 68;3;-1.760948, 6.305928,-1.659701;;, + 69;3;-1.760948, 6.305928,-1.659701;;, + 70;3;-1.760948, 6.305928,-1.659701;;, + 71;3;-1.760948, 6.305928,-1.659701;;, + 72;3;-1.760948, 6.305928,-1.659701;;, + 73;3;-1.760948, 6.305928,-1.659701;;, + 74;3;-1.760948, 6.305928,-1.659701;;, + 75;3;-1.760948, 6.305928,-1.659701;;, + 76;3;-1.760948, 6.305928,-1.659701;;, + 77;3;-1.760948, 6.305928,-1.659701;;, + 78;3;-1.760948, 6.305928,-1.659701;;, + 79;3;-1.760948, 6.305928,-1.659701;;, + 80;3;-1.760948, 6.305928,-1.659701;;, + 81;3;-1.760948, 6.305928,-1.659701;;, + 82;3;-1.760948, 6.305928,-1.659701;;, + 83;3;-1.760948, 6.305928,-1.659701;;, + 84;3;-1.760948, 6.305928,-1.659701;;, + 85;3;-1.760948, 6.305928,-1.659701;;, + 86;3;-1.760948, 6.305928,-1.659701;;, + 87;3;-1.760948, 6.305928,-1.659701;;, + 88;3;-1.760948, 6.305928,-1.659701;;, + 89;3;-1.760948, 6.305928,-1.659701;;, + 90;3;-1.760948, 6.305928,-1.659701;;, + 91;3;-1.760948, 6.305928,-1.659701;;, + 92;3;-1.760948, 6.305928,-1.659701;;, + 93;3;-1.760948, 6.305928,-1.659701;;, + 94;3;-1.760948, 6.305928,-1.659701;;, + 95;3;-1.760948, 6.305928,-1.659701;;, + 96;3;-1.760948, 6.305928,-1.659701;;, + 97;3;-1.760948, 6.305928,-1.659701;;, + 98;3;-1.760948, 6.305928,-1.659701;;, + 99;3;-1.760948, 6.305928,-1.659701;;, + 100;3;-1.760948, 6.305928,-1.659701;;, + 101;3;-1.760948, 6.305928,-1.659701;;, + 102;3;-1.760948, 6.305928,-1.659701;;, + 103;3;-1.760948, 6.305928,-1.659701;;, + 104;3;-1.760948, 6.305928,-1.659701;;, + 105;3;-1.760948, 6.305928,-1.659701;;, + 106;3;-1.760948, 6.305928,-1.659701;;, + 107;3;-1.760948, 6.305928,-1.659701;;, + 108;3;-1.760948, 6.305928,-1.659701;;, + 109;3;-1.760948, 6.305928,-1.659701;;, + 110;3;-1.760948, 6.305928,-1.659701;;, + 111;3;-1.760948, 6.305928,-1.659701;;, + 112;3;-1.760948, 6.305928,-1.659701;;, + 113;3;-1.760948, 6.305928,-1.659701;;, + 114;3;-1.760948, 6.305928,-1.659701;;, + 115;3;-1.760948, 6.305928,-1.659701;;, + 116;3;-1.760948, 6.305928,-1.659701;;, + 117;3;-1.760948, 6.305928,-1.659701;;, + 118;3;-1.760948, 6.305928,-1.659701;;, + 119;3;-1.760948, 6.305928,-1.659701;;, + 120;3;-1.760948, 6.305928,-1.659701;;, + 121;3;-1.760948, 6.305928,-1.659701;;, + 122;3;-1.760948, 6.305928,-1.659701;;, + 123;3;-1.760948, 6.305928,-1.659701;;, + 124;3;-1.760948, 6.305928,-1.659701;;, + 125;3;-1.760948, 6.305928,-1.659701;;, + 126;3;-1.760948, 6.305928,-1.659701;;, + 127;3;-1.760948, 6.305928,-1.659701;;, + 128;3;-1.760948, 6.305928,-1.659701;;, + 129;3;-1.760948, 6.305928,-1.659701;;, + 130;3;-1.760948, 6.305928,-1.659701;;, + 131;3;-1.760948, 6.305928,-1.659701;;, + 132;3;-1.760948, 6.305928,-1.659701;;, + 133;3;-1.760948, 6.305928,-1.659701;;, + 134;3;-1.760948, 6.305928,-1.659701;;, + 135;3;-1.760948, 6.305928,-1.659701;;, + 136;3;-1.760948, 6.305928,-1.659701;;, + 137;3;-1.760948, 6.305928,-1.659701;;, + 138;3;-1.760948, 6.305928,-1.659701;;, + 139;3;-1.760948, 6.305928,-1.659701;;, + 140;3;-1.760948, 6.305928,-1.659701;;, + 141;3;-1.760948, 6.305928,-1.659701;;, + 142;3;-1.760948, 6.305928,-1.659701;;, + 143;3;-1.760948, 6.305928,-1.659701;;, + 144;3;-1.760948, 6.305928,-1.659701;;, + 145;3;-1.760948, 6.305928,-1.659701;;, + 146;3;-1.760948, 6.305928,-1.659701;;, + 147;3;-1.760948, 6.305928,-1.659701;;, + 148;3;-1.760948, 6.305928,-1.659701;;, + 149;3;-1.760948, 6.305928,-1.659701;;, + 150;3;-1.760948, 6.305928,-1.659701;;, + 151;3;-1.760948, 6.305928,-1.659701;;, + 152;3;-1.760948, 6.305928,-1.659701;;, + 153;3;-1.760948, 6.305928,-1.659701;;, + 154;3;-1.760948, 6.305928,-1.659701;;, + 155;3;-1.760948, 6.305928,-1.659701;;, + 156;3;-1.760948, 6.305928,-1.659701;;, + 157;3;-1.760948, 6.305928,-1.659701;;, + 158;3;-1.760948, 6.305928,-1.659701;;, + 159;3;-1.760948, 6.305928,-1.659701;;, + 160;3;-1.760947, 6.305928,-1.659701;;, + 161;3;-1.760948, 6.305928,-1.659701;;, + 162;3;-1.760948, 6.305928,-1.659701;;, + 163;3;-1.760948, 6.305928,-1.659701;;, + 164;3;-1.760947, 6.305928,-1.659701;;, + 165;3;-1.760947, 6.305928,-1.659701;;, + 166;3;-1.760947, 6.305928,-1.659701;;, + 167;3;-1.760947, 6.305928,-1.659701;;, + 168;3;-1.760947, 6.305928,-1.659701;;, + 169;3;-1.760947, 6.305928,-1.659701;;, + 170;3;-1.760947, 6.305928,-1.659701;;, + 171;3;-1.760947, 6.305928,-1.659701;;, + 172;3;-1.760947, 6.305928,-1.659701;;, + 173;3;-1.760947, 6.305928,-1.659701;;, + 174;3;-1.760947, 6.305928,-1.659701;;, + 175;3;-1.760947, 6.305928,-1.659701;;, + 176;3;-1.760947, 6.305928,-1.659701;;, + 177;3;-1.760947, 6.305928,-1.659701;;, + 178;3;-1.760947, 6.305928,-1.659701;;, + 179;3;-1.760947, 6.305928,-1.659701;;; + } + } + Animation { + {Pig_Rig_Leg_B_R} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000593, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736713,-0.673453,-0.000673, 0.000673;;, + 156;4;-0.794332,-0.606419,-0.002416, 0.002416;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.815242,-0.571498, 0.000931, 0.013380;;, + 159;4;-0.809622,-0.570851, 0.019673, 0.036966;;, + 160;4;-0.802791,-0.571596, 0.049229, 0.071895;;, + 161;4;-0.795862,-0.573259, 0.083228, 0.111042;;, + 162;4;-0.790135,-0.575105, 0.113432, 0.145342;;, + 163;4;-0.786524,-0.576465, 0.133350, 0.167777;;, + 164;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 165;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 166;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 167;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 168;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 169;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 170;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 171;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 172;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 173;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 174;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 175;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 176;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 177;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 178;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 179;4;-0.785333,-0.576955, 0.140102, 0.175346;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 1.728931, 0.318705,-1.659701;;, + 1;3; 1.728931, 0.318705,-1.659701;;, + 2;3; 1.728931, 0.318705,-1.659701;;, + 3;3; 1.728931, 0.318705,-1.659701;;, + 4;3; 1.728931, 0.318705,-1.659701;;, + 5;3; 1.728931, 0.318705,-1.659701;;, + 6;3; 1.728931, 0.318705,-1.659701;;, + 7;3; 1.728931, 0.318705,-1.659701;;, + 8;3; 1.728931, 0.318705,-1.659701;;, + 9;3; 1.728931, 0.318705,-1.659701;;, + 10;3; 1.728931, 0.318705,-1.659701;;, + 11;3; 1.728931, 0.318705,-1.659701;;, + 12;3; 1.728931, 0.318705,-1.659701;;, + 13;3; 1.728931, 0.318705,-1.659701;;, + 14;3; 1.728931, 0.318705,-1.659701;;, + 15;3; 1.728931, 0.318705,-1.659701;;, + 16;3; 1.728931, 0.318705,-1.659701;;, + 17;3; 1.728931, 0.318705,-1.659701;;, + 18;3; 1.728931, 0.318705,-1.659701;;, + 19;3; 1.728931, 0.318705,-1.659701;;, + 20;3; 1.728931, 0.318705,-1.659701;;, + 21;3; 1.728931, 0.318705,-1.659701;;, + 22;3; 1.728931, 0.318705,-1.659701;;, + 23;3; 1.728931, 0.318705,-1.659701;;, + 24;3; 1.728931, 0.318705,-1.659701;;, + 25;3; 1.728931, 0.318705,-1.659701;;, + 26;3; 1.728931, 0.318705,-1.659701;;, + 27;3; 1.728931, 0.318705,-1.659701;;, + 28;3; 1.728930, 0.318705,-1.659701;;, + 29;3; 1.728931, 0.318705,-1.659701;;, + 30;3; 1.728931, 0.318705,-1.659701;;, + 31;3; 1.728931, 0.318705,-1.659701;;, + 32;3; 1.728931, 0.318705,-1.659701;;, + 33;3; 1.728931, 0.318705,-1.659701;;, + 34;3; 1.728931, 0.318705,-1.659701;;, + 35;3; 1.728931, 0.318705,-1.659701;;, + 36;3; 1.728931, 0.318705,-1.659701;;, + 37;3; 1.728930, 0.318705,-1.659701;;, + 38;3; 1.728931, 0.318705,-1.659701;;, + 39;3; 1.728931, 0.318705,-1.659701;;, + 40;3; 1.728931, 0.318705,-1.659701;;, + 41;3; 1.728931, 0.318705,-1.659701;;, + 42;3; 1.728931, 0.318705,-1.659701;;, + 43;3; 1.728931, 0.318705,-1.659701;;, + 44;3; 1.728931, 0.318705,-1.659701;;, + 45;3; 1.728931, 0.318705,-1.659701;;, + 46;3; 1.728931, 0.318705,-1.659701;;, + 47;3; 1.728931, 0.318706,-1.659701;;, + 48;3; 1.728931, 0.318705,-1.659701;;, + 49;3; 1.728931, 0.318705,-1.659701;;, + 50;3; 1.728931, 0.318705,-1.659701;;, + 51;3; 1.728931, 0.318705,-1.659701;;, + 52;3; 1.728931, 0.318705,-1.659701;;, + 53;3; 1.728931, 0.318705,-1.659701;;, + 54;3; 1.728931, 0.318705,-1.659701;;, + 55;3; 1.728931, 0.318705,-1.659701;;, + 56;3; 1.728931, 0.318705,-1.659701;;, + 57;3; 1.728931, 0.318705,-1.659701;;, + 58;3; 1.728931, 0.318705,-1.659701;;, + 59;3; 1.728931, 0.318705,-1.659701;;, + 60;3; 1.728931, 0.318705,-1.659701;;, + 61;3; 1.728931, 0.318705,-1.659701;;, + 62;3; 1.728931, 0.318705,-1.659701;;, + 63;3; 1.728931, 0.318705,-1.659701;;, + 64;3; 1.728931, 0.318705,-1.659701;;, + 65;3; 1.728931, 0.318705,-1.659701;;, + 66;3; 1.728931, 0.318705,-1.659701;;, + 67;3; 1.728931, 0.318705,-1.659701;;, + 68;3; 1.728931, 0.318705,-1.659701;;, + 69;3; 1.728931, 0.318705,-1.659701;;, + 70;3; 1.728931, 0.318705,-1.659701;;, + 71;3; 1.728931, 0.318705,-1.659701;;, + 72;3; 1.728931, 0.318705,-1.659701;;, + 73;3; 1.728931, 0.318705,-1.659701;;, + 74;3; 1.728931, 0.318705,-1.659701;;, + 75;3; 1.728931, 0.318705,-1.659701;;, + 76;3; 1.728931, 0.318705,-1.659701;;, + 77;3; 1.728931, 0.318705,-1.659701;;, + 78;3; 1.728931, 0.318705,-1.659701;;, + 79;3; 1.728931, 0.318705,-1.659701;;, + 80;3; 1.728931, 0.318705,-1.659701;;, + 81;3; 1.728931, 0.318705,-1.659701;;, + 82;3; 1.728931, 0.318705,-1.659701;;, + 83;3; 1.728931, 0.318705,-1.659701;;, + 84;3; 1.728931, 0.318705,-1.659701;;, + 85;3; 1.728931, 0.318705,-1.659701;;, + 86;3; 1.728931, 0.318705,-1.659701;;, + 87;3; 1.728931, 0.318705,-1.659701;;, + 88;3; 1.728931, 0.318705,-1.659701;;, + 89;3; 1.728931, 0.318705,-1.659701;;, + 90;3; 1.728931, 0.318705,-1.659701;;, + 91;3; 1.728931, 0.318705,-1.659701;;, + 92;3; 1.728931, 0.318705,-1.659701;;, + 93;3; 1.728931, 0.318705,-1.659701;;, + 94;3; 1.728931, 0.318705,-1.659701;;, + 95;3; 1.728931, 0.318705,-1.659701;;, + 96;3; 1.728931, 0.318705,-1.659701;;, + 97;3; 1.728931, 0.318705,-1.659701;;, + 98;3; 1.728931, 0.318705,-1.659701;;, + 99;3; 1.728931, 0.318705,-1.659701;;, + 100;3; 1.728931, 0.318705,-1.659701;;, + 101;3; 1.728931, 0.318705,-1.659701;;, + 102;3; 1.728931, 0.318705,-1.659701;;, + 103;3; 1.728931, 0.318705,-1.659701;;, + 104;3; 1.728931, 0.318705,-1.659701;;, + 105;3; 1.728931, 0.318705,-1.659701;;, + 106;3; 1.728931, 0.318705,-1.659701;;, + 107;3; 1.728931, 0.318705,-1.659701;;, + 108;3; 1.728931, 0.318705,-1.659701;;, + 109;3; 1.728931, 0.318705,-1.659701;;, + 110;3; 1.728931, 0.318705,-1.659701;;, + 111;3; 1.728931, 0.318705,-1.659701;;, + 112;3; 1.728931, 0.318705,-1.659701;;, + 113;3; 1.728931, 0.318705,-1.659701;;, + 114;3; 1.728931, 0.318705,-1.659701;;, + 115;3; 1.728931, 0.318705,-1.659701;;, + 116;3; 1.728931, 0.318705,-1.659701;;, + 117;3; 1.728931, 0.318705,-1.659701;;, + 118;3; 1.728931, 0.318705,-1.659701;;, + 119;3; 1.728931, 0.318705,-1.659701;;, + 120;3; 1.728931, 0.318705,-1.659701;;, + 121;3; 1.728931, 0.318705,-1.659701;;, + 122;3; 1.728931, 0.318705,-1.659701;;, + 123;3; 1.728931, 0.318705,-1.659701;;, + 124;3; 1.728931, 0.318705,-1.659701;;, + 125;3; 1.728931, 0.318705,-1.659701;;, + 126;3; 1.728931, 0.318705,-1.659701;;, + 127;3; 1.728931, 0.318705,-1.659701;;, + 128;3; 1.728931, 0.318705,-1.659701;;, + 129;3; 1.728931, 0.318705,-1.659701;;, + 130;3; 1.728931, 0.318705,-1.659701;;, + 131;3; 1.728931, 0.318705,-1.659701;;, + 132;3; 1.728931, 0.318705,-1.659701;;, + 133;3; 1.728931, 0.318705,-1.659701;;, + 134;3; 1.728931, 0.318705,-1.659701;;, + 135;3; 1.728931, 0.318705,-1.659701;;, + 136;3; 1.728931, 0.318705,-1.659701;;, + 137;3; 1.728931, 0.318705,-1.659701;;, + 138;3; 1.728931, 0.318705,-1.659701;;, + 139;3; 1.728931, 0.318705,-1.659701;;, + 140;3; 1.728931, 0.318705,-1.659701;;, + 141;3; 1.728931, 0.318705,-1.659701;;, + 142;3; 1.728931, 0.318705,-1.659701;;, + 143;3; 1.728931, 0.318705,-1.659701;;, + 144;3; 1.728931, 0.318705,-1.659701;;, + 145;3; 1.728931, 0.318705,-1.659701;;, + 146;3; 1.728931, 0.318705,-1.659701;;, + 147;3; 1.728931, 0.318705,-1.659701;;, + 148;3; 1.728931, 0.318705,-1.659701;;, + 149;3; 1.728931, 0.318705,-1.659701;;, + 150;3; 1.728931, 0.318705,-1.659701;;, + 151;3; 1.728931, 0.318705,-1.659701;;, + 152;3; 1.728931, 0.318705,-1.659701;;, + 153;3; 1.728931, 0.318705,-1.659701;;, + 154;3; 1.728931, 0.318705,-1.659701;;, + 155;3; 1.728931, 0.318705,-1.659701;;, + 156;3; 1.728931, 0.318705,-1.659701;;, + 157;3; 1.728931, 0.318705,-1.659701;;, + 158;3; 1.728931, 0.318705,-1.659701;;, + 159;3; 1.728931, 0.318705,-1.659701;;, + 160;3; 1.728931, 0.318705,-1.659701;;, + 161;3; 1.728931, 0.318705,-1.659701;;, + 162;3; 1.728931, 0.318705,-1.659701;;, + 163;3; 1.728931, 0.318705,-1.659701;;, + 164;3; 1.728931, 0.318705,-1.659701;;, + 165;3; 1.728931, 0.318705,-1.659701;;, + 166;3; 1.728931, 0.318705,-1.659701;;, + 167;3; 1.728931, 0.318705,-1.659701;;, + 168;3; 1.728931, 0.318705,-1.659701;;, + 169;3; 1.728931, 0.318705,-1.659701;;, + 170;3; 1.728931, 0.318705,-1.659701;;, + 171;3; 1.728931, 0.318705,-1.659701;;, + 172;3; 1.728931, 0.318705,-1.659701;;, + 173;3; 1.728931, 0.318705,-1.659701;;, + 174;3; 1.728931, 0.318705,-1.659701;;, + 175;3; 1.728931, 0.318705,-1.659701;;, + 176;3; 1.728931, 0.318705,-1.659701;;, + 177;3; 1.728931, 0.318705,-1.659701;;, + 178;3; 1.728931, 0.318705,-1.659701;;, + 179;3; 1.728931, 0.318705,-1.659701;;; + } + } + Animation { + {Pig_Rig_Leg_F_R} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000592, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736581,-0.673310,-0.001104, 0.001104;;, + 156;4;-0.794066,-0.606133,-0.003281, 0.003281;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.806073,-0.582193, 0.001740, 0.008346;;, + 159;4;-0.772277,-0.612122, 0.019564, 0.020360;;, + 160;4;-0.722202,-0.659130, 0.046720, 0.038662;;, + 161;4;-0.666055,-0.713132, 0.077523, 0.059422;;, + 162;4;-0.616832,-0.761085, 0.104682, 0.077728;;, + 163;4;-0.584619,-0.792705, 0.122511, 0.089746;;, + 164;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 165;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 166;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 167;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 168;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 169;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 170;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 171;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 172;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 173;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 174;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 175;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 176;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 177;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 178;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 179;4;-0.573748,-0.803425, 0.128538, 0.093809;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 1.728931, 6.305928,-1.659701;;, + 1;3; 1.728931, 6.305928,-1.659701;;, + 2;3; 1.728931, 6.305928,-1.659701;;, + 3;3; 1.728931, 6.305928,-1.659701;;, + 4;3; 1.728931, 6.305928,-1.659701;;, + 5;3; 1.728931, 6.305928,-1.659701;;, + 6;3; 1.728931, 6.305928,-1.659701;;, + 7;3; 1.728931, 6.305928,-1.659701;;, + 8;3; 1.728931, 6.305928,-1.659701;;, + 9;3; 1.728931, 6.305928,-1.659701;;, + 10;3; 1.728931, 6.305928,-1.659701;;, + 11;3; 1.728931, 6.305928,-1.659701;;, + 12;3; 1.728931, 6.305928,-1.659701;;, + 13;3; 1.728931, 6.305928,-1.659701;;, + 14;3; 1.728931, 6.305928,-1.659701;;, + 15;3; 1.728931, 6.305928,-1.659701;;, + 16;3; 1.728931, 6.305928,-1.659701;;, + 17;3; 1.728931, 6.305928,-1.659701;;, + 18;3; 1.728931, 6.305928,-1.659701;;, + 19;3; 1.728931, 6.305928,-1.659701;;, + 20;3; 1.728931, 6.305928,-1.659701;;, + 21;3; 1.728931, 6.305928,-1.659701;;, + 22;3; 1.728931, 6.305928,-1.659701;;, + 23;3; 1.728931, 6.305928,-1.659701;;, + 24;3; 1.728931, 6.305928,-1.659701;;, + 25;3; 1.728931, 6.305928,-1.659701;;, + 26;3; 1.728931, 6.305928,-1.659701;;, + 27;3; 1.728931, 6.305928,-1.659701;;, + 28;3; 1.728931, 6.305928,-1.659701;;, + 29;3; 1.728931, 6.305928,-1.659701;;, + 30;3; 1.728931, 6.305928,-1.659701;;, + 31;3; 1.728931, 6.305928,-1.659701;;, + 32;3; 1.728931, 6.305928,-1.659701;;, + 33;3; 1.728931, 6.305928,-1.659701;;, + 34;3; 1.728931, 6.305928,-1.659701;;, + 35;3; 1.728931, 6.305928,-1.659701;;, + 36;3; 1.728931, 6.305929,-1.659701;;, + 37;3; 1.728930, 6.305928,-1.659701;;, + 38;3; 1.728931, 6.305928,-1.659701;;, + 39;3; 1.728931, 6.305928,-1.659701;;, + 40;3; 1.728931, 6.305929,-1.659701;;, + 41;3; 1.728931, 6.305929,-1.659701;;, + 42;3; 1.728931, 6.305928,-1.659701;;, + 43;3; 1.728931, 6.305928,-1.659701;;, + 44;3; 1.728931, 6.305928,-1.659701;;, + 45;3; 1.728931, 6.305928,-1.659701;;, + 46;3; 1.728931, 6.305928,-1.659701;;, + 47;3; 1.728931, 6.305929,-1.659701;;, + 48;3; 1.728931, 6.305928,-1.659701;;, + 49;3; 1.728931, 6.305928,-1.659701;;, + 50;3; 1.728931, 6.305928,-1.659701;;, + 51;3; 1.728931, 6.305928,-1.659701;;, + 52;3; 1.728931, 6.305928,-1.659701;;, + 53;3; 1.728931, 6.305928,-1.659701;;, + 54;3; 1.728931, 6.305928,-1.659701;;, + 55;3; 1.728931, 6.305928,-1.659701;;, + 56;3; 1.728931, 6.305928,-1.659701;;, + 57;3; 1.728931, 6.305928,-1.659701;;, + 58;3; 1.728931, 6.305928,-1.659701;;, + 59;3; 1.728931, 6.305928,-1.659701;;, + 60;3; 1.728931, 6.305928,-1.659701;;, + 61;3; 1.728931, 6.305928,-1.659701;;, + 62;3; 1.728931, 6.305928,-1.659701;;, + 63;3; 1.728931, 6.305928,-1.659701;;, + 64;3; 1.728931, 6.305928,-1.659701;;, + 65;3; 1.728931, 6.305928,-1.659701;;, + 66;3; 1.728931, 6.305928,-1.659701;;, + 67;3; 1.728931, 6.305928,-1.659701;;, + 68;3; 1.728931, 6.305928,-1.659701;;, + 69;3; 1.728931, 6.305928,-1.659701;;, + 70;3; 1.728931, 6.305928,-1.659701;;, + 71;3; 1.728931, 6.305928,-1.659701;;, + 72;3; 1.728931, 6.305928,-1.659701;;, + 73;3; 1.728931, 6.305928,-1.659701;;, + 74;3; 1.728931, 6.305928,-1.659701;;, + 75;3; 1.728931, 6.305928,-1.659701;;, + 76;3; 1.728931, 6.305928,-1.659701;;, + 77;3; 1.728931, 6.305928,-1.659701;;, + 78;3; 1.728931, 6.305928,-1.659701;;, + 79;3; 1.728931, 6.305928,-1.659701;;, + 80;3; 1.728931, 6.305928,-1.659701;;, + 81;3; 1.728931, 6.305928,-1.659701;;, + 82;3; 1.728931, 6.305928,-1.659701;;, + 83;3; 1.728931, 6.305928,-1.659701;;, + 84;3; 1.728931, 6.305928,-1.659701;;, + 85;3; 1.728931, 6.305928,-1.659701;;, + 86;3; 1.728931, 6.305928,-1.659701;;, + 87;3; 1.728931, 6.305928,-1.659701;;, + 88;3; 1.728931, 6.305928,-1.659701;;, + 89;3; 1.728931, 6.305928,-1.659701;;, + 90;3; 1.728931, 6.305928,-1.659701;;, + 91;3; 1.728931, 6.305928,-1.659701;;, + 92;3; 1.728931, 6.305928,-1.659701;;, + 93;3; 1.728931, 6.305928,-1.659701;;, + 94;3; 1.728931, 6.305928,-1.659701;;, + 95;3; 1.728931, 6.305928,-1.659701;;, + 96;3; 1.728931, 6.305928,-1.659701;;, + 97;3; 1.728931, 6.305928,-1.659701;;, + 98;3; 1.728931, 6.305928,-1.659701;;, + 99;3; 1.728931, 6.305928,-1.659701;;, + 100;3; 1.728931, 6.305928,-1.659701;;, + 101;3; 1.728931, 6.305928,-1.659701;;, + 102;3; 1.728931, 6.305928,-1.659701;;, + 103;3; 1.728931, 6.305928,-1.659701;;, + 104;3; 1.728931, 6.305928,-1.659701;;, + 105;3; 1.728931, 6.305928,-1.659701;;, + 106;3; 1.728931, 6.305928,-1.659701;;, + 107;3; 1.728931, 6.305928,-1.659701;;, + 108;3; 1.728931, 6.305928,-1.659701;;, + 109;3; 1.728931, 6.305928,-1.659701;;, + 110;3; 1.728931, 6.305928,-1.659701;;, + 111;3; 1.728931, 6.305928,-1.659701;;, + 112;3; 1.728931, 6.305928,-1.659701;;, + 113;3; 1.728931, 6.305928,-1.659701;;, + 114;3; 1.728931, 6.305928,-1.659701;;, + 115;3; 1.728931, 6.305928,-1.659701;;, + 116;3; 1.728931, 6.305928,-1.659701;;, + 117;3; 1.728931, 6.305928,-1.659701;;, + 118;3; 1.728931, 6.305928,-1.659701;;, + 119;3; 1.728931, 6.305928,-1.659701;;, + 120;3; 1.728931, 6.305928,-1.659701;;, + 121;3; 1.728931, 6.305928,-1.659701;;, + 122;3; 1.728931, 6.305928,-1.659701;;, + 123;3; 1.728931, 6.305928,-1.659701;;, + 124;3; 1.728931, 6.305928,-1.659701;;, + 125;3; 1.728931, 6.305928,-1.659701;;, + 126;3; 1.728931, 6.305928,-1.659701;;, + 127;3; 1.728931, 6.305928,-1.659701;;, + 128;3; 1.728931, 6.305928,-1.659701;;, + 129;3; 1.728931, 6.305928,-1.659701;;, + 130;3; 1.728931, 6.305928,-1.659701;;, + 131;3; 1.728931, 6.305928,-1.659701;;, + 132;3; 1.728931, 6.305928,-1.659701;;, + 133;3; 1.728931, 6.305928,-1.659701;;, + 134;3; 1.728931, 6.305928,-1.659701;;, + 135;3; 1.728931, 6.305928,-1.659701;;, + 136;3; 1.728931, 6.305928,-1.659701;;, + 137;3; 1.728931, 6.305928,-1.659701;;, + 138;3; 1.728931, 6.305928,-1.659701;;, + 139;3; 1.728931, 6.305928,-1.659701;;, + 140;3; 1.728931, 6.305928,-1.659701;;, + 141;3; 1.728931, 6.305928,-1.659701;;, + 142;3; 1.728931, 6.305928,-1.659701;;, + 143;3; 1.728931, 6.305928,-1.659701;;, + 144;3; 1.728931, 6.305928,-1.659701;;, + 145;3; 1.728931, 6.305928,-1.659701;;, + 146;3; 1.728931, 6.305928,-1.659701;;, + 147;3; 1.728931, 6.305928,-1.659701;;, + 148;3; 1.728931, 6.305928,-1.659701;;, + 149;3; 1.728931, 6.305928,-1.659701;;, + 150;3; 1.728931, 6.305928,-1.659701;;, + 151;3; 1.728931, 6.305928,-1.659701;;, + 152;3; 1.728931, 6.305928,-1.659701;;, + 153;3; 1.728931, 6.305928,-1.659701;;, + 154;3; 1.728931, 6.305928,-1.659701;;, + 155;3; 1.728931, 6.305928,-1.659701;;, + 156;3; 1.728931, 6.305928,-1.659701;;, + 157;3; 1.728931, 6.305928,-1.659701;;, + 158;3; 1.728931, 6.305928,-1.659701;;, + 159;3; 1.728931, 6.305928,-1.659701;;, + 160;3; 1.728931, 6.305928,-1.659701;;, + 161;3; 1.728931, 6.305928,-1.659701;;, + 162;3; 1.728931, 6.305928,-1.659701;;, + 163;3; 1.728931, 6.305929,-1.659701;;, + 164;3; 1.728931, 6.305929,-1.659701;;, + 165;3; 1.728931, 6.305929,-1.659701;;, + 166;3; 1.728931, 6.305929,-1.659701;;, + 167;3; 1.728931, 6.305929,-1.659701;;, + 168;3; 1.728931, 6.305929,-1.659701;;, + 169;3; 1.728931, 6.305929,-1.659701;;, + 170;3; 1.728931, 6.305929,-1.659701;;, + 171;3; 1.728931, 6.305929,-1.659701;;, + 172;3; 1.728931, 6.305929,-1.659701;;, + 173;3; 1.728931, 6.305929,-1.659701;;, + 174;3; 1.728931, 6.305929,-1.659701;;, + 175;3; 1.728931, 6.305929,-1.659701;;, + 176;3; 1.728931, 6.305929,-1.659701;;, + 177;3; 1.728931, 6.305929,-1.659701;;, + 178;3; 1.728931, 6.305929,-1.659701;;, + 179;3; 1.728931, 6.305929,-1.659701;;; + } + } + Animation { + {Pig_Rig_Head} + AnimationKey { // Rotation + 0; + 180; + 0;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 1;4;-0.999945, 0.007153,-0.000003,-0.000000;;, + 2;4;-0.999837, 0.011033,-0.000003,-0.000000;;, + 3;4;-0.999698, 0.016016,-0.000003,-0.000000;;, + 4;4;-0.999590, 0.019896,-0.000003,-0.000000;;, + 5;4;-0.999551, 0.021274,-0.000003,-0.000000;;, + 6;4;-0.999576, 0.020669,-0.000003,-0.000000;;, + 7;4;-0.999648, 0.018794,-0.000003,-0.000000;;, + 8;4;-0.999754, 0.015794,-0.000003,-0.000000;;, + 9;4;-0.999863, 0.012205,-0.000003,-0.000000;;, + 10;4;-0.999945, 0.008711,-0.000003,-0.000000;;, + 11;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 12;4;-0.999979, 0.002839,-0.000003, 0.000000;;, + 13;4;-0.999938,-0.000656,-0.000003, 0.000000;;, + 14;4;-0.999870,-0.004246,-0.000003, 0.000000;;, + 15;4;-0.999799,-0.007247,-0.000003, 0.000000;;, + 16;4;-0.999748,-0.009123,-0.000003, 0.000000;;, + 17;4;-0.999730,-0.009728,-0.000003, 0.000000;;, + 18;4;-0.999746,-0.008770,-0.000003, 0.000000;;, + 19;4;-0.999791,-0.005983,-0.000003, 0.000000;;, + 20;4;-0.999857,-0.001976,-0.000003, 0.000000;;, + 21;4;-0.999922, 0.002030,-0.000003, 0.000000;;, + 22;4;-0.999968, 0.004817,-0.000003,-0.000000;;, + 23;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 24;4;-0.999962, 0.005775,-0.001619, 0.000009;;, + 25;4;-0.999901, 0.005775,-0.006326, 0.000037;;, + 26;4;-0.999812, 0.005774,-0.013091, 0.000076;;, + 27;4;-0.999723, 0.005774,-0.019856, 0.000115;;, + 28;4;-0.999662, 0.005773,-0.024562, 0.000142;;, + 29;4;-0.999641, 0.005773,-0.026179, 0.000151;;, + 30;4;-0.999662, 0.005773,-0.025158, 0.000145;;, + 31;4;-0.999723, 0.005774,-0.021990, 0.000127;;, + 32;4;-0.999812, 0.005774,-0.016923, 0.000098;;, + 33;4;-0.999901, 0.005775,-0.010862, 0.000063;;, + 34;4;-0.999962, 0.005775,-0.004961, 0.000029;;, + 35;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 36;4;-0.999962, 0.005775, 0.004956,-0.000029;;, + 37;4;-0.999901, 0.005775, 0.010857,-0.000063;;, + 38;4;-0.999812, 0.005774, 0.016918,-0.000098;;, + 39;4;-0.999723, 0.005774, 0.021985,-0.000127;;, + 40;4;-0.999662, 0.005773, 0.025153,-0.000145;;, + 41;4;-0.999641, 0.005773, 0.026174,-0.000151;;, + 42;4;-0.999653, 0.005773, 0.025266,-0.000146;;, + 43;4;-0.999688, 0.005773, 0.022554,-0.000131;;, + 44;4;-0.999744, 0.005774, 0.018286,-0.000106;;, + 45;4;-0.999812, 0.005774, 0.013086,-0.000077;;, + 46;4;-0.999880, 0.005774, 0.007886,-0.000047;;, + 47;4;-0.999936, 0.005775, 0.003617,-0.000022;;, + 48;4;-0.999971, 0.005775, 0.000906,-0.000006;;, + 49;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 50;4;-0.995667,-0.011278,-0.000002, 0.000001;;, + 51;4;-0.982775,-0.062163,-0.000002, 0.000001;;, + 52;4;-0.962455,-0.142242,-0.000002, 0.000001;;, + 53;4;-0.937658,-0.239769,-0.000002, 0.000002;;, + 54;4;-0.912788,-0.337297,-0.000002, 0.000001;;, + 55;4;-0.892259,-0.417377,-0.000002, 0.000001;;, + 56;4;-0.879049,-0.468263,-0.000002, 0.000001;;, + 57;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 58;4;-0.873959,-0.485279, 0.001880,-0.003389;;, + 59;4;-0.873694,-0.485164, 0.007180,-0.012938;;, + 60;4;-0.873556,-0.485015, 0.013985,-0.025198;;, + 61;4;-0.873511,-0.484898, 0.019285,-0.034747;;, + 62;4;-0.873505,-0.484857, 0.021167,-0.038137;;, + 63;4;-0.873505,-0.484857, 0.017404,-0.031357;;, + 64;4;-0.873505,-0.484857, 0.006803,-0.012261;;, + 65;4;-0.873505,-0.484857,-0.006808, 0.012258;;, + 66;4;-0.873505,-0.484857,-0.017408, 0.031355;;, + 67;4;-0.873505,-0.484857,-0.021171, 0.038134;;, + 68;4;-0.873511,-0.484898,-0.019290, 0.034745;;, + 69;4;-0.873556,-0.485015,-0.013990, 0.025198;;, + 70;4;-0.873694,-0.485164,-0.007184, 0.012939;;, + 71;4;-0.873959,-0.485279,-0.001884, 0.003392;;, + 72;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 73;4;-0.882425,-0.454949,-0.000002, 0.000000;;, + 74;4;-0.905130,-0.366639,-0.000002, 0.000000;;, + 75;4;-0.937534,-0.239770,-0.000002, 0.000001;;, + 76;4;-0.969841,-0.112901,-0.000002, 0.000001;;, + 77;4;-0.992280,-0.024592,-0.000002, 0.000001;;, + 78;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 79;4;-0.998860, 0.005769,-0.000043,-0.006968;;, + 80;4;-0.995481, 0.005749,-0.000164,-0.027937;;, + 81;4;-0.989986, 0.005717,-0.000361,-0.062028;;, + 82;4;-0.982799, 0.005676,-0.000618,-0.106614;;, + 83;4;-0.974658, 0.005628,-0.000910,-0.157119;;, + 84;4;-0.966517, 0.005581,-0.001201,-0.207623;;, + 85;4;-0.959330, 0.005540,-0.001459,-0.252203;;, + 86;4;-0.953836, 0.005508,-0.001656,-0.286288;;, + 87;4;-0.950457, 0.005488,-0.001777,-0.307251;;, + 88;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 89;4;-0.950457, 0.005488,-0.001792,-0.309884;;, + 90;4;-0.953836, 0.005508,-0.001714,-0.296428;;, + 91;4;-0.959330, 0.005540,-0.001582,-0.273571;;, + 92;4;-0.966517, 0.005581,-0.001399,-0.241896;;, + 93;4;-0.974659, 0.005629,-0.001175,-0.203118;;, + 94;4;-0.982800, 0.005676,-0.000926,-0.159976;;, + 95;4;-0.989987, 0.005717,-0.000670,-0.115648;;, + 96;4;-0.995481, 0.005749,-0.000424,-0.072993;;, + 97;4;-0.998860, 0.005769,-0.000199,-0.034058;;, + 98;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 99;4;-0.998860, 0.005768, 0.000194, 0.034058;;, + 100;4;-0.995481, 0.005749, 0.000419, 0.072993;;, + 101;4;-0.989987, 0.005717, 0.000665, 0.115648;;, + 102;4;-0.982800, 0.005675, 0.000921, 0.159976;;, + 103;4;-0.974659, 0.005628, 0.001171, 0.203118;;, + 104;4;-0.966517, 0.005580, 0.001395, 0.241896;;, + 105;4;-0.959330, 0.005538, 0.001578, 0.273571;;, + 106;4;-0.953836, 0.005506, 0.001710, 0.296428;;, + 107;4;-0.950457, 0.005487, 0.001787, 0.309884;;, + 108;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 109;4;-0.950457, 0.005487, 0.001772, 0.307251;;, + 110;4;-0.953836, 0.005506, 0.001651, 0.286288;;, + 111;4;-0.959330, 0.005538, 0.001454, 0.252203;;, + 112;4;-0.966517, 0.005580, 0.001197, 0.207622;;, + 113;4;-0.974658, 0.005628, 0.000905, 0.157118;;, + 114;4;-0.982800, 0.005675, 0.000613, 0.106612;;, + 115;4;-0.989987, 0.005717, 0.000356, 0.062026;;, + 116;4;-0.995481, 0.005749, 0.000159, 0.027935;;, + 117;4;-0.998860, 0.005769, 0.000038, 0.006967;;, + 118;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 119;4;-0.999542,-0.017864,-0.000003,-0.000000;;, + 120;4;-0.998007,-0.043214,-0.000002, 0.000000;;, + 121;4;-0.995747,-0.070680,-0.000002, 0.000000;;, + 122;4;-0.993498,-0.099890,-0.000002, 0.000000;;, + 123;4;-0.991956,-0.123956,-0.000002, 0.000000;;, + 124;4;-0.991417,-0.130738,-0.000002, 0.000000;;, + 125;4;-0.991714,-0.126001,-0.000002, 0.000000;;, + 126;4;-0.992602,-0.111861,-0.000002, 0.000000;;, + 127;4;-0.993998,-0.089600,-0.000002, 0.000000;;, + 128;4;-0.995700,-0.062483,-0.000002, 0.000000;;, + 129;4;-0.997402,-0.035365,-0.000002, 0.000000;;, + 130;4;-0.998799,-0.013103,-0.000003, 0.000000;;, + 131;4;-0.999686, 0.001038,-0.000003,-0.000000;;, + 132;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 133;4;-0.999987, 0.005158,-0.000003,-0.000000;;, + 134;4;-0.999997, 0.003345,-0.000003,-0.000000;;, + 135;4;-1.000014, 0.000408,-0.000003,-0.000000;;, + 136;4;-1.000037,-0.003554,-0.000003,-0.000000;;, + 137;4;-1.000065,-0.008408,-0.000003,-0.000000;;, + 138;4;-1.000098,-0.013993,-0.000003,-0.000000;;, + 139;4;-1.000133,-0.020110,-0.000003,-0.000000;;, + 140;4;-1.000170,-0.026527,-0.000003,-0.000000;;, + 141;4;-1.000207,-0.032979,-0.000003,-0.000000;;, + 142;4;-1.000243,-0.039177,-0.000003,-0.000000;;, + 143;4;-1.000275,-0.044811,-0.000003,-0.000000;;, + 144;4;-1.000303,-0.049563,-0.000003,-0.000000;;, + 145;4;-1.000323,-0.053122,-0.000003,-0.000000;;, + 146;4;-1.000335,-0.055188,-0.000003,-0.000000;;, + 147;4;-1.000337,-0.055492,-0.000003,-0.000000;;, + 148;4;-1.000327,-0.053801,-0.000003,-0.000000;;, + 149;4;-1.000305,-0.049923,-0.000003,-0.000000;;, + 150;4;-1.000269,-0.043714,-0.000003,-0.000000;;, + 151;4;-1.000219,-0.035077,-0.000003,-0.000000;;, + 152;4;-1.000155,-0.023955,-0.000003,-0.000000;;, + 153;4;-1.000076,-0.010332,-0.000003,-0.000000;;, + 154;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 155;4;-0.999323,-0.001480,-0.000519, 0.002265;;, + 156;4;-0.997321,-0.021069,-0.002074, 0.009083;;, + 157;4;-0.994046,-0.049443,-0.004602, 0.020168;;, + 158;4;-0.989742,-0.082896,-0.007909, 0.034667;;, + 159;4;-0.984849,-0.117852,-0.011654, 0.051091;;, + 160;4;-0.979946,-0.151091,-0.015400, 0.067516;;, + 161;4;-0.975615,-0.179905,-0.018707, 0.082015;;, + 162;4;-0.972305,-0.202154,-0.021235, 0.093100;;, + 163;4;-0.970272,-0.216256,-0.022790, 0.099919;;, + 164;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 165;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 166;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 167;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 168;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 169;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 170;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 171;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 172;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 173;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 174;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 175;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 176;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 177;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 178;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 179;4;-0.969597,-0.221126,-0.023306, 0.102184;;; + } + AnimationKey { // Scale + 1; + 180; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 180; + 0;3; 0.023066, 7.567350, 2.341323;;, + 1;3; 0.023066, 7.567350, 2.341323;;, + 2;3; 0.023066, 7.567350, 2.341323;;, + 3;3; 0.023066, 7.567350, 2.341323;;, + 4;3; 0.023066, 7.567350, 2.341323;;, + 5;3; 0.023066, 7.567350, 2.341323;;, + 6;3; 0.023066, 7.567350, 2.341323;;, + 7;3; 0.023066, 7.567350, 2.341323;;, + 8;3; 0.023066, 7.567350, 2.341323;;, + 9;3; 0.023066, 7.567350, 2.341323;;, + 10;3; 0.023066, 7.567350, 2.341323;;, + 11;3; 0.023066, 7.567350, 2.341323;;, + 12;3; 0.023066, 7.567350, 2.341323;;, + 13;3; 0.023066, 7.567350, 2.341323;;, + 14;3; 0.023066, 7.567350, 2.341323;;, + 15;3; 0.023066, 7.567350, 2.341323;;, + 16;3; 0.023066, 7.567350, 2.341323;;, + 17;3; 0.023066, 7.567350, 2.341323;;, + 18;3; 0.023066, 7.567350, 2.341323;;, + 19;3; 0.023066, 7.567350, 2.341323;;, + 20;3; 0.023066, 7.567350, 2.341323;;, + 21;3; 0.023066, 7.567350, 2.341323;;, + 22;3; 0.023066, 7.567350, 2.341323;;, + 23;3; 0.023066, 7.567350, 2.341323;;, + 24;3; 0.023066, 7.567350, 2.341323;;, + 25;3; 0.023066, 7.567350, 2.341324;;, + 26;3; 0.023066, 7.567350, 2.341324;;, + 27;3; 0.023066, 7.567351, 2.341323;;, + 28;3; 0.023066, 7.567350, 2.341323;;, + 29;3; 0.023066, 7.567351, 2.341324;;, + 30;3; 0.023066, 7.567351, 2.341324;;, + 31;3; 0.023066, 7.567350, 2.341324;;, + 32;3; 0.023066, 7.567350, 2.341323;;, + 33;3; 0.023066, 7.567350, 2.341323;;, + 34;3; 0.023066, 7.567350, 2.341323;;, + 35;3; 0.023066, 7.567350, 2.341323;;, + 36;3; 0.023066, 7.567351, 2.341323;;, + 37;3; 0.023066, 7.567350, 2.341323;;, + 38;3; 0.023066, 7.567350, 2.341324;;, + 39;3; 0.023066, 7.567350, 2.341324;;, + 40;3; 0.023066, 7.567351, 2.341323;;, + 41;3; 0.023066, 7.567351, 2.341323;;, + 42;3; 0.023066, 7.567350, 2.341323;;, + 43;3; 0.023066, 7.567350, 2.341324;;, + 44;3; 0.023066, 7.567350, 2.341324;;, + 45;3; 0.023066, 7.567350, 2.341324;;, + 46;3; 0.023066, 7.567350, 2.341324;;, + 47;3; 0.023066, 7.567351, 2.341323;;, + 48;3; 0.023066, 7.567350, 2.341324;;, + 49;3; 0.023066, 7.567350, 2.341323;;, + 50;3; 0.023066, 7.599658, 2.246571;;, + 51;3; 0.023066, 7.695945, 1.966745;;, + 52;3; 0.023066, 7.847303, 1.530825;;, + 53;3; 0.023066, 8.031507, 1.003270;;, + 54;3; 0.023066, 8.215713, 0.475714;;, + 55;3; 0.023066, 8.367070, 0.039793;;, + 56;3; 0.023066, 8.463358,-0.240032;;, + 57;3; 0.023066, 8.495666,-0.334785;;, + 58;3; 0.023066, 8.495666,-0.334785;;, + 59;3; 0.023066, 8.495666,-0.334785;;, + 60;3; 0.023066, 8.495666,-0.334785;;, + 61;3; 0.023066, 8.495666,-0.334785;;, + 62;3; 0.023066, 8.495666,-0.334785;;, + 63;3; 0.023068, 8.495666,-0.334785;;, + 64;3; 0.023075, 8.495666,-0.334785;;, + 65;3; 0.023084, 8.495666,-0.334785;;, + 66;3; 0.023090, 8.495666,-0.334785;;, + 67;3; 0.023093, 8.495666,-0.334785;;, + 68;3; 0.023090, 8.495666,-0.334785;;, + 69;3; 0.023084, 8.495666,-0.334785;;, + 70;3; 0.023075, 8.495666,-0.334785;;, + 71;3; 0.023068, 8.495666,-0.334785;;, + 72;3; 0.023066, 8.495666,-0.334785;;, + 73;3; 0.023066, 8.438067,-0.164362;;, + 74;3; 0.023066, 8.271018, 0.319783;;, + 75;3; 0.023066, 8.031507, 1.003270;;, + 76;3; 0.023066, 7.791997, 1.686756;;, + 77;3; 0.023066, 7.624948, 2.170900;;, + 78;3; 0.023066, 7.567350, 2.341323;;, + 79;3; 0.023066, 7.567350, 2.341323;;, + 80;3; 0.023066, 7.567350, 2.341323;;, + 81;3; 0.023066, 7.567350, 2.341323;;, + 82;3; 0.023066, 7.567350, 2.341323;;, + 83;3; 0.023066, 7.567350, 2.341323;;, + 84;3; 0.023066, 7.567350, 2.341323;;, + 85;3; 0.023066, 7.567350, 2.341323;;, + 86;3; 0.023066, 7.567350, 2.341323;;, + 87;3; 0.023066, 7.567350, 2.341323;;, + 88;3; 0.023066, 7.567350, 2.341323;;, + 89;3; 0.023066, 7.567350, 2.341323;;, + 90;3; 0.023066, 7.567350, 2.341323;;, + 91;3; 0.023066, 7.567350, 2.341323;;, + 92;3; 0.023066, 7.567350, 2.341323;;, + 93;3; 0.023066, 7.567350, 2.341323;;, + 94;3; 0.023066, 7.567350, 2.341323;;, + 95;3; 0.023066, 7.567350, 2.341323;;, + 96;3; 0.023066, 7.567350, 2.341323;;, + 97;3; 0.023066, 7.567350, 2.341323;;, + 98;3; 0.023066, 7.567350, 2.341323;;, + 99;3; 0.023066, 7.567350, 2.341323;;, + 100;3; 0.023066, 7.567350, 2.341323;;, + 101;3; 0.023066, 7.567350, 2.341323;;, + 102;3; 0.023066, 7.567350, 2.341323;;, + 103;3; 0.023066, 7.567350, 2.341323;;, + 104;3; 0.023066, 7.567350, 2.341323;;, + 105;3; 0.023066, 7.567350, 2.341323;;, + 106;3; 0.023066, 7.567350, 2.341323;;, + 107;3; 0.023066, 7.567350, 2.341323;;, + 108;3; 0.023066, 7.567350, 2.341323;;, + 109;3; 0.023066, 7.567350, 2.341323;;, + 110;3; 0.023066, 7.567350, 2.341323;;, + 111;3; 0.023066, 7.567350, 2.341323;;, + 112;3; 0.023066, 7.567350, 2.341323;;, + 113;3; 0.023066, 7.567350, 2.341323;;, + 114;3; 0.023066, 7.567350, 2.341323;;, + 115;3; 0.023066, 7.567350, 2.341323;;, + 116;3; 0.023066, 7.567350, 2.341323;;, + 117;3; 0.023066, 7.567350, 2.341323;;, + 118;3; 0.023066, 7.567350, 2.341323;;, + 119;3; 0.023066, 7.567350, 2.341324;;, + 120;3; 0.023066, 7.567350, 2.341324;;, + 121;3; 0.023066, 7.567350, 2.341323;;, + 122;3; 0.023066, 7.567350, 2.341323;;, + 123;3; 0.023066, 7.567350, 2.341323;;, + 124;3; 0.023066, 7.567350, 2.341324;;, + 125;3; 0.023066, 7.567350, 2.341323;;, + 126;3; 0.023066, 7.567350, 2.341323;;, + 127;3; 0.023066, 7.567350, 2.341324;;, + 128;3; 0.023066, 7.567350, 2.341323;;, + 129;3; 0.023066, 7.567350, 2.341323;;, + 130;3; 0.023066, 7.567350, 2.341323;;, + 131;3; 0.023066, 7.567350, 2.341323;;, + 132;3; 0.023066, 7.567350, 2.341323;;, + 133;3; 0.023066, 7.567350, 2.341323;;, + 134;3; 0.023066, 7.567350, 2.341323;;, + 135;3; 0.023066, 7.567350, 2.341323;;, + 136;3; 0.023066, 7.567350, 2.341323;;, + 137;3; 0.023066, 7.567350, 2.341323;;, + 138;3; 0.023066, 7.567350, 2.341323;;, + 139;3; 0.023066, 7.567350, 2.341323;;, + 140;3; 0.023066, 7.567350, 2.341323;;, + 141;3; 0.023066, 7.567350, 2.341323;;, + 142;3; 0.023066, 7.567350, 2.341323;;, + 143;3; 0.023066, 7.567350, 2.341323;;, + 144;3; 0.023066, 7.567350, 2.341323;;, + 145;3; 0.023066, 7.567350, 2.341323;;, + 146;3; 0.023066, 7.567350, 2.341323;;, + 147;3; 0.023066, 7.567350, 2.341323;;, + 148;3; 0.023066, 7.567350, 2.341323;;, + 149;3; 0.023066, 7.567350, 2.341323;;, + 150;3; 0.023066, 7.567350, 2.341323;;, + 151;3; 0.023066, 7.567350, 2.341323;;, + 152;3; 0.023066, 7.567350, 2.341323;;, + 153;3; 0.023066, 7.567350, 2.341323;;, + 154;3; 0.023066, 7.567350, 2.341323;;, + 155;3; 0.023066, 7.567350, 2.341324;;, + 156;3; 0.023066, 7.567350, 2.341323;;, + 157;3; 0.023066, 7.567350, 2.341323;;, + 158;3; 0.023066, 7.567350, 2.341324;;, + 159;3; 0.023066, 7.567350, 2.341324;;, + 160;3; 0.023066, 7.567350, 2.341323;;, + 161;3; 0.023066, 7.567350, 2.341324;;, + 162;3; 0.023066, 7.567350, 2.341323;;, + 163;3; 0.023066, 7.567351, 2.341324;;, + 164;3; 0.023066, 7.567350, 2.341323;;, + 165;3; 0.023066, 7.567350, 2.341323;;, + 166;3; 0.023066, 7.567350, 2.341323;;, + 167;3; 0.023066, 7.567350, 2.341323;;, + 168;3; 0.023066, 7.567350, 2.341323;;, + 169;3; 0.023066, 7.567350, 2.341323;;, + 170;3; 0.023066, 7.567350, 2.341323;;, + 171;3; 0.023066, 7.567350, 2.341323;;, + 172;3; 0.023066, 7.567350, 2.341323;;, + 173;3; 0.023066, 7.567350, 2.341323;;, + 174;3; 0.023066, 7.567350, 2.341323;;, + 175;3; 0.023066, 7.567350, 2.341323;;, + 176;3; 0.023066, 7.567350, 2.341323;;, + 177;3; 0.023066, 7.567350, 2.341323;;, + 178;3; 0.023066, 7.567350, 2.341323;;, + 179;3; 0.023066, 7.567350, 2.341323;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/models/mobs_sand_monster.b3d b/mods/mobs_mc/models/mobs_sand_monster.b3d new file mode 100644 index 000000000..978250444 Binary files /dev/null and b/mods/mobs_mc/models/mobs_sand_monster.b3d differ diff --git a/mods/mobs_mc/models/mobs_sheep.x b/mods/mobs_mc/models/mobs_sheep.x new file mode 100644 index 000000000..d4066c47c --- /dev/null +++ b/mods/mobs_mc/models/mobs_sheep.x @@ -0,0 +1,7051 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Sheep_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Sheep_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Sheep_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000,11.409506, 5.419243, 1.000000;; + } + Frame Sheep_Rig_Head { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000005, 0.000000, + -0.000000, 0.999933, 0.011550, 0.000000, + -0.000005,-0.011550, 0.999933, 0.000000, + 0.023066,10.494865, 2.240401, 1.000000;; + } + } // End of Sheep_Rig_Head + Frame Sheep_Rig_Leg_B_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948, 0.210186,-3.417443, 1.000000;; + } + } // End of Sheep_Rig_Leg_B_L + Frame Sheep_Rig_Leg_B_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931, 0.210186,-3.417443, 1.000000;; + } + } // End of Sheep_Rig_Leg_B_R + Frame Sheep_Rig_Leg_F_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -1.760948,10.856443,-3.333342, 1.000000;; + } + } // End of Sheep_Rig_Leg_F_L + Frame Sheep_Rig_Leg_F_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 1.728931,10.856443,-3.333342, 1.000000;; + } + } // End of Sheep_Rig_Leg_F_R + } // End of Sheep_Rig_Body + } // End of Sheep_Rig_Root + Frame Sheep { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Sheep mesh + 296; + 2.707664; 9.300047;11.226737;, + 2.707664; 9.300047;16.451445;, + 2.707662; 4.075338;16.451445;, + 2.707661; 4.075337;11.226737;, + -2.517049; 4.075341;16.451445;, + -2.517047; 4.075340;11.226737;, + 2.707661; 4.075337;11.226737;, + 2.707662; 4.075338;16.451445;, + -2.517047; 4.075340;11.226737;, + -2.517045; 9.300048;11.226737;, + 2.707664; 9.300047;11.226737;, + 2.707661; 4.075337;11.226737;, + -2.517049; 4.075341;16.451445;, + 2.707662; 4.075338;16.451445;, + 2.707664; 9.300047;16.451445;, + -2.517044; 9.300050;16.451445;, + -2.517047; 4.075340;11.226737;, + -2.517049; 4.075341;16.451445;, + -2.517044; 9.300050;16.451445;, + -2.517045; 9.300048;11.226737;, + 2.707664; 9.300047;11.226737;, + -2.517045; 9.300048;11.226737;, + -2.517044; 9.300050;16.451445;, + 2.707664; 9.300047;16.451445;, + -0.303681;-3.894850; 5.967670;, + -3.139544;-3.894851; 5.967669;, + -3.139544;-3.894851; 8.399065;, + -0.303681;-3.894850; 8.399066;, + -0.303679;-6.544897; 5.967670;, + -0.303681;-6.544897; 8.399066;, + -3.139544;-6.544897; 8.399065;, + -3.139542;-6.544897; 5.967670;, + -0.303681;-3.894850; 5.967670;, + -0.303681;-3.894850; 8.399066;, + -0.303681;-6.544897; 8.399066;, + -0.303679;-6.544897; 5.967670;, + -0.303681;-3.894850; 8.399066;, + -3.139544;-3.894851; 8.399065;, + -3.139544;-6.544897; 8.399065;, + -0.303681;-6.544897; 8.399066;, + -3.139544;-3.894851; 8.399065;, + -3.139544;-3.894851; 5.967669;, + -3.139542;-6.544897; 5.967670;, + -3.139544;-6.544897; 8.399065;, + -3.139544;-3.894851; 5.967669;, + -2.791158;-4.220409; 5.967670;, + -2.791157;-6.219339; 5.967670;, + -3.139542;-6.544897; 5.967670;, + -0.652066;-4.220409; 5.967670;, + -0.652066;-4.220409;-0.124761;, + -2.791157;-4.220409;-0.124761;, + -2.791158;-4.220409; 5.967670;, + -2.791158;-4.220409; 5.967670;, + -2.791157;-4.220409;-0.124761;, + -2.791157;-6.219340;-0.124761;, + -2.791157;-6.219339; 5.967670;, + -2.791157;-6.219339; 5.967670;, + -2.791157;-6.219340;-0.124761;, + -0.652064;-6.219339;-0.124761;, + -0.652065;-6.219339; 5.967670;, + -0.652066;-4.220409;-0.124761;, + -0.652064;-6.219339;-0.124761;, + -2.791157;-6.219340;-0.124761;, + -2.791157;-4.220409;-0.124761;, + -0.303681;-3.894850; 5.967670;, + -0.652066;-4.220409; 5.967670;, + -2.791158;-4.220409; 5.967670;, + -3.139544;-3.894851; 5.967669;, + -0.303679;-6.544897; 5.967670;, + -0.652065;-6.219339; 5.967670;, + -0.652066;-4.220409; 5.967670;, + -0.303681;-3.894850; 5.967670;, + -3.139542;-6.544897; 5.967670;, + -2.791157;-6.219339; 5.967670;, + -0.652065;-6.219339; 5.967670;, + -0.303679;-6.544897; 5.967670;, + -0.652065;-6.219339; 5.967670;, + -0.652064;-6.219339;-0.124761;, + -0.652066;-4.220409;-0.124761;, + -0.652066;-4.220409; 5.967670;, + -3.535482;-7.249692; 6.965377;, + -3.535477; 7.273450; 6.965377;, + 3.726094; 7.273446; 6.965377;, + 3.726088;-7.249697; 6.965377;, + -3.535484;-7.249689;14.226948;, + 3.726089;-7.249694;14.226948;, + 3.726095; 7.273445;14.226948;, + -3.535475; 7.273454;14.226948;, + -3.535482;-7.249692; 6.965377;, + -3.535484;-7.249689;14.226948;, + -3.535475; 7.273454;14.226948;, + -3.535477; 7.273450; 6.965377;, + -3.535477; 7.273450; 6.965377;, + -3.535475; 7.273454;14.226948;, + 3.726095; 7.273445;14.226948;, + 3.726094; 7.273446; 6.965377;, + 3.726094; 7.273446; 6.965377;, + 3.726095; 7.273445;14.226948;, + 3.726089;-7.249694;14.226948;, + 3.726088;-7.249697; 6.965377;, + -3.535484;-7.249689;14.226948;, + -3.535482;-7.249692; 6.965377;, + 3.726088;-7.249697; 6.965377;, + 3.726089;-7.249694;14.226948;, + -0.786449; 4.053811; 8.213329;, + -3.001826; 4.053811; 8.213330;, + -3.001826; 4.053811; 8.213330;, + -0.786449; 4.053811; 8.213329;, + 2.264782; 9.699387;11.669618;, + 2.264782; 9.699387;16.008564;, + 2.264780; 9.178723;16.008564;, + 2.264780; 9.178723;11.669618;, + -2.074166; 9.178725;11.669618;, + -2.074164; 9.699387;11.669618;, + 2.264782; 9.699387;11.669618;, + 2.264780; 9.178723;11.669618;, + -2.074167; 9.178726;16.008564;, + 2.264780; 9.178723;16.008564;, + 2.264782; 9.699387;16.008564;, + -2.074163; 9.699389;16.008564;, + -2.074166; 9.178725;11.669618;, + -2.074167; 9.178726;16.008564;, + -2.074163; 9.699389;16.008564;, + -2.074164; 9.699387;11.669618;, + 2.264782; 9.699387;11.669618;, + -2.074164; 9.699387;11.669618;, + -2.074163; 9.699389;16.008564;, + 2.264782; 9.699387;16.008564;, + -0.303681; 6.663718; 5.967670;, + -3.139544; 6.663718; 5.967669;, + -3.139544; 6.663718; 8.399065;, + -0.303681; 6.663718; 8.399066;, + -0.303679; 4.013671; 5.967670;, + -0.303681; 4.013671; 8.399066;, + -3.139544; 4.013671; 8.399065;, + -3.139542; 4.013671; 5.967670;, + -0.303681; 6.663718; 5.967670;, + -0.303681; 6.663718; 8.399066;, + -0.303681; 4.013671; 8.399066;, + -0.303679; 4.013671; 5.967670;, + -0.303681; 6.663718; 8.399066;, + -3.139544; 6.663718; 8.399065;, + -3.139544; 4.013671; 8.399065;, + -0.303681; 4.013671; 8.399066;, + -3.139544; 6.663718; 8.399065;, + -3.139544; 6.663718; 5.967669;, + -3.139542; 4.013671; 5.967670;, + -3.139544; 4.013671; 8.399065;, + -3.139544; 6.663718; 5.967669;, + -2.791158; 6.338160; 5.967670;, + -2.791157; 4.339228; 5.967670;, + -3.139542; 4.013671; 5.967670;, + -0.652066; 6.338160; 5.967670;, + -0.652066; 6.338160;-0.124761;, + -2.791157; 6.338160;-0.124761;, + -2.791158; 6.338160; 5.967670;, + -2.791158; 6.338160; 5.967670;, + -2.791157; 6.338160;-0.124761;, + -2.791157; 4.339228;-0.124761;, + -2.791157; 4.339228; 5.967670;, + -2.791157; 4.339228; 5.967670;, + -2.791157; 4.339228;-0.124761;, + -0.652064; 4.339228;-0.124761;, + -0.652065; 4.339228; 5.967670;, + -0.652066; 6.338160;-0.124761;, + -0.652064; 4.339228;-0.124761;, + -2.791157; 4.339228;-0.124761;, + -2.791157; 6.338160;-0.124761;, + -0.303681; 6.663718; 5.967670;, + -0.652066; 6.338160; 5.967670;, + -2.791158; 6.338160; 5.967670;, + -3.139544; 6.663718; 5.967669;, + -0.303679; 4.013671; 5.967670;, + -0.652065; 4.339228; 5.967670;, + -0.652066; 6.338160; 5.967670;, + -0.303681; 6.663718; 5.967670;, + -3.139542; 4.013671; 5.967670;, + -2.791157; 4.339228; 5.967670;, + -0.652065; 4.339228; 5.967670;, + -0.303679; 4.013671; 5.967670;, + -0.652065; 4.339228; 5.967670;, + -0.652064; 4.339228;-0.124761;, + -0.652066; 6.338160;-0.124761;, + -0.652066; 6.338160; 5.967670;, + 3.450476;-3.894850; 5.967670;, + 0.614614;-3.894851; 5.967669;, + 0.614614;-3.894851; 8.399065;, + 3.450476;-3.894850; 8.399066;, + 3.450478;-6.544897; 5.967670;, + 3.450476;-6.544897; 8.399066;, + 0.614614;-6.544897; 8.399065;, + 0.614615;-6.544897; 5.967670;, + 3.450476;-3.894850; 5.967670;, + 3.450476;-3.894850; 8.399066;, + 3.450476;-6.544897; 8.399066;, + 3.450478;-6.544897; 5.967670;, + 3.450476;-3.894850; 8.399066;, + 0.614614;-3.894851; 8.399065;, + 0.614614;-6.544897; 8.399065;, + 3.450476;-6.544897; 8.399066;, + 0.614614;-3.894851; 8.399065;, + 0.614614;-3.894851; 5.967669;, + 0.614615;-6.544897; 5.967670;, + 0.614614;-6.544897; 8.399065;, + 0.614614;-3.894851; 5.967669;, + 0.963000;-4.220409; 5.967670;, + 0.963000;-6.219339; 5.967670;, + 0.614615;-6.544897; 5.967670;, + 3.102091;-4.220409; 5.967670;, + 3.102092;-4.220409;-0.124761;, + 0.963000;-4.220409;-0.124761;, + 0.963000;-4.220409; 5.967670;, + 0.963000;-4.220409; 5.967670;, + 0.963000;-4.220409;-0.124761;, + 0.963001;-6.219340;-0.124761;, + 0.963000;-6.219339; 5.967670;, + 0.963000;-6.219339; 5.967670;, + 0.963001;-6.219340;-0.124761;, + 3.102093;-6.219339;-0.124761;, + 3.102093;-6.219339; 5.967670;, + 3.102092;-4.220409;-0.124761;, + 3.102093;-6.219339;-0.124761;, + 0.963001;-6.219340;-0.124761;, + 0.963000;-4.220409;-0.124761;, + 3.450476;-3.894850; 5.967670;, + 3.102091;-4.220409; 5.967670;, + 0.963000;-4.220409; 5.967670;, + 0.614614;-3.894851; 5.967669;, + 3.450478;-6.544897; 5.967670;, + 3.102093;-6.219339; 5.967670;, + 3.102091;-4.220409; 5.967670;, + 3.450476;-3.894850; 5.967670;, + 0.614615;-6.544897; 5.967670;, + 0.963000;-6.219339; 5.967670;, + 3.102093;-6.219339; 5.967670;, + 3.450478;-6.544897; 5.967670;, + 3.102093;-6.219339; 5.967670;, + 3.102093;-6.219339;-0.124761;, + 3.102092;-4.220409;-0.124761;, + 3.102091;-4.220409; 5.967670;, + 3.450476; 6.663718; 5.967670;, + 0.614614; 6.663718; 5.967669;, + 0.614614; 6.663718; 8.399065;, + 3.450476; 6.663718; 8.399066;, + 3.450478; 4.013671; 5.967670;, + 3.450476; 4.013671; 8.399066;, + 0.614614; 4.013671; 8.399065;, + 0.614615; 4.013671; 5.967670;, + 3.450476; 6.663718; 5.967670;, + 3.450476; 6.663718; 8.399066;, + 3.450476; 4.013671; 8.399066;, + 3.450478; 4.013671; 5.967670;, + 3.450476; 6.663718; 8.399066;, + 0.614614; 6.663718; 8.399065;, + 0.614614; 4.013671; 8.399065;, + 3.450476; 4.013671; 8.399066;, + 0.614614; 6.663718; 8.399065;, + 0.614614; 6.663718; 5.967669;, + 0.614615; 4.013671; 5.967670;, + 0.614614; 4.013671; 8.399065;, + 0.614614; 6.663718; 5.967669;, + 0.963000; 6.338160; 5.967670;, + 0.963000; 4.339228; 5.967670;, + 0.614615; 4.013671; 5.967670;, + 3.102091; 6.338160; 5.967670;, + 3.102092; 6.338160;-0.124761;, + 0.963000; 6.338160;-0.124761;, + 0.963000; 6.338160; 5.967670;, + 0.963000; 6.338160; 5.967670;, + 0.963000; 6.338160;-0.124761;, + 0.963001; 4.339228;-0.124761;, + 0.963000; 4.339228; 5.967670;, + 0.963000; 4.339228; 5.967670;, + 0.963001; 4.339228;-0.124761;, + 3.102093; 4.339228;-0.124761;, + 3.102093; 4.339228; 5.967670;, + 3.102092; 6.338160;-0.124761;, + 3.102093; 4.339228;-0.124761;, + 0.963001; 4.339228;-0.124761;, + 0.963000; 6.338160;-0.124761;, + 3.450476; 6.663718; 5.967670;, + 3.102091; 6.338160; 5.967670;, + 0.963000; 6.338160; 5.967670;, + 0.614614; 6.663718; 5.967669;, + 3.450478; 4.013671; 5.967670;, + 3.102093; 4.339228; 5.967670;, + 3.102091; 6.338160; 5.967670;, + 3.450476; 6.663718; 5.967670;, + 0.614615; 4.013671; 5.967670;, + 0.963000; 4.339228; 5.967670;, + 3.102093; 4.339228; 5.967670;, + 3.450478; 4.013671; 5.967670;, + 3.102093; 4.339228; 5.967670;, + 3.102093; 4.339228;-0.124761;, + 3.102092; 6.338160;-0.124761;, + 3.102091; 6.338160; 5.967670;; + 74; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;, + 4;147,146,145,144;, + 4;151,150,149,148;, + 4;155,154,153,152;, + 4;159,158,157,156;, + 4;163,162,161,160;, + 4;167,166,165,164;, + 4;171,170,169,168;, + 4;175,174,173,172;, + 4;179,178,177,176;, + 4;183,182,181,180;, + 4;187,186,185,184;, + 4;191,190,189,188;, + 4;195,194,193,192;, + 4;199,198,197,196;, + 4;203,202,201,200;, + 4;207,206,205,204;, + 4;211,210,209,208;, + 4;215,214,213,212;, + 4;219,218,217,216;, + 4;223,222,221,220;, + 4;227,226,225,224;, + 4;231,230,229,228;, + 4;235,234,233,232;, + 4;239,238,237,236;, + 4;243,242,241,240;, + 4;247,246,245,244;, + 4;251,250,249,248;, + 4;255,254,253,252;, + 4;259,258,257,256;, + 4;263,262,261,260;, + 4;267,266,265,264;, + 4;271,270,269,268;, + 4;275,274,273,272;, + 4;279,278,277,276;, + 4;283,282,281,280;, + 4;287,286,285,284;, + 4;291,290,289,288;, + 4;295,294,293,292;; + MeshTextureCoords { // Sheep UV coordinates + 296; + 0.125000; 0.437500;, + 0.125000; 0.250000;, + 0.015625; 0.250000;, + 0.015625; 0.437500;, + 0.125000; 0.000000;, + 0.125000; 0.250000;, + 0.312500; 0.250000;, + 0.312500; 0.000000;, + 0.200000; 0.000000;, + 0.200000; 0.222222;, + 0.400000; 0.222222;, + 0.400000; 0.000000;, + 0.125000; 0.250000;, + 0.242188; 0.250000;, + 0.242188; 0.031250;, + 0.125000; 0.031250;, + 0.304688; 0.437500;, + 0.304688; 0.250000;, + 0.218750; 0.250000;, + 0.218750; 0.437500;, + 0.125000; 0.250000;, + 0.218750; 0.250000;, + 0.218750; 0.078125;, + 0.125000; 0.078125;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.625000;, + 0.250000; 0.625000;, + 0.062500; 0.750000;, + 0.062500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.750000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.062500; 0.625000;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.625000;, + 0.062500; 0.718750;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.718750;, + 0.250000; 0.750000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.750000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.250000; 0.718750;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.718750;, + 0.187500; 0.718750;, + 0.187500; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.718750;, + 0.125000; 0.718750;, + 0.125000; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 0.718750;, + 0.187500; 0.750000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.750000;, + 0.726562; 0.437500;, + 0.726562; 0.937500;, + 0.875000; 0.937500;, + 0.875000; 0.437500;, + 0.437500; 0.937500;, + 0.593750; 0.937500;, + 0.593750; 0.437500;, + 0.437500; 0.437500;, + 0.531250; 0.937500;, + 0.656250; 0.937500;, + 0.656250; 0.437500;, + 0.531250; 0.437500;, + 0.812500; 0.437500;, + 0.812500; 0.250000;, + 0.687500; 0.250000;, + 0.687500; 0.437500;, + 0.875000; 0.437500;, + 0.742188; 0.437500;, + 0.742188; 0.937500;, + 0.875000; 0.937500;, + 0.656250; 0.437500;, + 0.656250; 0.250000;, + 0.531250; 0.250000;, + 0.531250; 0.437500;, + 0.000000; 0.944444;, + 0.000000; 0.944444;, + 0.000000; 0.944444;, + 0.000000; 0.944444;, + 0.132812; 0.437500;, + 0.132812; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.437500;, + 0.218750; 0.437500;, + 0.218750; 0.421875;, + 0.125000; 0.421875;, + 0.125000; 0.437500;, + 0.218750; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.265625;, + 0.218750; 0.265625;, + 0.218750; 0.437500;, + 0.218750; 0.250000;, + 0.210938; 0.250000;, + 0.210938; 0.437500;, + 0.125000; 0.437500;, + 0.218750; 0.437500;, + 0.218750; 0.250000;, + 0.125000; 0.250000;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.625000;, + 0.250000; 0.625000;, + 0.062500; 0.750000;, + 0.062500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.750000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.062500; 0.625000;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.625000;, + 0.062500; 0.718750;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.718750;, + 0.250000; 0.750000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.750000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.250000; 0.718750;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.718750;, + 0.187500; 0.718750;, + 0.187500; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.718750;, + 0.125000; 0.718750;, + 0.125000; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 0.718750;, + 0.187500; 0.750000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.750000;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.625000;, + 0.250000; 0.625000;, + 0.062500; 0.750000;, + 0.062500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.750000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.062500; 0.625000;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.625000;, + 0.062500; 0.718750;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.718750;, + 0.250000; 0.750000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.750000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.250000; 0.718750;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.718750;, + 0.187500; 0.718750;, + 0.187500; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.718750;, + 0.125000; 0.718750;, + 0.125000; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 0.718750;, + 0.187500; 0.750000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.750000;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.625000;, + 0.250000; 0.625000;, + 0.062500; 0.750000;, + 0.062500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.750000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 0.500000;, + 0.125000; 0.500000;, + 0.062500; 0.625000;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.625000;, + 0.062500; 0.718750;, + 0.062500; 0.750000;, + 0.000000; 0.750000;, + 0.000000; 0.718750;, + 0.250000; 0.750000;, + 0.250000; 1.000000;, + 0.187500; 1.000000;, + 0.187500; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 1.000000;, + 0.062500; 1.000000;, + 0.062500; 0.750000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.250000; 0.718750;, + 0.250000; 0.750000;, + 0.187500; 0.750000;, + 0.187500; 0.718750;, + 0.187500; 0.718750;, + 0.187500; 0.750000;, + 0.125000; 0.750000;, + 0.125000; 0.718750;, + 0.125000; 0.718750;, + 0.125000; 0.750000;, + 0.062500; 0.750000;, + 0.062500; 0.718750;, + 0.187500; 0.750000;, + 0.187500; 1.000000;, + 0.125000; 1.000000;, + 0.125000; 0.750000;; + } // End of Sheep UV coordinates + MeshMaterialList { // Sheep material list + 1; + 74; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Sheep_Mat { + 0.800000; 0.800000; 0.800000; 1.000000;; + 96.078431; + 0.000000; 0.000000; 0.000000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"sheep.png";} + } + } // End of Sheep material list + XSkinMeshHeader { + 3; + 9; + 7; + } + SkinWeights { + "Sheep_Rig_Leg_B_R"; + 56; + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 216, + 217, + 218, + 219, + 220, + 221, + 222, + 223, + 224, + 225, + 226, + 227, + 228, + 229, + 230, + 231, + 232, + 233, + 234, + 235, + 236, + 237, + 238, + 239; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.728932, 7.992064, 5.209054, 1.000000;; + } // End of Sheep_Rig_Leg_B_R skin weights + SkinWeights { + "Sheep_Rig_Body"; + 24; + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999996, + 0.958702, + 0.999997, + 0.999212, + 1.000000, + 0.999996, + 0.999212, + 1.000000, + 1.000000, + 0.999212, + 0.999997, + 1.000000, + 1.000000, + 0.999997, + 0.958702, + 1.000000, + 0.999996, + 1.000000, + 1.000000, + 0.958702; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 5.419242,-11.409506, 1.000000;; + } // End of Sheep_Rig_Body skin weights + SkinWeights { + "Sheep_Rig_Leg_F_R"; + 56; + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271, + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + -1.728929, 8.076163,-5.437203, 1.000000;; + } // End of Sheep_Rig_Leg_F_R skin weights + SkinWeights { + "Sheep_Rig_Root"; + 176; + 0, + 3, + 5, + 6, + 8, + 9, + 10, + 11, + 16, + 19, + 20, + 21, + 24, + 28, + 29, + 30, + 32, + 34, + 35, + 38, + 39, + 43, + 59, + 64, + 68, + 69, + 71, + 74, + 75, + 76, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 108, + 111, + 112, + 113, + 114, + 115, + 120, + 123, + 124, + 125, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 147, + 148, + 149, + 152, + 155, + 156, + 163, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 178, + 179, + 180, + 183, + 185, + 186, + 187, + 189, + 190, + 191, + 193, + 194, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 211, + 212, + 215, + 216, + 219, + 226, + 227, + 229, + 232, + 233, + 234, + 236, + 240, + 241, + 242, + 243, + 244, + 245, + 246, + 247, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 267, + 268, + 271, + 272, + 275, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 295; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000004, + 0.041298, + 0.000000, + 0.000788, + 0.000000, + 0.000004, + 0.000788, + 0.000000, + 0.000000, + 0.000788, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.041298, + 0.000000, + 0.000004, + 0.000000, + 0.000000, + 0.041298, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } // End of Sheep_Rig_Root skin weights + SkinWeights { + "Sheep_Rig_Leg_F_L"; + 56; + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167, + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.760949, 8.076163,-5.437202, 1.000000;; + } // End of Sheep_Rig_Leg_F_L skin weights + SkinWeights { + "Sheep_Rig_Head"; + 50; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 86, + 87, + 90, + 93, + 94, + 97, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000003, + 0.000000, + 0.000000, + 0.000000, + 0.000003, + 0.000003, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000005, 0.000000, + -0.000000, 0.999933,-0.011550, 0.000000, + 0.000005, 0.011550, 0.999933, 0.000000, + -0.023134,-5.232944,-13.590372, 1.000000;; + } // End of Sheep_Rig_Head skin weights + SkinWeights { + "Sheep_Rig_Leg_B_L"; + 56; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000000, 0.000000, + 1.760947, 7.992064, 5.209055, 1.000000;; + } // End of Sheep_Rig_Leg_B_L skin weights + } // End of Sheep mesh + } // End of Sheep + } // End of Sheep_Rig +} // End of Root +AnimationSet Global { + Animation { + {Sheep} + AnimationKey { // Rotation + 0; + 187; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Sheep_Rig} + AnimationKey { // Rotation + 0; + 187; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 156;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 157;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 158;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 159;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 160;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 161;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 162;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 163;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 164;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 165;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 166;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 167;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 168;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 169;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 170;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 171;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 172;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 173;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 174;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 175;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 176;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 177;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 178;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 179;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 180;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 181;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 182;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 183;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 184;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 185;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 186;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Sheep_Rig_Root} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 158;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 159;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 160;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 161;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 162;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 163;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 164;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 165;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 166;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 167;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 168;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 169;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 170;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 171;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 172;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 173;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 174;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 175;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 176;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 177;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 178;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 179;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 180;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 181;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 182;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 183;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 184;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 185;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 186;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;, + 146;3; 0.000000, 0.000000, 0.000000;;, + 147;3; 0.000000, 0.000000, 0.000000;;, + 148;3; 0.000000, 0.000000, 0.000000;;, + 149;3; 0.000000, 0.000000, 0.000000;;, + 150;3; 0.000000, 0.000000, 0.000000;;, + 151;3; 0.000000, 0.000000, 0.000000;;, + 152;3; 0.000000, 0.000000, 0.000000;;, + 153;3; 0.000000, 0.000000, 0.000000;;, + 154;3; 0.000000, 0.000000, 0.000000;;, + 155;3; 0.000000, 0.000000, 0.000000;;, + 156;3; 0.000000, 0.000000, 0.000000;;, + 157;3; 0.000000, 0.000000, 0.000000;;, + 158;3; 0.000000, 0.000000, 0.000000;;, + 159;3; 0.000000, 0.000000, 0.000000;;, + 160;3; 0.000000, 0.000000, 0.000000;;, + 161;3; 0.000000, 0.000000, 0.000000;;, + 162;3; 0.000000, 0.000000, 0.000000;;, + 163;3; 0.000000, 0.000000, 0.000000;;, + 164;3; 0.000000, 0.000000, 0.000000;;, + 165;3; 0.000000, 0.000000, 0.000000;;, + 166;3; 0.000000, 0.000000, 0.000000;;, + 167;3; 0.000000, 0.000000, 0.000000;;, + 168;3; 0.000000, 0.000000, 0.000000;;, + 169;3; 0.000000, 0.000000, 0.000000;;, + 170;3; 0.000000, 0.000000, 0.000000;;, + 171;3; 0.000000, 0.000000, 0.000000;;, + 172;3; 0.000000, 0.000000, 0.000000;;, + 173;3; 0.000000, 0.000000, 0.000000;;, + 174;3; 0.000000, 0.000000, 0.000000;;, + 175;3; 0.000000, 0.000000, 0.000000;;, + 176;3; 0.000000, 0.000000, 0.000000;;, + 177;3; 0.000000, 0.000000, 0.000000;;, + 178;3; 0.000000, 0.000000, 0.000000;;, + 179;3; 0.000000, 0.000000, 0.000000;;, + 180;3; 0.000000, 0.000000, 0.000000;;, + 181;3; 0.000000, 0.000000, 0.000000;;, + 182;3; 0.000000, 0.000000, 0.000000;;, + 183;3; 0.000000, 0.000000, 0.000000;;, + 184;3; 0.000000, 0.000000, 0.000000;;, + 185;3; 0.000000, 0.000000, 0.000000;;, + 186;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Sheep_Rig_Body} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 24;4;-0.707100,-0.707100, 0.000762,-0.000762;;, + 25;4;-0.707081,-0.707081, 0.002981,-0.002981;;, + 26;4;-0.707053,-0.707053, 0.006170,-0.006170;;, + 27;4;-0.707025,-0.707025, 0.009360,-0.009360;;, + 28;4;-0.707006,-0.707006, 0.011578,-0.011578;;, + 29;4;-0.706999,-0.706999, 0.012341,-0.012341;;, + 30;4;-0.707006,-0.707006, 0.011859,-0.011859;;, + 31;4;-0.707025,-0.707025, 0.010366,-0.010366;;, + 32;4;-0.707053,-0.707053, 0.007977,-0.007977;;, + 33;4;-0.707081,-0.707081, 0.005120,-0.005120;;, + 34;4;-0.707100,-0.707100, 0.002338,-0.002338;;, + 35;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 36;4;-0.707100,-0.707100,-0.002338, 0.002338;;, + 37;4;-0.707081,-0.707081,-0.005120, 0.005120;;, + 38;4;-0.707053,-0.707053,-0.007977, 0.007977;;, + 39;4;-0.707025,-0.707025,-0.010366, 0.010366;;, + 40;4;-0.707006,-0.707006,-0.011859, 0.011859;;, + 41;4;-0.706999,-0.706999,-0.012341, 0.012341;;, + 42;4;-0.707003,-0.707003,-0.011912, 0.011912;;, + 43;4;-0.707014,-0.707014,-0.010634, 0.010634;;, + 44;4;-0.707032,-0.707032,-0.008622, 0.008622;;, + 45;4;-0.707053,-0.707053,-0.006170, 0.006170;;, + 46;4;-0.707074,-0.707074,-0.003719, 0.003719;;, + 47;4;-0.707092,-0.707092,-0.001707, 0.001707;;, + 48;4;-0.707103,-0.707103,-0.000428, 0.000428;;, + 49;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 155;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 156;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 157;4;-0.707107,-0.707107, 0.000000, 0.000000;;, + 158;4;-0.697711,-0.697711,-0.022700, 0.022700;;, + 159;4;-0.669922,-0.669922,-0.089721, 0.089721;;, + 160;4;-0.627593,-0.627593,-0.191701, 0.191701;;, + 161;4;-0.579576,-0.579576,-0.307439, 0.307439;;, + 162;4;-0.537223,-0.537223,-0.409744, 0.409744;;, + 163;4;-0.509408,-0.509408,-0.477140, 0.477140;;, + 164;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 165;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 166;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 167;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 168;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 169;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 170;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 171;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 172;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 173;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 174;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 175;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 176;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 177;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 178;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 179;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 180;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 181;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 182;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 183;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 184;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 185;4;-0.500000,-0.500000,-0.500000, 0.500000;;, + 186;4;-0.500000,-0.500000,-0.500000, 0.500000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.000000,11.409506, 5.419243;;, + 1;3; 0.000000,11.409506, 5.419243;;, + 2;3; 0.000000,11.409506, 5.419243;;, + 3;3; 0.000000,11.409506, 5.419243;;, + 4;3; 0.000000,11.409506, 5.419243;;, + 5;3; 0.000000,11.409506, 5.419243;;, + 6;3; 0.000000,11.409506, 5.419243;;, + 7;3; 0.000000,11.409506, 5.419243;;, + 8;3; 0.000000,11.409506, 5.419243;;, + 9;3; 0.000000,11.409506, 5.419243;;, + 10;3; 0.000000,11.409506, 5.419243;;, + 11;3; 0.000000,11.409506, 5.419243;;, + 12;3; 0.000000,11.409506, 5.419243;;, + 13;3; 0.000000,11.409506, 5.419243;;, + 14;3; 0.000000,11.409506, 5.419243;;, + 15;3; 0.000000,11.409506, 5.419243;;, + 16;3; 0.000000,11.409506, 5.419243;;, + 17;3; 0.000000,11.409506, 5.419243;;, + 18;3; 0.000000,11.409506, 5.419243;;, + 19;3; 0.000000,11.409506, 5.419243;;, + 20;3; 0.000000,11.409506, 5.419243;;, + 21;3; 0.000000,11.409506, 5.419243;;, + 22;3; 0.000000,11.409506, 5.419243;;, + 23;3; 0.000000,11.409506, 5.419243;;, + 24;3; 0.000000,11.409506, 5.419243;;, + 25;3; 0.000000,11.409506, 5.419243;;, + 26;3; 0.000000,11.409506, 5.419243;;, + 27;3; 0.000000,11.409506, 5.419243;;, + 28;3; 0.000000,11.409506, 5.419243;;, + 29;3; 0.000000,11.409506, 5.419243;;, + 30;3; 0.000000,11.409506, 5.419243;;, + 31;3; 0.000000,11.409506, 5.419243;;, + 32;3; 0.000000,11.409506, 5.419243;;, + 33;3; 0.000000,11.409506, 5.419243;;, + 34;3; 0.000000,11.409506, 5.419243;;, + 35;3; 0.000000,11.409506, 5.419243;;, + 36;3; 0.000000,11.409506, 5.419243;;, + 37;3; 0.000000,11.409506, 5.419243;;, + 38;3; 0.000000,11.409506, 5.419243;;, + 39;3; 0.000000,11.409506, 5.419243;;, + 40;3; 0.000000,11.409506, 5.419243;;, + 41;3; 0.000000,11.409506, 5.419243;;, + 42;3; 0.000000,11.409506, 5.419243;;, + 43;3; 0.000000,11.409506, 5.419243;;, + 44;3; 0.000000,11.409506, 5.419243;;, + 45;3; 0.000000,11.409506, 5.419243;;, + 46;3; 0.000000,11.409506, 5.419243;;, + 47;3; 0.000000,11.409506, 5.419243;;, + 48;3; 0.000000,11.409506, 5.419243;;, + 49;3; 0.000000,11.409506, 5.419243;;, + 50;3; 0.000000,11.409506, 5.419243;;, + 51;3; 0.000000,11.409506, 5.419243;;, + 52;3; 0.000000,11.409506, 5.419243;;, + 53;3; 0.000000,11.409506, 5.419243;;, + 54;3; 0.000000,11.409506, 5.419243;;, + 55;3; 0.000000,11.409506, 5.419243;;, + 56;3; 0.000000,11.409506, 5.419243;;, + 57;3; 0.000000,11.409506, 5.419243;;, + 58;3; 0.000000,11.409506, 5.419243;;, + 59;3; 0.000000,11.409506, 5.419243;;, + 60;3; 0.000000,11.409506, 5.419243;;, + 61;3; 0.000000,11.409506, 5.419243;;, + 62;3; 0.000000,11.409506, 5.419243;;, + 63;3; 0.000000,11.409506, 5.419243;;, + 64;3; 0.000000,11.409506, 5.419243;;, + 65;3; 0.000000,11.409506, 5.419243;;, + 66;3; 0.000000,11.409506, 5.419243;;, + 67;3; 0.000000,11.409506, 5.419243;;, + 68;3; 0.000000,11.409506, 5.419243;;, + 69;3; 0.000000,11.409506, 5.419243;;, + 70;3; 0.000000,11.409506, 5.419243;;, + 71;3; 0.000000,11.409506, 5.419243;;, + 72;3; 0.000000,11.409506, 5.419243;;, + 73;3; 0.000000,11.409506, 5.419243;;, + 74;3; 0.000000,11.409506, 5.419243;;, + 75;3; 0.000000,11.409506, 5.419243;;, + 76;3; 0.000000,11.409506, 5.419243;;, + 77;3; 0.000000,11.409506, 5.419243;;, + 78;3; 0.000000,11.409506, 5.419243;;, + 79;3; 0.000000,11.409506, 5.419243;;, + 80;3; 0.000000,11.409506, 5.419243;;, + 81;3; 0.000000,11.409506, 5.419243;;, + 82;3; 0.000000,11.409506, 5.419243;;, + 83;3; 0.000000,11.409506, 5.419243;;, + 84;3; 0.000000,11.409506, 5.419243;;, + 85;3; 0.000000,11.409506, 5.419243;;, + 86;3; 0.000000,11.409506, 5.419243;;, + 87;3; 0.000000,11.409506, 5.419243;;, + 88;3; 0.000000,11.409506, 5.419243;;, + 89;3; 0.000000,11.409506, 5.419243;;, + 90;3; 0.000000,11.409506, 5.419243;;, + 91;3; 0.000000,11.409506, 5.419243;;, + 92;3; 0.000000,11.409506, 5.419243;;, + 93;3; 0.000000,11.409506, 5.419243;;, + 94;3; 0.000000,11.409506, 5.419243;;, + 95;3; 0.000000,11.409506, 5.419243;;, + 96;3; 0.000000,11.409506, 5.419243;;, + 97;3; 0.000000,11.409506, 5.419243;;, + 98;3; 0.000000,11.409506, 5.419243;;, + 99;3; 0.000000,11.409506, 5.419243;;, + 100;3; 0.000000,11.409506, 5.419243;;, + 101;3; 0.000000,11.409506, 5.419243;;, + 102;3; 0.000000,11.409506, 5.419243;;, + 103;3; 0.000000,11.409506, 5.419243;;, + 104;3; 0.000000,11.409506, 5.419243;;, + 105;3; 0.000000,11.409506, 5.419243;;, + 106;3; 0.000000,11.409506, 5.419243;;, + 107;3; 0.000000,11.409506, 5.419243;;, + 108;3; 0.000000,11.409506, 5.419243;;, + 109;3; 0.000000,11.409506, 5.419243;;, + 110;3; 0.000000,11.409506, 5.419243;;, + 111;3; 0.000000,11.409506, 5.419243;;, + 112;3; 0.000000,11.409506, 5.419243;;, + 113;3; 0.000000,11.409506, 5.419243;;, + 114;3; 0.000000,11.409506, 5.419243;;, + 115;3; 0.000000,11.409506, 5.419243;;, + 116;3; 0.000000,11.409506, 5.419243;;, + 117;3; 0.000000,11.409506, 5.419243;;, + 118;3; 0.000000,11.409506, 5.419243;;, + 119;3; 0.000000,11.929585, 5.419243;;, + 120;3; 0.000000,12.472727, 5.419243;;, + 121;3; 0.000000,12.960096, 5.419243;;, + 122;3; 0.000000,13.352370, 5.419243;;, + 123;3; 0.000000,13.616222, 5.419243;;, + 124;3; 0.000000,13.714186, 5.419243;;, + 125;3; 0.000000,13.634228, 5.419243;;, + 126;3; 0.000000,13.396275, 5.419243;;, + 127;3; 0.000000,13.022429, 5.419243;;, + 128;3; 0.000000,12.566847, 5.419243;;, + 129;3; 0.000000,12.109687, 5.419243;;, + 130;3; 0.000000,11.732204, 5.419243;;, + 131;3; 0.000000,11.490833, 5.419243;;, + 132;3; 0.000000,11.409506, 5.419243;;, + 133;3; 0.000000,11.409436, 5.419243;;, + 134;3; 0.000000,11.409246, 5.419243;;, + 135;3; 0.000000,11.408957, 5.419243;;, + 136;3; 0.000000,11.408587, 5.419243;;, + 137;3; 0.000000,11.408154, 5.419243;;, + 138;3; 0.000000,11.407667, 5.419243;;, + 139;3; 0.000000,11.407142, 5.419243;;, + 140;3; 0.000000,11.406587, 5.419243;;, + 141;3; 0.000000,11.406015, 5.419243;;, + 142;3; 0.000000,11.405437, 5.419243;;, + 143;3; 0.000000,11.404861, 5.419243;;, + 144;3; 0.000000,11.404304, 5.419243;;, + 145;3; 0.000000,11.403775, 5.419243;;, + 146;3; 0.000000,11.403294, 5.419243;;, + 147;3; 0.000000,11.402880, 5.419243;;, + 148;3; 0.000000,11.402558, 5.419243;;, + 149;3; 0.000000,11.402367, 5.419243;;, + 150;3; 0.000000,11.402359, 5.419243;;, + 151;3; 0.000000,11.402626, 5.419243;;, + 152;3; 0.000000,11.403333, 5.419243;;, + 153;3; 0.000000,11.404892, 5.419243;;, + 154;3; 0.000000,11.409506, 5.419243;;, + 155;3; 0.000000,12.018248, 5.419243;;, + 156;3; 0.000000,12.965819, 5.419243;;, + 157;3; 0.000000,13.409506, 5.419243;;, + 158;3;-0.011617,13.025496, 5.419243;;, + 159;3;-0.045976,12.114250, 5.419243;;, + 160;3;-0.098318,10.865487, 5.419243;;, + 161;3;-0.157691, 9.368172, 5.419242;;, + 162;3;-0.210054, 7.666986, 5.419243;;, + 163;3;-0.244439, 5.774465, 5.419243;;, + 164;3;-0.256067, 3.546100, 5.419243;;, + 165;3;-0.256067, 3.546100, 5.419243;;, + 166;3;-0.256067, 3.546100, 5.419243;;, + 167;3;-0.256067, 3.546100, 5.419243;;, + 168;3;-0.256067, 3.546100, 5.419243;;, + 169;3;-0.256067, 3.546100, 5.419243;;, + 170;3;-0.256067, 3.546100, 5.419243;;, + 171;3;-0.256067, 3.546100, 5.419243;;, + 172;3;-0.256067, 3.546100, 5.419243;;, + 173;3;-0.256067, 3.546100, 5.419243;;, + 174;3;-0.256067, 3.546100, 5.419243;;, + 175;3;-0.256067, 3.546100, 5.419243;;, + 176;3;-0.256067, 3.546100, 5.419243;;, + 177;3;-0.256067, 3.546100, 5.419243;;, + 178;3;-0.256067, 3.546100, 5.419243;;, + 179;3;-0.256067, 3.546100, 5.419243;;, + 180;3;-0.256067, 3.546100, 5.419243;;, + 181;3;-0.256067, 3.546100, 5.419243;;, + 182;3;-0.256067, 3.546100, 5.419243;;, + 183;3;-0.256067, 3.546100, 5.419243;;, + 184;3;-0.256067, 3.546100, 5.419243;;, + 185;3;-0.256067, 3.546100, 5.419243;;, + 186;3;-0.256067, 3.546100, 5.419243;;; + } + } + Animation { + {Sheep_Rig_Leg_B_L} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.677652,-0.732304, 0.001104,-0.001104;;, + 156;4;-0.614838,-0.785491, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.555869,-0.832037, 0.004091,-0.004091;;, + 159;4;-0.541254,-0.842217, 0.003516,-0.003516;;, + 160;4;-0.530481,-0.849211, 0.002640,-0.002640;;, + 161;4;-0.523690,-0.853119, 0.001646,-0.001646;;, + 162;4;-0.520229,-0.854693, 0.000770,-0.000770;;, + 163;4;-0.518938,-0.855000, 0.000194,-0.000194;;, + 164;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 165;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 166;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 167;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 168;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 169;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 170;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 171;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 172;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 173;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 174;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 175;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 176;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 177;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 178;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 179;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 180;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 181;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 182;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 183;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 184;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 185;4;-0.518701,-0.854956, 0.000000,-0.000000;;, + 186;4;-0.518701,-0.854956, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3;-1.760948, 0.210186,-3.417443;;, + 1;3;-1.760948, 0.210186,-3.417443;;, + 2;3;-1.760948, 0.210186,-3.417443;;, + 3;3;-1.760948, 0.210186,-3.417443;;, + 4;3;-1.760948, 0.210186,-3.417443;;, + 5;3;-1.760948, 0.210186,-3.417443;;, + 6;3;-1.760948, 0.210186,-3.417443;;, + 7;3;-1.760948, 0.210186,-3.417443;;, + 8;3;-1.760948, 0.210186,-3.417443;;, + 9;3;-1.760948, 0.210186,-3.417443;;, + 10;3;-1.760948, 0.210186,-3.417443;;, + 11;3;-1.760948, 0.210186,-3.417443;;, + 12;3;-1.760948, 0.210186,-3.417443;;, + 13;3;-1.760948, 0.210186,-3.417443;;, + 14;3;-1.760948, 0.210186,-3.417443;;, + 15;3;-1.760948, 0.210186,-3.417443;;, + 16;3;-1.760948, 0.210186,-3.417443;;, + 17;3;-1.760948, 0.210186,-3.417443;;, + 18;3;-1.760948, 0.210186,-3.417443;;, + 19;3;-1.760948, 0.210186,-3.417443;;, + 20;3;-1.760948, 0.210186,-3.417443;;, + 21;3;-1.760948, 0.210186,-3.417443;;, + 22;3;-1.760948, 0.210186,-3.417443;;, + 23;3;-1.760948, 0.210186,-3.417443;;, + 24;3;-1.760948, 0.210186,-3.417443;;, + 25;3;-1.760948, 0.210186,-3.417442;;, + 26;3;-1.760948, 0.210186,-3.417443;;, + 27;3;-1.760948, 0.210186,-3.417443;;, + 28;3;-1.760948, 0.210186,-3.417442;;, + 29;3;-1.760948, 0.210186,-3.417443;;, + 30;3;-1.760948, 0.210186,-3.417443;;, + 31;3;-1.760948, 0.210186,-3.417443;;, + 32;3;-1.760948, 0.210186,-3.417443;;, + 33;3;-1.760948, 0.210186,-3.417443;;, + 34;3;-1.760948, 0.210186,-3.417443;;, + 35;3;-1.760948, 0.210186,-3.417443;;, + 36;3;-1.760948, 0.210186,-3.417443;;, + 37;3;-1.760948, 0.210186,-3.417443;;, + 38;3;-1.760948, 0.210186,-3.417443;;, + 39;3;-1.760948, 0.210186,-3.417443;;, + 40;3;-1.760948, 0.210186,-3.417443;;, + 41;3;-1.760948, 0.210186,-3.417443;;, + 42;3;-1.760948, 0.210186,-3.417443;;, + 43;3;-1.760948, 0.210186,-3.417443;;, + 44;3;-1.760948, 0.210186,-3.417443;;, + 45;3;-1.760948, 0.210186,-3.417443;;, + 46;3;-1.760948, 0.210186,-3.417442;;, + 47;3;-1.760948, 0.210186,-3.417443;;, + 48;3;-1.760948, 0.210186,-3.417443;;, + 49;3;-1.760948, 0.210186,-3.417443;;, + 50;3;-1.760948, 0.210186,-3.417443;;, + 51;3;-1.760948, 0.210186,-3.417443;;, + 52;3;-1.760948, 0.210186,-3.417443;;, + 53;3;-1.760948, 0.210186,-3.417443;;, + 54;3;-1.760948, 0.210186,-3.417443;;, + 55;3;-1.760948, 0.210186,-3.417443;;, + 56;3;-1.760948, 0.210186,-3.417443;;, + 57;3;-1.760948, 0.210186,-3.417443;;, + 58;3;-1.760948, 0.210186,-3.417443;;, + 59;3;-1.760948, 0.210186,-3.417443;;, + 60;3;-1.760948, 0.210186,-3.417443;;, + 61;3;-1.760948, 0.210186,-3.417443;;, + 62;3;-1.760948, 0.210186,-3.417443;;, + 63;3;-1.760948, 0.210186,-3.417443;;, + 64;3;-1.760948, 0.210186,-3.417443;;, + 65;3;-1.760948, 0.210186,-3.417443;;, + 66;3;-1.760948, 0.210186,-3.417443;;, + 67;3;-1.760948, 0.210186,-3.417443;;, + 68;3;-1.760948, 0.210186,-3.417443;;, + 69;3;-1.760948, 0.210186,-3.417443;;, + 70;3;-1.760948, 0.210186,-3.417443;;, + 71;3;-1.760948, 0.210186,-3.417443;;, + 72;3;-1.760948, 0.210186,-3.417443;;, + 73;3;-1.760948, 0.210186,-3.417443;;, + 74;3;-1.760948, 0.210186,-3.417443;;, + 75;3;-1.760948, 0.210186,-3.417443;;, + 76;3;-1.760948, 0.210186,-3.417443;;, + 77;3;-1.760948, 0.210186,-3.417443;;, + 78;3;-1.760948, 0.210186,-3.417443;;, + 79;3;-1.760948, 0.210186,-3.417443;;, + 80;3;-1.760948, 0.210186,-3.417443;;, + 81;3;-1.760948, 0.210186,-3.417443;;, + 82;3;-1.760948, 0.210186,-3.417443;;, + 83;3;-1.760948, 0.210186,-3.417443;;, + 84;3;-1.760948, 0.210186,-3.417443;;, + 85;3;-1.760948, 0.210186,-3.417443;;, + 86;3;-1.760948, 0.210186,-3.417443;;, + 87;3;-1.760948, 0.210186,-3.417443;;, + 88;3;-1.760948, 0.210186,-3.417443;;, + 89;3;-1.760948, 0.210186,-3.417443;;, + 90;3;-1.760948, 0.210186,-3.417443;;, + 91;3;-1.760948, 0.210186,-3.417443;;, + 92;3;-1.760948, 0.210186,-3.417443;;, + 93;3;-1.760948, 0.210186,-3.417443;;, + 94;3;-1.760948, 0.210186,-3.417443;;, + 95;3;-1.760948, 0.210186,-3.417443;;, + 96;3;-1.760948, 0.210186,-3.417443;;, + 97;3;-1.760948, 0.210186,-3.417443;;, + 98;3;-1.760948, 0.210186,-3.417443;;, + 99;3;-1.760948, 0.210186,-3.417443;;, + 100;3;-1.760948, 0.210186,-3.417443;;, + 101;3;-1.760948, 0.210186,-3.417443;;, + 102;3;-1.760948, 0.210186,-3.417443;;, + 103;3;-1.760948, 0.210186,-3.417443;;, + 104;3;-1.760948, 0.210186,-3.417443;;, + 105;3;-1.760948, 0.210186,-3.417443;;, + 106;3;-1.760948, 0.210186,-3.417443;;, + 107;3;-1.760948, 0.210186,-3.417443;;, + 108;3;-1.760948, 0.210186,-3.417443;;, + 109;3;-1.760948, 0.210186,-3.417443;;, + 110;3;-1.760948, 0.210186,-3.417443;;, + 111;3;-1.760948, 0.210186,-3.417443;;, + 112;3;-1.760948, 0.210186,-3.417443;;, + 113;3;-1.760948, 0.210186,-3.417443;;, + 114;3;-1.760948, 0.210186,-3.417443;;, + 115;3;-1.760948, 0.210186,-3.417443;;, + 116;3;-1.760948, 0.210186,-3.417443;;, + 117;3;-1.760948, 0.210186,-3.417443;;, + 118;3;-1.760948, 0.210186,-3.417443;;, + 119;3;-1.760948, 0.210186,-3.417442;;, + 120;3;-1.760948, 0.210186,-3.417442;;, + 121;3;-1.760948, 0.210186,-3.417442;;, + 122;3;-1.760948, 0.210186,-3.417443;;, + 123;3;-1.760948, 0.210186,-3.417442;;, + 124;3;-1.760948, 0.210186,-3.417442;;, + 125;3;-1.760948, 0.210186,-3.417442;;, + 126;3;-1.760948, 0.210186,-3.417442;;, + 127;3;-1.760948, 0.210186,-3.417443;;, + 128;3;-1.760948, 0.210186,-3.417442;;, + 129;3;-1.760948, 0.210186,-3.417443;;, + 130;3;-1.760948, 0.210186,-3.417442;;, + 131;3;-1.760948, 0.210186,-3.417442;;, + 132;3;-1.760948, 0.210186,-3.417443;;, + 133;3;-1.760948, 0.210186,-3.417443;;, + 134;3;-1.760948, 0.210186,-3.417443;;, + 135;3;-1.760948, 0.210186,-3.417443;;, + 136;3;-1.760948, 0.210186,-3.417443;;, + 137;3;-1.760948, 0.210186,-3.417443;;, + 138;3;-1.760948, 0.210186,-3.417443;;, + 139;3;-1.760948, 0.210186,-3.417443;;, + 140;3;-1.760948, 0.210186,-3.417443;;, + 141;3;-1.760948, 0.210186,-3.417443;;, + 142;3;-1.760948, 0.210186,-3.417443;;, + 143;3;-1.760948, 0.210186,-3.417443;;, + 144;3;-1.760948, 0.210186,-3.417443;;, + 145;3;-1.760948, 0.210186,-3.417443;;, + 146;3;-1.760948, 0.210186,-3.417443;;, + 147;3;-1.760948, 0.210186,-3.417443;;, + 148;3;-1.760948, 0.210186,-3.417443;;, + 149;3;-1.760948, 0.210186,-3.417443;;, + 150;3;-1.760948, 0.210186,-3.417443;;, + 151;3;-1.760948, 0.210186,-3.417443;;, + 152;3;-1.760948, 0.210186,-3.417443;;, + 153;3;-1.760948, 0.210186,-3.417443;;, + 154;3;-1.760948, 0.210186,-3.417443;;, + 155;3;-1.760948, 0.210186,-3.417442;;, + 156;3;-1.760948, 0.210186,-3.417443;;, + 157;3;-1.760948, 0.210186,-3.417442;;, + 158;3;-1.760948, 0.210186,-3.417442;;, + 159;3;-1.760948, 0.210186,-3.417444;;, + 160;3;-1.760948, 0.210186,-3.417443;;, + 161;3;-1.760948, 0.210186,-3.417442;;, + 162;3;-1.760947, 0.210186,-3.417443;;, + 163;3;-1.760948, 0.210186,-3.417443;;, + 164;3;-1.760948, 0.210186,-3.417443;;, + 165;3;-1.760948, 0.210186,-3.417443;;, + 166;3;-1.760948, 0.210186,-3.417443;;, + 167;3;-1.760948, 0.210186,-3.417443;;, + 168;3;-1.760948, 0.210186,-3.417443;;, + 169;3;-1.760948, 0.210186,-3.417443;;, + 170;3;-1.760948, 0.210186,-3.417443;;, + 171;3;-1.760948, 0.210186,-3.417443;;, + 172;3;-1.760948, 0.210186,-3.417443;;, + 173;3;-1.760948, 0.210186,-3.417443;;, + 174;3;-1.760948, 0.210186,-3.417443;;, + 175;3;-1.760948, 0.210186,-3.417443;;, + 176;3;-1.760948, 0.210186,-3.417443;;, + 177;3;-1.760948, 0.210186,-3.417443;;, + 178;3;-1.760948, 0.210186,-3.417443;;, + 179;3;-1.760948, 0.210186,-3.417443;;, + 180;3;-1.760948, 0.210186,-3.417443;;, + 181;3;-1.760948, 0.210186,-3.417443;;, + 182;3;-1.760948, 0.210186,-3.417443;;, + 183;3;-1.760948, 0.210186,-3.417443;;, + 184;3;-1.760948, 0.210186,-3.417443;;, + 185;3;-1.760948, 0.210186,-3.417443;;, + 186;3;-1.760948, 0.210186,-3.417443;;; + } + } + Animation { + {Sheep_Rig_Leg_F_L} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.698862,-0.714025, 0.000265,-0.000265;;, + 25;4;-0.674867,-0.734157, 0.001035,-0.001035;;, + 26;4;-0.640376,-0.763095, 0.002143,-0.002143;;, + 27;4;-0.605887,-0.792032, 0.003250,-0.003250;;, + 28;4;-0.581895,-0.812161, 0.004021,-0.004021;;, + 29;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 30;4;-0.579102,-0.814953, 0.004021,-0.004021;;, + 31;4;-0.595884,-0.802034, 0.003250,-0.003250;;, + 32;4;-0.622411,-0.781060, 0.002143,-0.002143;;, + 33;4;-0.653600,-0.755424, 0.001035,-0.001035;;, + 34;4;-0.683196,-0.729690, 0.000265,-0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.729691,-0.683196, 0.000265,-0.000265;;, + 37;4;-0.755424,-0.653600, 0.001035,-0.001035;;, + 38;4;-0.781060,-0.622411, 0.002143,-0.002143;;, + 39;4;-0.802034,-0.595884, 0.003250,-0.003250;;, + 40;4;-0.814953,-0.579102, 0.004021,-0.004021;;, + 41;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 42;4;-0.815192,-0.578282, 0.004137,-0.004137;;, + 43;4;-0.803594,-0.592106, 0.003693,-0.003693;;, + 44;4;-0.785335,-0.613868, 0.002994,-0.002994;;, + 45;4;-0.763094,-0.640377, 0.002143,-0.002143;;, + 46;4;-0.740851,-0.666888, 0.001291,-0.001291;;, + 47;4;-0.722592,-0.688651, 0.000593,-0.000593;;, + 48;4;-0.710993,-0.702475, 0.000149,-0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.688949,-0.722342, 0.000583,-0.000583;;, + 120;4;-0.629961,-0.771833, 0.002477,-0.002477;;, + 121;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 122;4;-0.585722,-0.809891, 0.003710,-0.003710;;, + 123;4;-0.630599,-0.774443, 0.001829,-0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.769558,-0.641875, 0.000555,-0.000555;;, + 126;4;-0.807290,-0.596207, 0.002137,-0.002137;;, + 127;4;-0.818482,-0.577050, 0.003726,-0.003726;;, + 128;4;-0.819077,-0.573651, 0.004285,-0.004285;;, + 129;4;-0.796547,-0.600505, 0.003423,-0.003423;;, + 130;4;-0.755594,-0.649317, 0.001855,-0.001855;;, + 131;4;-0.720967,-0.690588, 0.000530,-0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.673113,-0.736384, 0.001105,-0.001104;;, + 156;4;-0.605738,-0.793670, 0.003281,-0.003281;;, + 157;4;-0.573651,-0.819077, 0.004285,-0.004285;;, + 158;4;-0.584336,-0.805462, 0.004091,-0.004091;;, + 159;4;-0.619086,-0.768348, 0.003516,-0.003516;;, + 160;4;-0.672979,-0.712760, 0.002640,-0.002640;;, + 161;4;-0.734582,-0.650136, 0.001646,-0.001646;;, + 162;4;-0.789150,-0.595088, 0.000770,-0.000770;;, + 163;4;-0.825083,-0.559002, 0.000195,-0.000194;;, + 164;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 165;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 166;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 167;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 168;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 169;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 170;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 171;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 172;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 173;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 174;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 175;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 176;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 177;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 178;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 179;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 180;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 181;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 182;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 183;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 184;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 185;4;-0.837257,-0.546810, 0.000000,-0.000000;;, + 186;4;-0.837257,-0.546810, 0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3;-1.760948,10.856443,-3.333342;;, + 1;3;-1.760948,10.856443,-3.333342;;, + 2;3;-1.760948,10.856443,-3.333342;;, + 3;3;-1.760948,10.856443,-3.333342;;, + 4;3;-1.760948,10.856443,-3.333342;;, + 5;3;-1.760948,10.856443,-3.333342;;, + 6;3;-1.760948,10.856443,-3.333342;;, + 7;3;-1.760948,10.856443,-3.333342;;, + 8;3;-1.760948,10.856443,-3.333342;;, + 9;3;-1.760948,10.856443,-3.333342;;, + 10;3;-1.760948,10.856443,-3.333342;;, + 11;3;-1.760948,10.856443,-3.333342;;, + 12;3;-1.760948,10.856443,-3.333342;;, + 13;3;-1.760948,10.856443,-3.333342;;, + 14;3;-1.760948,10.856443,-3.333342;;, + 15;3;-1.760948,10.856443,-3.333342;;, + 16;3;-1.760948,10.856443,-3.333342;;, + 17;3;-1.760948,10.856443,-3.333342;;, + 18;3;-1.760948,10.856443,-3.333342;;, + 19;3;-1.760948,10.856443,-3.333342;;, + 20;3;-1.760948,10.856443,-3.333342;;, + 21;3;-1.760948,10.856443,-3.333342;;, + 22;3;-1.760948,10.856443,-3.333342;;, + 23;3;-1.760948,10.856443,-3.333342;;, + 24;3;-1.760948,10.856444,-3.333341;;, + 25;3;-1.760948,10.856443,-3.333341;;, + 26;3;-1.760948,10.856443,-3.333342;;, + 27;3;-1.760948,10.856444,-3.333342;;, + 28;3;-1.760948,10.856443,-3.333341;;, + 29;3;-1.760948,10.856443,-3.333341;;, + 30;3;-1.760948,10.856444,-3.333342;;, + 31;3;-1.760948,10.856443,-3.333342;;, + 32;3;-1.760948,10.856444,-3.333342;;, + 33;3;-1.760948,10.856443,-3.333342;;, + 34;3;-1.760948,10.856443,-3.333341;;, + 35;3;-1.760948,10.856443,-3.333342;;, + 36;3;-1.760948,10.856443,-3.333341;;, + 37;3;-1.760948,10.856443,-3.333342;;, + 38;3;-1.760948,10.856443,-3.333342;;, + 39;3;-1.760948,10.856442,-3.333342;;, + 40;3;-1.760948,10.856443,-3.333341;;, + 41;3;-1.760948,10.856443,-3.333341;;, + 42;3;-1.760948,10.856443,-3.333342;;, + 43;3;-1.760948,10.856443,-3.333341;;, + 44;3;-1.760948,10.856443,-3.333342;;, + 45;3;-1.760948,10.856443,-3.333342;;, + 46;3;-1.760948,10.856443,-3.333341;;, + 47;3;-1.760948,10.856443,-3.333341;;, + 48;3;-1.760948,10.856443,-3.333341;;, + 49;3;-1.760948,10.856443,-3.333342;;, + 50;3;-1.760948,10.856443,-3.333342;;, + 51;3;-1.760948,10.856443,-3.333342;;, + 52;3;-1.760948,10.856443,-3.333342;;, + 53;3;-1.760948,10.856443,-3.333342;;, + 54;3;-1.760948,10.856443,-3.333342;;, + 55;3;-1.760948,10.856443,-3.333342;;, + 56;3;-1.760948,10.856443,-3.333342;;, + 57;3;-1.760948,10.856443,-3.333342;;, + 58;3;-1.760948,10.856443,-3.333342;;, + 59;3;-1.760948,10.856443,-3.333342;;, + 60;3;-1.760948,10.856443,-3.333342;;, + 61;3;-1.760948,10.856443,-3.333342;;, + 62;3;-1.760948,10.856443,-3.333342;;, + 63;3;-1.760948,10.856443,-3.333342;;, + 64;3;-1.760948,10.856443,-3.333342;;, + 65;3;-1.760948,10.856443,-3.333342;;, + 66;3;-1.760948,10.856443,-3.333342;;, + 67;3;-1.760948,10.856443,-3.333342;;, + 68;3;-1.760948,10.856443,-3.333342;;, + 69;3;-1.760948,10.856443,-3.333342;;, + 70;3;-1.760948,10.856443,-3.333342;;, + 71;3;-1.760948,10.856443,-3.333342;;, + 72;3;-1.760948,10.856443,-3.333342;;, + 73;3;-1.760948,10.856443,-3.333342;;, + 74;3;-1.760948,10.856443,-3.333342;;, + 75;3;-1.760948,10.856443,-3.333342;;, + 76;3;-1.760948,10.856443,-3.333342;;, + 77;3;-1.760948,10.856443,-3.333342;;, + 78;3;-1.760948,10.856443,-3.333342;;, + 79;3;-1.760948,10.856443,-3.333342;;, + 80;3;-1.760948,10.856443,-3.333342;;, + 81;3;-1.760948,10.856443,-3.333342;;, + 82;3;-1.760948,10.856443,-3.333342;;, + 83;3;-1.760948,10.856443,-3.333342;;, + 84;3;-1.760948,10.856443,-3.333342;;, + 85;3;-1.760948,10.856443,-3.333342;;, + 86;3;-1.760948,10.856443,-3.333342;;, + 87;3;-1.760948,10.856443,-3.333342;;, + 88;3;-1.760948,10.856443,-3.333342;;, + 89;3;-1.760948,10.856443,-3.333342;;, + 90;3;-1.760948,10.856443,-3.333342;;, + 91;3;-1.760948,10.856443,-3.333342;;, + 92;3;-1.760948,10.856443,-3.333342;;, + 93;3;-1.760948,10.856443,-3.333342;;, + 94;3;-1.760948,10.856443,-3.333342;;, + 95;3;-1.760948,10.856443,-3.333342;;, + 96;3;-1.760948,10.856443,-3.333342;;, + 97;3;-1.760948,10.856443,-3.333342;;, + 98;3;-1.760948,10.856443,-3.333342;;, + 99;3;-1.760948,10.856443,-3.333342;;, + 100;3;-1.760948,10.856443,-3.333342;;, + 101;3;-1.760948,10.856443,-3.333342;;, + 102;3;-1.760948,10.856443,-3.333342;;, + 103;3;-1.760948,10.856443,-3.333342;;, + 104;3;-1.760948,10.856443,-3.333342;;, + 105;3;-1.760948,10.856443,-3.333342;;, + 106;3;-1.760948,10.856443,-3.333342;;, + 107;3;-1.760948,10.856443,-3.333342;;, + 108;3;-1.760948,10.856443,-3.333342;;, + 109;3;-1.760948,10.856443,-3.333342;;, + 110;3;-1.760948,10.856443,-3.333342;;, + 111;3;-1.760948,10.856443,-3.333342;;, + 112;3;-1.760948,10.856443,-3.333342;;, + 113;3;-1.760948,10.856443,-3.333342;;, + 114;3;-1.760948,10.856443,-3.333342;;, + 115;3;-1.760948,10.856443,-3.333342;;, + 116;3;-1.760948,10.856443,-3.333342;;, + 117;3;-1.760948,10.856443,-3.333342;;, + 118;3;-1.760948,10.856443,-3.333342;;, + 119;3;-1.760948,10.856443,-3.333342;;, + 120;3;-1.760948,10.856443,-3.333342;;, + 121;3;-1.760948,10.856443,-3.333342;;, + 122;3;-1.760948,10.856443,-3.333342;;, + 123;3;-1.760948,10.856443,-3.333342;;, + 124;3;-1.760948,10.856443,-3.333342;;, + 125;3;-1.760948,10.856443,-3.333342;;, + 126;3;-1.760948,10.856443,-3.333342;;, + 127;3;-1.760948,10.856443,-3.333342;;, + 128;3;-1.760948,10.856443,-3.333342;;, + 129;3;-1.760948,10.856443,-3.333342;;, + 130;3;-1.760948,10.856443,-3.333342;;, + 131;3;-1.760948,10.856443,-3.333342;;, + 132;3;-1.760948,10.856443,-3.333342;;, + 133;3;-1.760948,10.856443,-3.333342;;, + 134;3;-1.760948,10.856443,-3.333342;;, + 135;3;-1.760948,10.856443,-3.333342;;, + 136;3;-1.760948,10.856443,-3.333342;;, + 137;3;-1.760948,10.856443,-3.333342;;, + 138;3;-1.760948,10.856443,-3.333342;;, + 139;3;-1.760948,10.856443,-3.333342;;, + 140;3;-1.760948,10.856443,-3.333342;;, + 141;3;-1.760948,10.856443,-3.333342;;, + 142;3;-1.760948,10.856443,-3.333342;;, + 143;3;-1.760948,10.856443,-3.333342;;, + 144;3;-1.760948,10.856443,-3.333342;;, + 145;3;-1.760948,10.856443,-3.333342;;, + 146;3;-1.760948,10.856443,-3.333342;;, + 147;3;-1.760948,10.856443,-3.333342;;, + 148;3;-1.760948,10.856443,-3.333342;;, + 149;3;-1.760948,10.856443,-3.333342;;, + 150;3;-1.760948,10.856443,-3.333342;;, + 151;3;-1.760948,10.856443,-3.333342;;, + 152;3;-1.760948,10.856443,-3.333342;;, + 153;3;-1.760948,10.856443,-3.333342;;, + 154;3;-1.760948,10.856443,-3.333342;;, + 155;3;-1.760948,10.856443,-3.333342;;, + 156;3;-1.760948,10.856443,-3.333342;;, + 157;3;-1.760948,10.856443,-3.333342;;, + 158;3;-1.760948,10.856443,-3.333341;;, + 159;3;-1.760948,10.856444,-3.333342;;, + 160;3;-1.760948,10.856443,-3.333341;;, + 161;3;-1.760948,10.856443,-3.333342;;, + 162;3;-1.760948,10.856443,-3.333341;;, + 163;3;-1.760948,10.856443,-3.333342;;, + 164;3;-1.760948,10.856443,-3.333342;;, + 165;3;-1.760948,10.856443,-3.333342;;, + 166;3;-1.760948,10.856443,-3.333342;;, + 167;3;-1.760948,10.856443,-3.333342;;, + 168;3;-1.760948,10.856443,-3.333342;;, + 169;3;-1.760948,10.856443,-3.333342;;, + 170;3;-1.760948,10.856443,-3.333342;;, + 171;3;-1.760948,10.856443,-3.333342;;, + 172;3;-1.760948,10.856443,-3.333342;;, + 173;3;-1.760948,10.856443,-3.333342;;, + 174;3;-1.760948,10.856443,-3.333342;;, + 175;3;-1.760948,10.856443,-3.333342;;, + 176;3;-1.760948,10.856443,-3.333342;;, + 177;3;-1.760948,10.856443,-3.333342;;, + 178;3;-1.760948,10.856443,-3.333342;;, + 179;3;-1.760948,10.856443,-3.333342;;, + 180;3;-1.760948,10.856443,-3.333342;;, + 181;3;-1.760948,10.856443,-3.333342;;, + 182;3;-1.760948,10.856443,-3.333342;;, + 183;3;-1.760948,10.856443,-3.333342;;, + 184;3;-1.760948,10.856443,-3.333342;;, + 185;3;-1.760948,10.856443,-3.333342;;, + 186;3;-1.760948,10.856443,-3.333342;;; + } + } + Animation { + {Sheep_Rig_Leg_B_R} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000593, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736713,-0.673453,-0.000673, 0.000673;;, + 156;4;-0.794332,-0.606419,-0.002416, 0.002416;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.815242,-0.571498, 0.000931, 0.013380;;, + 159;4;-0.809622,-0.570851, 0.019673, 0.036966;;, + 160;4;-0.802791,-0.571596, 0.049229, 0.071895;;, + 161;4;-0.795862,-0.573259, 0.083228, 0.111042;;, + 162;4;-0.790135,-0.575105, 0.113432, 0.145342;;, + 163;4;-0.786524,-0.576465, 0.133350, 0.167777;;, + 164;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 165;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 166;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 167;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 168;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 169;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 170;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 171;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 172;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 173;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 174;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 175;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 176;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 177;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 178;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 179;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 180;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 181;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 182;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 183;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 184;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 185;4;-0.785333,-0.576955, 0.140102, 0.175346;;, + 186;4;-0.785333,-0.576955, 0.140102, 0.175346;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 1.728931, 0.210186,-3.417443;;, + 1;3; 1.728931, 0.210186,-3.417443;;, + 2;3; 1.728931, 0.210186,-3.417443;;, + 3;3; 1.728931, 0.210186,-3.417443;;, + 4;3; 1.728931, 0.210186,-3.417443;;, + 5;3; 1.728931, 0.210186,-3.417443;;, + 6;3; 1.728931, 0.210186,-3.417443;;, + 7;3; 1.728931, 0.210186,-3.417443;;, + 8;3; 1.728931, 0.210186,-3.417443;;, + 9;3; 1.728931, 0.210186,-3.417443;;, + 10;3; 1.728931, 0.210186,-3.417443;;, + 11;3; 1.728931, 0.210186,-3.417443;;, + 12;3; 1.728931, 0.210186,-3.417443;;, + 13;3; 1.728931, 0.210186,-3.417443;;, + 14;3; 1.728931, 0.210186,-3.417443;;, + 15;3; 1.728931, 0.210186,-3.417443;;, + 16;3; 1.728931, 0.210186,-3.417443;;, + 17;3; 1.728931, 0.210186,-3.417443;;, + 18;3; 1.728931, 0.210186,-3.417443;;, + 19;3; 1.728931, 0.210186,-3.417443;;, + 20;3; 1.728931, 0.210186,-3.417443;;, + 21;3; 1.728931, 0.210186,-3.417443;;, + 22;3; 1.728931, 0.210186,-3.417443;;, + 23;3; 1.728931, 0.210186,-3.417443;;, + 24;3; 1.728931, 0.210186,-3.417443;;, + 25;3; 1.728931, 0.210186,-3.417443;;, + 26;3; 1.728931, 0.210186,-3.417443;;, + 27;3; 1.728931, 0.210186,-3.417443;;, + 28;3; 1.728931, 0.210186,-3.417442;;, + 29;3; 1.728931, 0.210186,-3.417443;;, + 30;3; 1.728931, 0.210186,-3.417443;;, + 31;3; 1.728931, 0.210186,-3.417443;;, + 32;3; 1.728931, 0.210186,-3.417442;;, + 33;3; 1.728931, 0.210186,-3.417443;;, + 34;3; 1.728931, 0.210186,-3.417443;;, + 35;3; 1.728931, 0.210186,-3.417443;;, + 36;3; 1.728931, 0.210186,-3.417443;;, + 37;3; 1.728931, 0.210186,-3.417442;;, + 38;3; 1.728931, 0.210186,-3.417443;;, + 39;3; 1.728931, 0.210186,-3.417443;;, + 40;3; 1.728931, 0.210186,-3.417444;;, + 41;3; 1.728931, 0.210186,-3.417443;;, + 42;3; 1.728931, 0.210186,-3.417443;;, + 43;3; 1.728931, 0.210186,-3.417443;;, + 44;3; 1.728931, 0.210186,-3.417443;;, + 45;3; 1.728931, 0.210186,-3.417443;;, + 46;3; 1.728931, 0.210186,-3.417443;;, + 47;3; 1.728931, 0.210186,-3.417443;;, + 48;3; 1.728931, 0.210186,-3.417443;;, + 49;3; 1.728931, 0.210186,-3.417443;;, + 50;3; 1.728931, 0.210186,-3.417443;;, + 51;3; 1.728931, 0.210186,-3.417443;;, + 52;3; 1.728931, 0.210186,-3.417443;;, + 53;3; 1.728931, 0.210186,-3.417443;;, + 54;3; 1.728931, 0.210186,-3.417443;;, + 55;3; 1.728931, 0.210186,-3.417443;;, + 56;3; 1.728931, 0.210186,-3.417443;;, + 57;3; 1.728931, 0.210186,-3.417443;;, + 58;3; 1.728931, 0.210186,-3.417443;;, + 59;3; 1.728931, 0.210186,-3.417443;;, + 60;3; 1.728931, 0.210186,-3.417443;;, + 61;3; 1.728931, 0.210186,-3.417443;;, + 62;3; 1.728931, 0.210186,-3.417443;;, + 63;3; 1.728931, 0.210186,-3.417443;;, + 64;3; 1.728931, 0.210186,-3.417443;;, + 65;3; 1.728931, 0.210186,-3.417443;;, + 66;3; 1.728931, 0.210186,-3.417443;;, + 67;3; 1.728931, 0.210186,-3.417443;;, + 68;3; 1.728931, 0.210186,-3.417443;;, + 69;3; 1.728931, 0.210186,-3.417443;;, + 70;3; 1.728931, 0.210186,-3.417443;;, + 71;3; 1.728931, 0.210186,-3.417443;;, + 72;3; 1.728931, 0.210186,-3.417443;;, + 73;3; 1.728931, 0.210186,-3.417443;;, + 74;3; 1.728931, 0.210186,-3.417443;;, + 75;3; 1.728931, 0.210186,-3.417443;;, + 76;3; 1.728931, 0.210186,-3.417443;;, + 77;3; 1.728931, 0.210186,-3.417443;;, + 78;3; 1.728931, 0.210186,-3.417443;;, + 79;3; 1.728931, 0.210186,-3.417443;;, + 80;3; 1.728931, 0.210186,-3.417443;;, + 81;3; 1.728931, 0.210186,-3.417443;;, + 82;3; 1.728931, 0.210186,-3.417443;;, + 83;3; 1.728931, 0.210186,-3.417443;;, + 84;3; 1.728931, 0.210186,-3.417443;;, + 85;3; 1.728931, 0.210186,-3.417443;;, + 86;3; 1.728931, 0.210186,-3.417443;;, + 87;3; 1.728931, 0.210186,-3.417443;;, + 88;3; 1.728931, 0.210186,-3.417443;;, + 89;3; 1.728931, 0.210186,-3.417443;;, + 90;3; 1.728931, 0.210186,-3.417443;;, + 91;3; 1.728931, 0.210186,-3.417443;;, + 92;3; 1.728931, 0.210186,-3.417443;;, + 93;3; 1.728931, 0.210186,-3.417443;;, + 94;3; 1.728931, 0.210186,-3.417443;;, + 95;3; 1.728931, 0.210186,-3.417443;;, + 96;3; 1.728931, 0.210186,-3.417443;;, + 97;3; 1.728931, 0.210186,-3.417443;;, + 98;3; 1.728931, 0.210186,-3.417443;;, + 99;3; 1.728931, 0.210186,-3.417443;;, + 100;3; 1.728931, 0.210186,-3.417443;;, + 101;3; 1.728931, 0.210186,-3.417443;;, + 102;3; 1.728931, 0.210186,-3.417443;;, + 103;3; 1.728931, 0.210186,-3.417443;;, + 104;3; 1.728931, 0.210186,-3.417443;;, + 105;3; 1.728931, 0.210186,-3.417443;;, + 106;3; 1.728931, 0.210186,-3.417443;;, + 107;3; 1.728931, 0.210186,-3.417443;;, + 108;3; 1.728931, 0.210186,-3.417443;;, + 109;3; 1.728931, 0.210186,-3.417443;;, + 110;3; 1.728931, 0.210186,-3.417443;;, + 111;3; 1.728931, 0.210186,-3.417443;;, + 112;3; 1.728931, 0.210186,-3.417443;;, + 113;3; 1.728931, 0.210186,-3.417443;;, + 114;3; 1.728931, 0.210186,-3.417443;;, + 115;3; 1.728931, 0.210186,-3.417443;;, + 116;3; 1.728931, 0.210186,-3.417443;;, + 117;3; 1.728931, 0.210186,-3.417443;;, + 118;3; 1.728931, 0.210186,-3.417443;;, + 119;3; 1.728931, 0.210186,-3.417442;;, + 120;3; 1.728931, 0.210186,-3.417442;;, + 121;3; 1.728931, 0.210186,-3.417442;;, + 122;3; 1.728931, 0.210186,-3.417443;;, + 123;3; 1.728931, 0.210186,-3.417442;;, + 124;3; 1.728931, 0.210186,-3.417442;;, + 125;3; 1.728931, 0.210186,-3.417442;;, + 126;3; 1.728931, 0.210186,-3.417442;;, + 127;3; 1.728931, 0.210186,-3.417443;;, + 128;3; 1.728931, 0.210186,-3.417442;;, + 129;3; 1.728931, 0.210186,-3.417443;;, + 130;3; 1.728931, 0.210186,-3.417442;;, + 131;3; 1.728931, 0.210186,-3.417442;;, + 132;3; 1.728931, 0.210186,-3.417443;;, + 133;3; 1.728931, 0.210186,-3.417443;;, + 134;3; 1.728931, 0.210186,-3.417443;;, + 135;3; 1.728931, 0.210186,-3.417443;;, + 136;3; 1.728931, 0.210186,-3.417443;;, + 137;3; 1.728931, 0.210186,-3.417443;;, + 138;3; 1.728931, 0.210186,-3.417443;;, + 139;3; 1.728931, 0.210186,-3.417443;;, + 140;3; 1.728931, 0.210186,-3.417443;;, + 141;3; 1.728931, 0.210186,-3.417443;;, + 142;3; 1.728931, 0.210186,-3.417443;;, + 143;3; 1.728931, 0.210186,-3.417443;;, + 144;3; 1.728931, 0.210186,-3.417443;;, + 145;3; 1.728931, 0.210186,-3.417443;;, + 146;3; 1.728931, 0.210186,-3.417443;;, + 147;3; 1.728931, 0.210186,-3.417443;;, + 148;3; 1.728931, 0.210186,-3.417443;;, + 149;3; 1.728931, 0.210186,-3.417443;;, + 150;3; 1.728931, 0.210186,-3.417443;;, + 151;3; 1.728931, 0.210186,-3.417443;;, + 152;3; 1.728931, 0.210186,-3.417443;;, + 153;3; 1.728931, 0.210186,-3.417443;;, + 154;3; 1.728931, 0.210186,-3.417443;;, + 155;3; 1.728931, 0.210186,-3.417442;;, + 156;3; 1.728931, 0.210186,-3.417443;;, + 157;3; 1.728931, 0.210186,-3.417442;;, + 158;3; 1.728931, 0.210186,-3.417443;;, + 159;3; 1.728931, 0.210187,-3.417443;;, + 160;3; 1.728930, 0.210186,-3.417443;;, + 161;3; 1.728931, 0.210186,-3.417442;;, + 162;3; 1.728930, 0.210186,-3.417443;;, + 163;3; 1.728931, 0.210186,-3.417443;;, + 164;3; 1.728931, 0.210186,-3.417443;;, + 165;3; 1.728931, 0.210186,-3.417443;;, + 166;3; 1.728931, 0.210186,-3.417443;;, + 167;3; 1.728931, 0.210186,-3.417443;;, + 168;3; 1.728931, 0.210186,-3.417443;;, + 169;3; 1.728931, 0.210186,-3.417443;;, + 170;3; 1.728931, 0.210186,-3.417443;;, + 171;3; 1.728931, 0.210186,-3.417443;;, + 172;3; 1.728931, 0.210186,-3.417443;;, + 173;3; 1.728931, 0.210186,-3.417443;;, + 174;3; 1.728931, 0.210186,-3.417443;;, + 175;3; 1.728931, 0.210186,-3.417443;;, + 176;3; 1.728931, 0.210186,-3.417443;;, + 177;3; 1.728931, 0.210186,-3.417443;;, + 178;3; 1.728931, 0.210186,-3.417443;;, + 179;3; 1.728931, 0.210186,-3.417443;;, + 180;3; 1.728931, 0.210186,-3.417443;;, + 181;3; 1.728931, 0.210186,-3.417443;;, + 182;3; 1.728931, 0.210186,-3.417443;;, + 183;3; 1.728931, 0.210186,-3.417443;;, + 184;3; 1.728931, 0.210186,-3.417443;;, + 185;3; 1.728931, 0.210186,-3.417443;;, + 186;3; 1.728931, 0.210186,-3.417443;;; + } + } + Animation { + {Sheep_Rig_Leg_F_R} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 1;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 2;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 3;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 4;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 5;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 6;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 7;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 8;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 9;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 10;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 11;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 12;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 13;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 14;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 15;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 16;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 17;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 18;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 19;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 20;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 21;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 22;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 23;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 24;4;-0.714025,-0.698862,-0.000265, 0.000265;;, + 25;4;-0.734157,-0.674867,-0.001035, 0.001035;;, + 26;4;-0.763095,-0.640376,-0.002143, 0.002143;;, + 27;4;-0.792032,-0.605886,-0.003250, 0.003250;;, + 28;4;-0.812161,-0.581895,-0.004020, 0.004020;;, + 29;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 30;4;-0.814953,-0.579102,-0.004020, 0.004020;;, + 31;4;-0.802034,-0.595884,-0.003250, 0.003250;;, + 32;4;-0.781060,-0.622411,-0.002143, 0.002143;;, + 33;4;-0.755424,-0.653600,-0.001035, 0.001035;;, + 34;4;-0.729691,-0.683196,-0.000265, 0.000265;;, + 35;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 36;4;-0.683196,-0.729690,-0.000265, 0.000265;;, + 37;4;-0.653600,-0.755424,-0.001035, 0.001035;;, + 38;4;-0.622411,-0.781060,-0.002143, 0.002143;;, + 39;4;-0.595884,-0.802034,-0.003250, 0.003250;;, + 40;4;-0.579103,-0.814953,-0.004020, 0.004020;;, + 41;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 42;4;-0.578283,-0.815192,-0.004136, 0.004136;;, + 43;4;-0.592106,-0.803594,-0.003693, 0.003693;;, + 44;4;-0.613868,-0.785335,-0.002994, 0.002994;;, + 45;4;-0.640378,-0.763093,-0.002143, 0.002143;;, + 46;4;-0.666888,-0.740851,-0.001291, 0.001291;;, + 47;4;-0.688651,-0.722592,-0.000592, 0.000592;;, + 48;4;-0.702475,-0.710993,-0.000149, 0.000149;;, + 49;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 50;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 51;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 52;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 53;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 54;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 55;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 56;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 57;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 58;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 59;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 60;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 61;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 62;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 63;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 64;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 65;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 66;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 67;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 68;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 69;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 70;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 71;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 72;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 73;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 74;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 75;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 76;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 77;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 78;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 79;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 80;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 81;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 82;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 83;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 84;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 85;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 86;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 87;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 88;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 89;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 90;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 91;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 92;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 93;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 94;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 95;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 96;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 97;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 98;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 99;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 100;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 101;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 102;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 103;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 104;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 105;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 106;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 107;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 108;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 109;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 110;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 111;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 112;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 113;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 114;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 115;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 116;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 117;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 118;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 119;4;-0.722342,-0.688949,-0.000583, 0.000583;;, + 120;4;-0.771833,-0.629961,-0.002477, 0.002477;;, + 121;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 122;4;-0.809891,-0.585722,-0.003710, 0.003710;;, + 123;4;-0.774443,-0.630599,-0.001829, 0.001829;;, + 124;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 125;4;-0.641875,-0.769558,-0.000554, 0.000554;;, + 126;4;-0.596208,-0.807290,-0.002137, 0.002137;;, + 127;4;-0.577050,-0.818482,-0.003726, 0.003726;;, + 128;4;-0.573651,-0.819077,-0.004285, 0.004285;;, + 129;4;-0.600505,-0.796547,-0.003423, 0.003423;;, + 130;4;-0.649318,-0.755594,-0.001855, 0.001855;;, + 131;4;-0.690588,-0.720967,-0.000530, 0.000530;;, + 132;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 133;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 134;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 135;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 136;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 137;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 138;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 139;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 140;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 141;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 142;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 143;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 144;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 145;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 146;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 147;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 148;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 149;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 150;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 151;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 152;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 153;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 154;4;-0.707107,-0.707107, 0.000000,-0.000000;;, + 155;4;-0.736581,-0.673310,-0.001104, 0.001104;;, + 156;4;-0.794066,-0.606133,-0.003281, 0.003281;;, + 157;4;-0.819077,-0.573651,-0.004285, 0.004285;;, + 158;4;-0.806073,-0.582193, 0.001740, 0.008346;;, + 159;4;-0.772277,-0.612122, 0.019564, 0.020360;;, + 160;4;-0.722202,-0.659130, 0.046720, 0.038662;;, + 161;4;-0.666055,-0.713132, 0.077523, 0.059422;;, + 162;4;-0.616832,-0.761085, 0.104682, 0.077728;;, + 163;4;-0.584619,-0.792705, 0.122511, 0.089746;;, + 164;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 165;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 166;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 167;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 168;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 169;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 170;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 171;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 172;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 173;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 174;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 175;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 176;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 177;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 178;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 179;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 180;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 181;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 182;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 183;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 184;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 185;4;-0.573748,-0.803425, 0.128538, 0.093809;;, + 186;4;-0.573748,-0.803425, 0.128538, 0.093809;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 1.728931,10.856443,-3.333342;;, + 1;3; 1.728931,10.856443,-3.333342;;, + 2;3; 1.728931,10.856443,-3.333342;;, + 3;3; 1.728931,10.856443,-3.333342;;, + 4;3; 1.728931,10.856443,-3.333342;;, + 5;3; 1.728931,10.856443,-3.333342;;, + 6;3; 1.728931,10.856443,-3.333342;;, + 7;3; 1.728931,10.856443,-3.333342;;, + 8;3; 1.728931,10.856443,-3.333342;;, + 9;3; 1.728931,10.856443,-3.333342;;, + 10;3; 1.728931,10.856443,-3.333342;;, + 11;3; 1.728931,10.856443,-3.333342;;, + 12;3; 1.728931,10.856443,-3.333342;;, + 13;3; 1.728931,10.856443,-3.333342;;, + 14;3; 1.728931,10.856443,-3.333342;;, + 15;3; 1.728931,10.856443,-3.333342;;, + 16;3; 1.728931,10.856443,-3.333342;;, + 17;3; 1.728931,10.856443,-3.333342;;, + 18;3; 1.728931,10.856443,-3.333342;;, + 19;3; 1.728931,10.856443,-3.333342;;, + 20;3; 1.728931,10.856443,-3.333342;;, + 21;3; 1.728931,10.856443,-3.333342;;, + 22;3; 1.728931,10.856443,-3.333342;;, + 23;3; 1.728931,10.856443,-3.333342;;, + 24;3; 1.728931,10.856443,-3.333342;;, + 25;3; 1.728931,10.856443,-3.333342;;, + 26;3; 1.728931,10.856443,-3.333342;;, + 27;3; 1.728931,10.856443,-3.333341;;, + 28;3; 1.728931,10.856443,-3.333341;;, + 29;3; 1.728931,10.856443,-3.333341;;, + 30;3; 1.728931,10.856443,-3.333342;;, + 31;3; 1.728931,10.856442,-3.333342;;, + 32;3; 1.728931,10.856443,-3.333341;;, + 33;3; 1.728931,10.856443,-3.333342;;, + 34;3; 1.728931,10.856443,-3.333341;;, + 35;3; 1.728931,10.856443,-3.333342;;, + 36;3; 1.728931,10.856443,-3.333341;;, + 37;3; 1.728931,10.856443,-3.333342;;, + 38;3; 1.728931,10.856444,-3.333341;;, + 39;3; 1.728931,10.856443,-3.333341;;, + 40;3; 1.728931,10.856444,-3.333342;;, + 41;3; 1.728931,10.856443,-3.333341;;, + 42;3; 1.728931,10.856444,-3.333342;;, + 43;3; 1.728931,10.856443,-3.333341;;, + 44;3; 1.728931,10.856443,-3.333341;;, + 45;3; 1.728931,10.856443,-3.333342;;, + 46;3; 1.728931,10.856443,-3.333341;;, + 47;3; 1.728931,10.856444,-3.333342;;, + 48;3; 1.728931,10.856444,-3.333342;;, + 49;3; 1.728931,10.856443,-3.333342;;, + 50;3; 1.728931,10.856443,-3.333342;;, + 51;3; 1.728931,10.856443,-3.333342;;, + 52;3; 1.728931,10.856443,-3.333342;;, + 53;3; 1.728931,10.856443,-3.333342;;, + 54;3; 1.728931,10.856443,-3.333342;;, + 55;3; 1.728931,10.856443,-3.333342;;, + 56;3; 1.728931,10.856443,-3.333342;;, + 57;3; 1.728931,10.856443,-3.333342;;, + 58;3; 1.728931,10.856443,-3.333342;;, + 59;3; 1.728931,10.856443,-3.333342;;, + 60;3; 1.728931,10.856443,-3.333342;;, + 61;3; 1.728931,10.856443,-3.333342;;, + 62;3; 1.728931,10.856443,-3.333342;;, + 63;3; 1.728931,10.856443,-3.333342;;, + 64;3; 1.728931,10.856443,-3.333342;;, + 65;3; 1.728931,10.856443,-3.333342;;, + 66;3; 1.728931,10.856443,-3.333342;;, + 67;3; 1.728931,10.856443,-3.333342;;, + 68;3; 1.728931,10.856443,-3.333342;;, + 69;3; 1.728931,10.856443,-3.333342;;, + 70;3; 1.728931,10.856443,-3.333342;;, + 71;3; 1.728931,10.856443,-3.333342;;, + 72;3; 1.728931,10.856443,-3.333342;;, + 73;3; 1.728931,10.856443,-3.333342;;, + 74;3; 1.728931,10.856443,-3.333342;;, + 75;3; 1.728931,10.856443,-3.333342;;, + 76;3; 1.728931,10.856443,-3.333342;;, + 77;3; 1.728931,10.856443,-3.333342;;, + 78;3; 1.728931,10.856443,-3.333342;;, + 79;3; 1.728931,10.856443,-3.333342;;, + 80;3; 1.728931,10.856443,-3.333342;;, + 81;3; 1.728931,10.856443,-3.333342;;, + 82;3; 1.728931,10.856443,-3.333342;;, + 83;3; 1.728931,10.856443,-3.333342;;, + 84;3; 1.728931,10.856443,-3.333342;;, + 85;3; 1.728931,10.856443,-3.333342;;, + 86;3; 1.728931,10.856443,-3.333342;;, + 87;3; 1.728931,10.856443,-3.333342;;, + 88;3; 1.728931,10.856443,-3.333342;;, + 89;3; 1.728931,10.856443,-3.333342;;, + 90;3; 1.728931,10.856443,-3.333342;;, + 91;3; 1.728931,10.856443,-3.333342;;, + 92;3; 1.728931,10.856443,-3.333342;;, + 93;3; 1.728931,10.856443,-3.333342;;, + 94;3; 1.728931,10.856443,-3.333342;;, + 95;3; 1.728931,10.856443,-3.333342;;, + 96;3; 1.728931,10.856443,-3.333342;;, + 97;3; 1.728931,10.856443,-3.333342;;, + 98;3; 1.728931,10.856443,-3.333342;;, + 99;3; 1.728931,10.856443,-3.333342;;, + 100;3; 1.728931,10.856443,-3.333342;;, + 101;3; 1.728931,10.856443,-3.333342;;, + 102;3; 1.728931,10.856443,-3.333342;;, + 103;3; 1.728931,10.856443,-3.333342;;, + 104;3; 1.728931,10.856443,-3.333342;;, + 105;3; 1.728931,10.856443,-3.333342;;, + 106;3; 1.728931,10.856443,-3.333342;;, + 107;3; 1.728931,10.856443,-3.333342;;, + 108;3; 1.728931,10.856443,-3.333342;;, + 109;3; 1.728931,10.856443,-3.333342;;, + 110;3; 1.728931,10.856443,-3.333342;;, + 111;3; 1.728931,10.856443,-3.333342;;, + 112;3; 1.728931,10.856443,-3.333342;;, + 113;3; 1.728931,10.856443,-3.333342;;, + 114;3; 1.728931,10.856443,-3.333342;;, + 115;3; 1.728931,10.856443,-3.333342;;, + 116;3; 1.728931,10.856443,-3.333342;;, + 117;3; 1.728931,10.856443,-3.333342;;, + 118;3; 1.728931,10.856443,-3.333342;;, + 119;3; 1.728931,10.856443,-3.333342;;, + 120;3; 1.728931,10.856443,-3.333342;;, + 121;3; 1.728931,10.856443,-3.333342;;, + 122;3; 1.728931,10.856443,-3.333342;;, + 123;3; 1.728931,10.856443,-3.333342;;, + 124;3; 1.728931,10.856443,-3.333342;;, + 125;3; 1.728931,10.856443,-3.333342;;, + 126;3; 1.728931,10.856443,-3.333342;;, + 127;3; 1.728931,10.856443,-3.333342;;, + 128;3; 1.728931,10.856443,-3.333342;;, + 129;3; 1.728931,10.856443,-3.333342;;, + 130;3; 1.728931,10.856443,-3.333342;;, + 131;3; 1.728931,10.856443,-3.333342;;, + 132;3; 1.728931,10.856443,-3.333342;;, + 133;3; 1.728931,10.856443,-3.333342;;, + 134;3; 1.728931,10.856443,-3.333342;;, + 135;3; 1.728931,10.856443,-3.333342;;, + 136;3; 1.728931,10.856443,-3.333342;;, + 137;3; 1.728931,10.856443,-3.333342;;, + 138;3; 1.728931,10.856443,-3.333342;;, + 139;3; 1.728931,10.856443,-3.333342;;, + 140;3; 1.728931,10.856443,-3.333342;;, + 141;3; 1.728931,10.856443,-3.333342;;, + 142;3; 1.728931,10.856443,-3.333342;;, + 143;3; 1.728931,10.856443,-3.333342;;, + 144;3; 1.728931,10.856443,-3.333342;;, + 145;3; 1.728931,10.856443,-3.333342;;, + 146;3; 1.728931,10.856443,-3.333342;;, + 147;3; 1.728931,10.856443,-3.333342;;, + 148;3; 1.728931,10.856443,-3.333342;;, + 149;3; 1.728931,10.856443,-3.333342;;, + 150;3; 1.728931,10.856443,-3.333342;;, + 151;3; 1.728931,10.856443,-3.333342;;, + 152;3; 1.728931,10.856443,-3.333342;;, + 153;3; 1.728931,10.856443,-3.333342;;, + 154;3; 1.728931,10.856443,-3.333342;;, + 155;3; 1.728931,10.856443,-3.333342;;, + 156;3; 1.728931,10.856443,-3.333342;;, + 157;3; 1.728931,10.856443,-3.333342;;, + 158;3; 1.728931,10.856443,-3.333341;;, + 159;3; 1.728931,10.856444,-3.333343;;, + 160;3; 1.728930,10.856443,-3.333342;;, + 161;3; 1.728931,10.856443,-3.333341;;, + 162;3; 1.728931,10.856443,-3.333341;;, + 163;3; 1.728931,10.856443,-3.333342;;, + 164;3; 1.728931,10.856443,-3.333342;;, + 165;3; 1.728931,10.856443,-3.333342;;, + 166;3; 1.728931,10.856443,-3.333342;;, + 167;3; 1.728931,10.856443,-3.333342;;, + 168;3; 1.728931,10.856443,-3.333342;;, + 169;3; 1.728931,10.856443,-3.333342;;, + 170;3; 1.728931,10.856443,-3.333342;;, + 171;3; 1.728931,10.856443,-3.333342;;, + 172;3; 1.728931,10.856443,-3.333342;;, + 173;3; 1.728931,10.856443,-3.333342;;, + 174;3; 1.728931,10.856443,-3.333342;;, + 175;3; 1.728931,10.856443,-3.333342;;, + 176;3; 1.728931,10.856443,-3.333342;;, + 177;3; 1.728931,10.856443,-3.333342;;, + 178;3; 1.728931,10.856443,-3.333342;;, + 179;3; 1.728931,10.856443,-3.333342;;, + 180;3; 1.728931,10.856443,-3.333342;;, + 181;3; 1.728931,10.856443,-3.333342;;, + 182;3; 1.728931,10.856443,-3.333342;;, + 183;3; 1.728931,10.856443,-3.333342;;, + 184;3; 1.728931,10.856443,-3.333342;;, + 185;3; 1.728931,10.856443,-3.333342;;, + 186;3; 1.728931,10.856443,-3.333342;;; + } + } + Animation { + {Sheep_Rig_Head} + AnimationKey { // Rotation + 0; + 187; + 0;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 1;4;-0.999945, 0.007153,-0.000003,-0.000000;;, + 2;4;-0.999837, 0.011033,-0.000003,-0.000000;;, + 3;4;-0.999698, 0.016016,-0.000003,-0.000000;;, + 4;4;-0.999590, 0.019896,-0.000003,-0.000000;;, + 5;4;-0.999551, 0.021274,-0.000003,-0.000000;;, + 6;4;-0.999576, 0.020670,-0.000003,-0.000000;;, + 7;4;-0.999648, 0.018794,-0.000003,-0.000000;;, + 8;4;-0.999754, 0.015794,-0.000003,-0.000000;;, + 9;4;-0.999863, 0.012205,-0.000003,-0.000000;;, + 10;4;-0.999945, 0.008711,-0.000003,-0.000000;;, + 11;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 12;4;-0.999979, 0.002839,-0.000003, 0.000000;;, + 13;4;-0.999938,-0.000656,-0.000003, 0.000000;;, + 14;4;-0.999870,-0.004246,-0.000003, 0.000000;;, + 15;4;-0.999799,-0.007247,-0.000003, 0.000000;;, + 16;4;-0.999748,-0.009123,-0.000003, 0.000000;;, + 17;4;-0.999730,-0.009728,-0.000003, 0.000000;;, + 18;4;-0.999746,-0.008770,-0.000003, 0.000000;;, + 19;4;-0.999791,-0.005983,-0.000003, 0.000000;;, + 20;4;-0.999857,-0.001976,-0.000003, 0.000000;;, + 21;4;-0.999922, 0.002030,-0.000003, 0.000000;;, + 22;4;-0.999968, 0.004818,-0.000003,-0.000000;;, + 23;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 24;4;-0.999962, 0.005775,-0.001619, 0.000009;;, + 25;4;-0.999901, 0.005775,-0.006326, 0.000037;;, + 26;4;-0.999812, 0.005774,-0.013091, 0.000076;;, + 27;4;-0.999723, 0.005774,-0.019856, 0.000115;;, + 28;4;-0.999662, 0.005773,-0.024562, 0.000142;;, + 29;4;-0.999641, 0.005773,-0.026179, 0.000151;;, + 30;4;-0.999662, 0.005773,-0.025158, 0.000145;;, + 31;4;-0.999723, 0.005774,-0.021990, 0.000127;;, + 32;4;-0.999812, 0.005774,-0.016923, 0.000098;;, + 33;4;-0.999901, 0.005775,-0.010862, 0.000063;;, + 34;4;-0.999962, 0.005775,-0.004961, 0.000029;;, + 35;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 36;4;-0.999962, 0.005775, 0.004956,-0.000029;;, + 37;4;-0.999901, 0.005775, 0.010857,-0.000063;;, + 38;4;-0.999812, 0.005774, 0.016918,-0.000098;;, + 39;4;-0.999723, 0.005774, 0.021985,-0.000127;;, + 40;4;-0.999662, 0.005773, 0.025153,-0.000145;;, + 41;4;-0.999641, 0.005773, 0.026174,-0.000151;;, + 42;4;-0.999653, 0.005773, 0.025266,-0.000146;;, + 43;4;-0.999688, 0.005773, 0.022554,-0.000131;;, + 44;4;-0.999744, 0.005774, 0.018286,-0.000106;;, + 45;4;-0.999812, 0.005774, 0.013086,-0.000077;;, + 46;4;-0.999880, 0.005775, 0.007886,-0.000047;;, + 47;4;-0.999936, 0.005775, 0.003617,-0.000022;;, + 48;4;-0.999971, 0.005775, 0.000906,-0.000006;;, + 49;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 50;4;-0.995667,-0.011278,-0.000002, 0.000001;;, + 51;4;-0.982775,-0.062162,-0.000002, 0.000001;;, + 52;4;-0.962455,-0.142241,-0.000002, 0.000001;;, + 53;4;-0.937658,-0.239769,-0.000002, 0.000002;;, + 54;4;-0.912788,-0.337296,-0.000002, 0.000001;;, + 55;4;-0.892259,-0.417377,-0.000002, 0.000001;;, + 56;4;-0.879049,-0.468263,-0.000002, 0.000001;;, + 57;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 58;4;-0.873959,-0.485279, 0.001880,-0.003389;;, + 59;4;-0.873694,-0.485164, 0.007180,-0.012938;;, + 60;4;-0.873556,-0.485014, 0.013985,-0.025198;;, + 61;4;-0.873511,-0.484898, 0.019285,-0.034747;;, + 62;4;-0.873505,-0.484856, 0.021167,-0.038137;;, + 63;4;-0.873505,-0.484856, 0.017404,-0.031357;;, + 64;4;-0.873505,-0.484856, 0.006803,-0.012261;;, + 65;4;-0.873505,-0.484857,-0.006808, 0.012258;;, + 66;4;-0.873505,-0.484857,-0.017408, 0.031355;;, + 67;4;-0.873505,-0.484857,-0.021171, 0.038134;;, + 68;4;-0.873511,-0.484898,-0.019290, 0.034745;;, + 69;4;-0.873556,-0.485015,-0.013990, 0.025198;;, + 70;4;-0.873694,-0.485164,-0.007184, 0.012939;;, + 71;4;-0.873959,-0.485279,-0.001884, 0.003392;;, + 72;4;-0.874338,-0.485318,-0.000002, 0.000001;;, + 73;4;-0.882425,-0.454949,-0.000002, 0.000000;;, + 74;4;-0.905131,-0.366639,-0.000002, 0.000000;;, + 75;4;-0.937534,-0.239770,-0.000002, 0.000001;;, + 76;4;-0.969841,-0.112901,-0.000002, 0.000001;;, + 77;4;-0.992280,-0.024592,-0.000002, 0.000001;;, + 78;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 79;4;-0.998860, 0.005769,-0.000043,-0.006968;;, + 80;4;-0.995481, 0.005749,-0.000164,-0.027937;;, + 81;4;-0.989986, 0.005717,-0.000361,-0.062028;;, + 82;4;-0.982799, 0.005676,-0.000618,-0.106614;;, + 83;4;-0.974658, 0.005629,-0.000910,-0.157119;;, + 84;4;-0.966517, 0.005581,-0.001201,-0.207623;;, + 85;4;-0.959330, 0.005540,-0.001459,-0.252203;;, + 86;4;-0.953836, 0.005508,-0.001656,-0.286288;;, + 87;4;-0.950457, 0.005488,-0.001777,-0.307251;;, + 88;4;-0.949334, 0.005482,-0.001817,-0.314217;;, + 89;4;-0.950457, 0.005488,-0.001792,-0.309884;;, + 90;4;-0.953836, 0.005508,-0.001714,-0.296428;;, + 91;4;-0.959330, 0.005540,-0.001582,-0.273571;;, + 92;4;-0.966517, 0.005581,-0.001399,-0.241896;;, + 93;4;-0.974659, 0.005629,-0.001175,-0.203118;;, + 94;4;-0.982800, 0.005676,-0.000926,-0.159976;;, + 95;4;-0.989987, 0.005717,-0.000670,-0.115648;;, + 96;4;-0.995481, 0.005749,-0.000424,-0.072993;;, + 97;4;-0.998860, 0.005769,-0.000199,-0.034058;;, + 98;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 99;4;-0.998860, 0.005769, 0.000194, 0.034058;;, + 100;4;-0.995481, 0.005749, 0.000419, 0.072993;;, + 101;4;-0.989987, 0.005717, 0.000665, 0.115648;;, + 102;4;-0.982800, 0.005675, 0.000921, 0.159976;;, + 103;4;-0.974659, 0.005628, 0.001170, 0.203118;;, + 104;4;-0.966517, 0.005580, 0.001395, 0.241896;;, + 105;4;-0.959330, 0.005538, 0.001577, 0.273571;;, + 106;4;-0.953836, 0.005506, 0.001710, 0.296428;;, + 107;4;-0.950457, 0.005487, 0.001787, 0.309884;;, + 108;4;-0.949334, 0.005480, 0.001812, 0.314217;;, + 109;4;-0.950457, 0.005487, 0.001772, 0.307251;;, + 110;4;-0.953836, 0.005507, 0.001651, 0.286288;;, + 111;4;-0.959330, 0.005539, 0.001454, 0.252203;;, + 112;4;-0.966517, 0.005580, 0.001197, 0.207622;;, + 113;4;-0.974658, 0.005628, 0.000905, 0.157118;;, + 114;4;-0.982800, 0.005675, 0.000613, 0.106612;;, + 115;4;-0.989987, 0.005717, 0.000356, 0.062026;;, + 116;4;-0.995481, 0.005749, 0.000159, 0.027935;;, + 117;4;-0.998860, 0.005769, 0.000038, 0.006967;;, + 118;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 119;4;-0.999542,-0.017863,-0.000003,-0.000000;;, + 120;4;-0.998007,-0.043214,-0.000002, 0.000000;;, + 121;4;-0.995747,-0.070680,-0.000002, 0.000000;;, + 122;4;-0.993498,-0.099890,-0.000002, 0.000000;;, + 123;4;-0.991956,-0.123956,-0.000002, 0.000000;;, + 124;4;-0.991417,-0.130738,-0.000002, 0.000000;;, + 125;4;-0.991714,-0.126001,-0.000002, 0.000000;;, + 126;4;-0.992602,-0.111861,-0.000002, 0.000000;;, + 127;4;-0.993998,-0.089600,-0.000002, 0.000000;;, + 128;4;-0.995700,-0.062482,-0.000002, 0.000000;;, + 129;4;-0.997402,-0.035365,-0.000002, 0.000000;;, + 130;4;-0.998799,-0.013103,-0.000003, 0.000000;;, + 131;4;-0.999686, 0.001038,-0.000003,-0.000000;;, + 132;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 133;4;-0.999987, 0.005158,-0.000003,-0.000000;;, + 134;4;-0.999997, 0.003345,-0.000003,-0.000000;;, + 135;4;-1.000014, 0.000408,-0.000003,-0.000000;;, + 136;4;-1.000037,-0.003553,-0.000003,-0.000000;;, + 137;4;-1.000065,-0.008408,-0.000003,-0.000000;;, + 138;4;-1.000098,-0.013993,-0.000003,-0.000000;;, + 139;4;-1.000133,-0.020110,-0.000003,-0.000000;;, + 140;4;-1.000170,-0.026527,-0.000003,-0.000000;;, + 141;4;-1.000207,-0.032979,-0.000003,-0.000000;;, + 142;4;-1.000243,-0.039177,-0.000003,-0.000000;;, + 143;4;-1.000275,-0.044811,-0.000003,-0.000000;;, + 144;4;-1.000303,-0.049563,-0.000003,-0.000000;;, + 145;4;-1.000323,-0.053122,-0.000003,-0.000000;;, + 146;4;-1.000335,-0.055188,-0.000003,-0.000000;;, + 147;4;-1.000337,-0.055492,-0.000003,-0.000000;;, + 148;4;-1.000327,-0.053801,-0.000003,-0.000000;;, + 149;4;-1.000305,-0.049923,-0.000003,-0.000000;;, + 150;4;-1.000269,-0.043714,-0.000003,-0.000000;;, + 151;4;-1.000219,-0.035077,-0.000003,-0.000000;;, + 152;4;-1.000155,-0.023955,-0.000003,-0.000000;;, + 153;4;-1.000076,-0.010332,-0.000003,-0.000000;;, + 154;4;-0.999983, 0.005775,-0.000003,-0.000000;;, + 155;4;-0.999323,-0.001479,-0.000519, 0.002265;;, + 156;4;-0.997321,-0.021069,-0.002074, 0.009083;;, + 157;4;-0.994046,-0.049443,-0.004602, 0.020168;;, + 158;4;-0.989742,-0.082896,-0.007909, 0.034667;;, + 159;4;-0.984849,-0.117852,-0.011654, 0.051091;;, + 160;4;-0.979946,-0.151091,-0.015400, 0.067516;;, + 161;4;-0.975615,-0.179905,-0.018707, 0.082015;;, + 162;4;-0.972305,-0.202154,-0.021235, 0.093100;;, + 163;4;-0.970272,-0.216256,-0.022790, 0.099919;;, + 164;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 165;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 166;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 167;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 168;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 169;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 170;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 171;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 172;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 173;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 174;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 175;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 176;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 177;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 178;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 179;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 180;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 181;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 182;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 183;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 184;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 185;4;-0.969597,-0.221126,-0.023306, 0.102184;;, + 186;4;-0.969597,-0.221126,-0.023306, 0.102184;;; + } + AnimationKey { // Scale + 1; + 187; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;, + 156;3; 1.000000, 1.000000, 1.000000;;, + 157;3; 1.000000, 1.000000, 1.000000;;, + 158;3; 1.000000, 1.000000, 1.000000;;, + 159;3; 1.000000, 1.000000, 1.000000;;, + 160;3; 1.000000, 1.000000, 1.000000;;, + 161;3; 1.000000, 1.000000, 1.000000;;, + 162;3; 1.000000, 1.000000, 1.000000;;, + 163;3; 1.000000, 1.000000, 1.000000;;, + 164;3; 1.000000, 1.000000, 1.000000;;, + 165;3; 1.000000, 1.000000, 1.000000;;, + 166;3; 1.000000, 1.000000, 1.000000;;, + 167;3; 1.000000, 1.000000, 1.000000;;, + 168;3; 1.000000, 1.000000, 1.000000;;, + 169;3; 1.000000, 1.000000, 1.000000;;, + 170;3; 1.000000, 1.000000, 1.000000;;, + 171;3; 1.000000, 1.000000, 1.000000;;, + 172;3; 1.000000, 1.000000, 1.000000;;, + 173;3; 1.000000, 1.000000, 1.000000;;, + 174;3; 1.000000, 1.000000, 1.000000;;, + 175;3; 1.000000, 1.000000, 1.000000;;, + 176;3; 1.000000, 1.000000, 1.000000;;, + 177;3; 1.000000, 1.000000, 1.000000;;, + 178;3; 1.000000, 1.000000, 1.000000;;, + 179;3; 1.000000, 1.000000, 1.000000;;, + 180;3; 1.000000, 1.000000, 1.000000;;, + 181;3; 1.000000, 1.000000, 1.000000;;, + 182;3; 1.000000, 1.000000, 1.000000;;, + 183;3; 1.000000, 1.000000, 1.000000;;, + 184;3; 1.000000, 1.000000, 1.000000;;, + 185;3; 1.000000, 1.000000, 1.000000;;, + 186;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 187; + 0;3; 0.023066,10.494865, 2.240401;;, + 1;3; 0.023066,10.494865, 2.240401;;, + 2;3; 0.023066,10.494865, 2.240401;;, + 3;3; 0.023066,10.494865, 2.240401;;, + 4;3; 0.023066,10.494865, 2.240401;;, + 5;3; 0.023066,10.494865, 2.240401;;, + 6;3; 0.023066,10.494865, 2.240401;;, + 7;3; 0.023066,10.494865, 2.240401;;, + 8;3; 0.023066,10.494865, 2.240401;;, + 9;3; 0.023066,10.494865, 2.240401;;, + 10;3; 0.023066,10.494865, 2.240401;;, + 11;3; 0.023066,10.494865, 2.240401;;, + 12;3; 0.023066,10.494865, 2.240401;;, + 13;3; 0.023066,10.494865, 2.240401;;, + 14;3; 0.023066,10.494865, 2.240401;;, + 15;3; 0.023066,10.494865, 2.240401;;, + 16;3; 0.023066,10.494865, 2.240401;;, + 17;3; 0.023066,10.494865, 2.240401;;, + 18;3; 0.023066,10.494865, 2.240401;;, + 19;3; 0.023066,10.494865, 2.240401;;, + 20;3; 0.023066,10.494865, 2.240401;;, + 21;3; 0.023066,10.494865, 2.240401;;, + 22;3; 0.023066,10.494865, 2.240401;;, + 23;3; 0.023066,10.494865, 2.240401;;, + 24;3; 0.023066,10.494865, 2.240401;;, + 25;3; 0.023066,10.494865, 2.240402;;, + 26;3; 0.023066,10.494865, 2.240401;;, + 27;3; 0.023066,10.494866, 2.240402;;, + 28;3; 0.023066,10.494865, 2.240402;;, + 29;3; 0.023066,10.494865, 2.240402;;, + 30;3; 0.023066,10.494866, 2.240401;;, + 31;3; 0.023066,10.494865, 2.240401;;, + 32;3; 0.023066,10.494866, 2.240401;;, + 33;3; 0.023066,10.494865, 2.240400;;, + 34;3; 0.023066,10.494865, 2.240402;;, + 35;3; 0.023066,10.494865, 2.240401;;, + 36;3; 0.023066,10.494865, 2.240402;;, + 37;3; 0.023066,10.494865, 2.240401;;, + 38;3; 0.023066,10.494866, 2.240402;;, + 39;3; 0.023066,10.494865, 2.240401;;, + 40;3; 0.023066,10.494866, 2.240402;;, + 41;3; 0.023066,10.494865, 2.240401;;, + 42;3; 0.023066,10.494866, 2.240401;;, + 43;3; 0.023066,10.494865, 2.240402;;, + 44;3; 0.023066,10.494865, 2.240402;;, + 45;3; 0.023066,10.494865, 2.240401;;, + 46;3; 0.023066,10.494865, 2.240402;;, + 47;3; 0.023066,10.494866, 2.240401;;, + 48;3; 0.023066,10.494866, 2.240402;;, + 49;3; 0.023066,10.494865, 2.240401;;, + 50;3; 0.023067,10.529997, 1.901121;;, + 51;3; 0.023070,10.633707, 0.978715;;, + 52;3; 0.023075,10.795458,-0.356916;;, + 53;3; 0.023080,10.991475,-1.907127;;, + 54;3; 0.023085,11.187492,-3.457337;;, + 55;3; 0.023090,11.349243,-4.792970;;, + 56;3; 0.023093,11.452953,-5.715377;;, + 57;3; 0.023094,11.488085,-6.054656;;, + 58;3; 0.023094,11.488085,-6.054656;;, + 59;3; 0.023094,11.488085,-6.054656;;, + 60;3; 0.023094,11.488085,-6.054656;;, + 61;3; 0.023094,11.488085,-6.054656;;, + 62;3; 0.023094,11.488085,-6.054656;;, + 63;3; 0.023096,11.488085,-6.054656;;, + 64;3; 0.023103,11.488085,-6.054656;;, + 65;3; 0.023112,11.488085,-6.054656;;, + 66;3; 0.023119,11.488085,-6.054656;;, + 67;3; 0.023121,11.488085,-6.054656;;, + 68;3; 0.023119,11.488085,-6.054656;;, + 69;3; 0.023112,11.488085,-6.054656;;, + 70;3; 0.023103,11.488085,-6.054656;;, + 71;3; 0.023096,11.488085,-6.054656;;, + 72;3; 0.023094,11.488085,-6.054656;;, + 73;3; 0.023092,11.425079,-5.416062;;, + 74;3; 0.023086,11.245809,-3.873902;;, + 75;3; 0.023080,10.991475,-1.907127;;, + 76;3; 0.023074,10.737142, 0.059648;;, + 77;3; 0.023068,10.557871, 1.601807;;, + 78;3; 0.023066,10.494865, 2.240401;;, + 79;3; 0.023066,10.494865, 2.240401;;, + 80;3; 0.023066,10.494865, 2.240401;;, + 81;3; 0.023066,10.494865, 2.240401;;, + 82;3; 0.023066,10.494865, 2.240401;;, + 83;3; 0.023066,10.494865, 2.240401;;, + 84;3; 0.023066,10.494865, 2.240401;;, + 85;3; 0.023066,10.494865, 2.240401;;, + 86;3; 0.023066,10.494865, 2.240401;;, + 87;3; 0.023066,10.494865, 2.240401;;, + 88;3; 0.023066,10.494865, 2.240401;;, + 89;3; 0.023066,10.494865, 2.240401;;, + 90;3; 0.023066,10.494865, 2.240401;;, + 91;3; 0.023066,10.494865, 2.240401;;, + 92;3; 0.023066,10.494865, 2.240401;;, + 93;3; 0.023066,10.494865, 2.240401;;, + 94;3; 0.023066,10.494865, 2.240401;;, + 95;3; 0.023066,10.494865, 2.240401;;, + 96;3; 0.023066,10.494865, 2.240401;;, + 97;3; 0.023066,10.494865, 2.240401;;, + 98;3; 0.023066,10.494865, 2.240401;;, + 99;3; 0.023066,10.494865, 2.240401;;, + 100;3; 0.023066,10.494865, 2.240401;;, + 101;3; 0.023066,10.494865, 2.240401;;, + 102;3; 0.023066,10.494865, 2.240401;;, + 103;3; 0.023066,10.494865, 2.240401;;, + 104;3; 0.023066,10.494865, 2.240401;;, + 105;3; 0.023066,10.494865, 2.240401;;, + 106;3; 0.023066,10.494865, 2.240401;;, + 107;3; 0.023066,10.494865, 2.240401;;, + 108;3; 0.023066,10.494865, 2.240401;;, + 109;3; 0.023066,10.494865, 2.240401;;, + 110;3; 0.023066,10.494865, 2.240401;;, + 111;3; 0.023066,10.494865, 2.240401;;, + 112;3; 0.023066,10.494865, 2.240401;;, + 113;3; 0.023066,10.494865, 2.240401;;, + 114;3; 0.023066,10.494865, 2.240401;;, + 115;3; 0.023066,10.494865, 2.240401;;, + 116;3; 0.023066,10.494865, 2.240401;;, + 117;3; 0.023066,10.494865, 2.240401;;, + 118;3; 0.023066,10.494865, 2.240401;;, + 119;3; 0.023066,10.494865, 2.240401;;, + 120;3; 0.023066,10.494865, 2.240401;;, + 121;3; 0.023066,10.494865, 2.240401;;, + 122;3; 0.023066,10.494865, 2.240401;;, + 123;3; 0.023066,10.494865, 2.240401;;, + 124;3; 0.023066,10.494865, 2.240401;;, + 125;3; 0.023066,10.494865, 2.240401;;, + 126;3; 0.023066,10.494865, 2.240401;;, + 127;3; 0.023066,10.494865, 2.240401;;, + 128;3; 0.023066,10.494865, 2.240401;;, + 129;3; 0.023066,10.494865, 2.240401;;, + 130;3; 0.023066,10.494865, 2.240401;;, + 131;3; 0.023066,10.494865, 2.240401;;, + 132;3; 0.023066,10.494865, 2.240401;;, + 133;3; 0.023066,10.494865, 2.240401;;, + 134;3; 0.023066,10.494865, 2.240401;;, + 135;3; 0.023066,10.494865, 2.240401;;, + 136;3; 0.023066,10.494865, 2.240401;;, + 137;3; 0.023066,10.494865, 2.240401;;, + 138;3; 0.023066,10.494865, 2.240401;;, + 139;3; 0.023066,10.494865, 2.240401;;, + 140;3; 0.023066,10.494865, 2.240401;;, + 141;3; 0.023066,10.494865, 2.240401;;, + 142;3; 0.023066,10.494865, 2.240401;;, + 143;3; 0.023066,10.494865, 2.240401;;, + 144;3; 0.023066,10.494865, 2.240401;;, + 145;3; 0.023066,10.494865, 2.240401;;, + 146;3; 0.023066,10.494865, 2.240401;;, + 147;3; 0.023066,10.494865, 2.240401;;, + 148;3; 0.023066,10.494865, 2.240401;;, + 149;3; 0.023066,10.494865, 2.240401;;, + 150;3; 0.023066,10.494865, 2.240401;;, + 151;3; 0.023066,10.494865, 2.240401;;, + 152;3; 0.023066,10.494865, 2.240401;;, + 153;3; 0.023066,10.494865, 2.240401;;, + 154;3; 0.023066,10.494865, 2.240401;;, + 155;3; 0.023066,10.494865, 2.240401;;, + 156;3; 0.023066,10.494865, 2.240401;;, + 157;3; 0.023066,10.494865, 2.240401;;, + 158;3; 0.023066,10.494865, 2.240402;;, + 159;3; 0.023066,10.494866, 2.240400;;, + 160;3; 0.023066,10.494865, 2.240401;;, + 161;3; 0.023065,10.494865, 2.240402;;, + 162;3; 0.023067,10.494865, 2.240401;;, + 163;3; 0.023066,10.494864, 2.240401;;, + 164;3; 0.023066,10.494864, 2.240401;;, + 165;3; 0.023066,10.494864, 2.240401;;, + 166;3; 0.023066,10.494864, 2.240401;;, + 167;3; 0.023066,10.494864, 2.240401;;, + 168;3; 0.023066,10.494864, 2.240401;;, + 169;3; 0.023066,10.494864, 2.240401;;, + 170;3; 0.023066,10.494864, 2.240401;;, + 171;3; 0.023066,10.494864, 2.240401;;, + 172;3; 0.023066,10.494864, 2.240401;;, + 173;3; 0.023066,10.494864, 2.240401;;, + 174;3; 0.023066,10.494864, 2.240401;;, + 175;3; 0.023066,10.494864, 2.240401;;, + 176;3; 0.023066,10.494864, 2.240401;;, + 177;3; 0.023066,10.494864, 2.240401;;, + 178;3; 0.023066,10.494864, 2.240401;;, + 179;3; 0.023066,10.494864, 2.240401;;, + 180;3; 0.023066,10.494864, 2.240401;;, + 181;3; 0.023066,10.494864, 2.240401;;, + 182;3; 0.023066,10.494864, 2.240401;;, + 183;3; 0.023066,10.494864, 2.240401;;, + 184;3; 0.023066,10.494864, 2.240401;;, + 185;3; 0.023066,10.494864, 2.240401;;, + 186;3; 0.023066,10.494864, 2.240401;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/models/mobs_skeleton.x b/mods/mobs_mc/models/mobs_skeleton.x new file mode 100644 index 000000000..1b6e2d757 --- /dev/null +++ b/mods/mobs_mc/models/mobs_skeleton.x @@ -0,0 +1,5449 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Skeleton_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Skeleton_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Skeleton_Rig_Coccyx { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.012756, 7.126056, 0.000001, 1.000000;; + } + Frame Skeleton_Rig_Chest { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.675508, 0.000000, 1.000000;; + } + Frame Skeleton_Rig_Hand_L { + FrameTransformMatrix { + 1.000000, 0.000001,-0.000000, 0.000000, + -0.000000,-0.019182,-0.999816, 0.000000, + -0.000001, 0.999816,-0.019182, 0.000000, + -3.271756, 4.607169, 0.050271, 1.000000;; + } + } // End of Skeleton_Rig_Hand_L + Frame Skeleton_Rig_Hand_R { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.019182,-0.999816, 0.000000, + -0.000000, 0.999816,-0.019182, 0.000000, + 3.174013, 4.607169, 0.050269, 1.000000;; + } + } // End of Skeleton_Rig_Hand_R + Frame Skeleton_Rig_Head { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.100540, 6.617979,-0.000000, 1.000000;; + } + } // End of Skeleton_Rig_Head + } // End of Skeleton_Rig_Chest + Frame Skeleton_Rig_Leg_L { + FrameTransformMatrix { + 1.000000,-0.000001,-0.000000, 0.000000, + -0.000001,-1.000000, 0.000001, 0.000000, + -0.000000,-0.000001,-1.000000, 0.000000, + -1.105947, 0.069942, 0.000000, 1.000000;; + } + } // End of Skeleton_Rig_Leg_L + Frame Skeleton_Rig_Leg_R { + FrameTransformMatrix { + 1.000000,-0.000001,-0.000000, 0.000000, + -0.000001,-1.000000, 0.000001, 0.000000, + -0.000000,-0.000001,-1.000000, 0.000000, + 1.206486, 0.069941,-0.000000, 1.000000;; + } + } // End of Skeleton_Rig_Leg_R + } // End of Skeleton_Rig_Coccyx + } // End of Skeleton_Rig_Root + Frame Cube_001 { + FrameTransformMatrix { + -1.772010,-0.000002, 0.000000, 0.000000, + 0.000002,-1.772010, 0.000000, 0.000000, + 0.000000, 0.000000, 3.914027, 0.000000, + 0.000000, 0.000000, 9.947523, 1.000000;; + } + Mesh { // Cube_001 mesh + 144; + -1.106941;-0.682830; 1.000000;, + -1.106941; 0.682830; 1.000000;, + -1.106941; 0.682830;-0.663285;, + -1.106941;-0.682830;-0.663285;, + -1.106941; 0.682830; 1.000000;, + 1.196581; 0.682830; 1.000000;, + 1.196581; 0.682830;-0.663285;, + -1.106941; 0.682830;-0.663285;, + 1.196581; 0.682830; 1.000000;, + 1.196581;-0.682830; 1.000000;, + 1.196581;-0.682830;-0.663285;, + 1.196581; 0.682830;-0.663285;, + 1.196581;-0.682830; 1.000000;, + -1.106941;-0.682830; 1.000000;, + -1.106941;-0.682830;-0.663285;, + 1.196581;-0.682830;-0.663285;, + -1.106941;-0.682830;-0.663285;, + -1.106941; 0.682830;-0.663285;, + 1.196581; 0.682830;-0.663285;, + 1.196581;-0.682830;-0.663285;, + 1.196581;-0.682830; 1.000000;, + 1.196581; 0.682830; 1.000000;, + -1.106941; 0.682830; 1.000000;, + -1.106941;-0.682830; 1.000000;, + -1.434277;-1.434277; 2.369354;, + -1.434277; 1.434277; 2.369354;, + -1.434277; 1.434277; 1.070664;, + -1.434277;-1.434277; 1.070664;, + -1.434277; 1.434277; 2.369354;, + 1.434277; 1.434277; 2.369354;, + 1.434277; 1.434277; 1.070664;, + -1.434277; 1.434277; 1.070664;, + 1.434277; 1.434277; 2.369354;, + 1.434277;-1.434277; 2.369354;, + 1.434277;-1.434277; 1.070664;, + 1.434277; 1.434277; 1.070664;, + 1.434277;-1.434277; 2.369354;, + -1.434277;-1.434277; 2.369354;, + -1.434277;-1.434277; 1.070664;, + 1.434277;-1.434277; 1.070664;, + -1.434277;-1.434277; 1.070664;, + -1.434277; 1.434277; 1.070664;, + 1.434277; 1.434277; 1.070664;, + 1.434277;-1.434277; 1.070664;, + 1.434277;-1.434277; 2.369354;, + 1.434277; 1.434277; 2.369354;, + -1.434277; 1.434277; 2.369354;, + -1.434277;-1.434277; 2.369354;, + -0.984168;-0.348691;-0.717990;, + -0.984168; 0.348687;-0.717990;, + -0.984168; 0.348687;-2.514503;, + -0.984168;-0.348691;-2.514503;, + -0.984168; 0.348687;-0.717990;, + -0.286790; 0.348687;-0.717990;, + -0.286790; 0.348687;-2.514503;, + -0.984168; 0.348687;-2.514503;, + -0.286790; 0.348687;-0.717990;, + -0.286790;-0.348691;-0.717990;, + -0.286790;-0.348691;-2.514503;, + -0.286790; 0.348687;-2.514503;, + -0.286790;-0.348691;-0.717990;, + -0.984168;-0.348691;-0.717990;, + -0.984168;-0.348691;-2.514503;, + -0.286790;-0.348691;-2.514503;, + -0.984168;-0.348691;-2.514503;, + -0.984168; 0.348687;-2.514503;, + -0.286790; 0.348687;-2.514503;, + -0.286790;-0.348691;-2.514503;, + -0.286790;-0.348691;-0.717990;, + -0.286790; 0.348687;-0.717990;, + -0.984168; 0.348687;-0.717990;, + -0.984168;-0.348691;-0.717990;, + 0.297446;-0.348691;-2.514503;, + 0.297446; 0.348687;-2.514503;, + 0.994823; 0.348687;-2.514503;, + 0.994823;-0.348691;-2.514503;, + 0.994823; 0.348687;-0.717990;, + 0.994823;-0.348691;-0.717990;, + 0.994823;-0.348691;-2.514503;, + 0.994823; 0.348687;-2.514503;, + 0.297446; 0.348687;-0.717990;, + 0.994823; 0.348687;-0.717990;, + 0.994823; 0.348687;-2.514503;, + 0.297446; 0.348687;-2.514503;, + 0.994823;-0.348691;-0.717990;, + 0.994823; 0.348687;-0.717990;, + 0.297446; 0.348687;-0.717990;, + 0.297446;-0.348691;-0.717990;, + 0.994823;-0.348691;-0.717990;, + 0.297446;-0.348691;-0.717990;, + 0.297446;-0.348691;-2.514503;, + 0.994823;-0.348691;-2.514503;, + 0.297446;-0.348691;-0.717990;, + 0.297446; 0.348687;-0.717990;, + 0.297446; 0.348687;-2.514503;, + 0.297446;-0.348691;-2.514503;, + 1.478581; 0.333111; 0.467748;, + 1.478581; 0.327904; 0.783466;, + 2.175959; 0.327904; 0.783466;, + 2.175959; 0.333111; 0.467748;, + 2.175959;-3.640136; 0.770050;, + 2.175959;-3.634928; 0.454333;, + 2.175959; 0.333111; 0.467748;, + 2.175959; 0.327904; 0.783466;, + 1.478581;-3.640136; 0.770050;, + 2.175959;-3.640136; 0.770050;, + 2.175959; 0.327904; 0.783466;, + 1.478581; 0.327904; 0.783466;, + 2.175959;-3.634928; 0.454333;, + 2.175959;-3.640136; 0.770050;, + 1.478581;-3.640136; 0.770050;, + 1.478581;-3.634928; 0.454333;, + 2.175959;-3.634928; 0.454333;, + 1.478581;-3.634928; 0.454333;, + 1.478581; 0.333111; 0.467748;, + 2.175959; 0.333111; 0.467748;, + 1.478581;-3.634928; 0.454333;, + 1.478581;-3.640136; 0.770050;, + 1.478581; 0.327904; 0.783466;, + 1.478581; 0.333111; 0.467748;, + -2.159316; 0.333111; 0.467748;, + -2.159316; 0.327904; 0.783466;, + -1.461938; 0.327904; 0.783466;, + -1.461938; 0.333111; 0.467748;, + -1.461938;-3.640136; 0.770050;, + -1.461938;-3.634928; 0.454333;, + -1.461938; 0.333111; 0.467748;, + -1.461938; 0.327904; 0.783466;, + -2.159316;-3.640136; 0.770050;, + -1.461938;-3.640136; 0.770050;, + -1.461938; 0.327904; 0.783466;, + -2.159316; 0.327904; 0.783466;, + -1.461938;-3.634928; 0.454333;, + -1.461938;-3.640136; 0.770050;, + -2.159316;-3.640136; 0.770050;, + -2.159316;-3.634928; 0.454333;, + -1.461938;-3.634928; 0.454333;, + -2.159316;-3.634928; 0.454333;, + -2.159316; 0.333111; 0.467748;, + -1.461938; 0.333111; 0.467748;, + -2.159316;-3.634928; 0.454333;, + -2.159316;-3.640136; 0.770050;, + -2.159316; 0.327904; 0.783466;, + -2.159316; 0.333111; 0.467748;; + 36; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;; + MeshNormals { // Cube_001 normals + 36; + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.999864; 0.016492;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-0.003381; 0.999994;, + 0.000000;-0.999864;-0.016493;, + 0.000000; 0.003381;-0.999994;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.999864; 0.016492;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-0.003381; 0.999994;, + 0.000000;-0.999864;-0.016493;, + 0.000000; 0.003381;-0.999994;, + -1.000000;-0.000000; 0.000000;; + 36; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;; + } // End of Cube_001 normals + MeshTextureCoords { // Cube_001 UV coordinates + 144; + 0.312500; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.312500; 1.000000;, + 0.625000; 0.625000;, + 0.500000; 0.625000;, + 0.500000; 1.000000;, + 0.625000; 1.000000;, + 0.500000; 0.625000;, + 0.437500; 0.625000;, + 0.437500; 1.000000;, + 0.500000; 1.000000;, + 0.437500; 0.625000;, + 0.312500; 0.625000;, + 0.312500; 1.000000;, + 0.437500; 1.000000;, + 0.437500; 0.500000;, + 0.437500; 0.625000;, + 0.562500; 0.625000;, + 0.562500; 0.500000;, + 0.562500; 0.625000;, + 0.562500; 0.500000;, + 0.437500; 0.500000;, + 0.437500; 0.625000;, + 0.000000; 0.500000;, + 0.125000; 0.500000;, + 0.125000; 0.250000;, + 0.000000; 0.250000;, + 0.375000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.250000;, + 0.375000; 0.250000;, + 0.375000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.500000;, + 0.375000; 0.500000;, + 0.250000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.500000;, + 0.250000; 0.500000;, + 0.250000; 0.000000;, + 0.250000; 0.250000;, + 0.375000; 0.250000;, + 0.375000; 0.000000;, + 0.250000; 0.250000;, + 0.250000; 0.000000;, + 0.125000; 0.000000;, + 0.125000; 0.250000;, + 0.093750; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.937500;, + 0.093750; 0.937500;, + 0.125000; 0.562500;, + 0.093750; 0.562500;, + 0.093750; 0.937500;, + 0.125000; 0.937500;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.031250; 0.937500;, + 0.062500; 0.937500;, + 0.031250; 0.562500;, + 0.000000; 0.562500;, + 0.000000; 0.937500;, + 0.031250; 0.937500;, + 0.031250; 0.500000;, + 0.031250; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.500000;, + 0.093750; 0.562500;, + 0.093750; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.031250; 0.500000;, + 0.031250; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.031250; 0.937500;, + 0.062500; 0.937500;, + 0.125000; 0.562500;, + 0.093750; 0.562500;, + 0.093750; 0.937500;, + 0.125000; 0.937500;, + 0.093750; 0.562500;, + 0.093750; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.000000; 0.562500;, + 0.000000; 0.937500;, + 0.031250; 0.937500;, + 0.093750; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.937500;, + 0.093750; 0.937500;, + 0.031250; 0.500000;, + 0.031250; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.031250; 0.937500;, + 0.062500; 0.937500;, + 0.125000; 0.562500;, + 0.093750; 0.562500;, + 0.093750; 0.937500;, + 0.125000; 0.937500;, + 0.093750; 0.562500;, + 0.093750; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.000000; 0.562500;, + 0.000000; 0.937500;, + 0.031250; 0.937500;, + 0.093750; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.937500;, + 0.093750; 0.937500;, + 0.031250; 0.500000;, + 0.031250; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.031250; 0.937500;, + 0.062500; 0.937500;, + 0.125000; 0.562500;, + 0.093750; 0.562500;, + 0.093750; 0.937500;, + 0.125000; 0.937500;, + 0.093750; 0.562500;, + 0.093750; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.000000; 0.562500;, + 0.000000; 0.937500;, + 0.031250; 0.937500;, + 0.093750; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.937500;, + 0.093750; 0.937500;; + } // End of Cube_001 UV coordinates + MeshMaterialList { // Cube_001 material list + 1; + 36; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material_001 { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"skeleton.png";} + } + } // End of Cube_001 material list + XSkinMeshHeader { + 1; + 3; + 8; + } + SkinWeights { + "Skeleton_Rig_Hand_R"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010,-0.000002, 0.000001, 0.000000, + 0.000002,-1.771684,-0.033990, 0.000000, + 0.000002,-0.075078, 3.913306, 0.000000, + -3.186770, 0.097472,-2.459791, 1.000000;; + } // End of Skeleton_Rig_Hand_R skin weights + SkinWeights { + "Skeleton_Rig_Leg_L"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010, 0.000002,-0.000002, 0.000000, + 0.000002, 0.000002,-1.772010, 0.000000, + -0.000004,-3.914027,-0.000004, 0.000000, + 1.093189,-2.751525,-0.000002, 1.000000;; + } // End of Skeleton_Rig_Leg_L skin weights + SkinWeights { + "Skeleton_Rig_Leg_R"; + 24; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010, 0.000002,-0.000002, 0.000000, + 0.000002, 0.000002,-1.772010, 0.000000, + -0.000004,-3.914027,-0.000004, 0.000000, + -1.219244,-2.751525,-0.000002, 1.000000;; + } // End of Skeleton_Rig_Leg_R skin weights + SkinWeights { + "Skeleton_Rig_Head"; + 24; + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010,-0.000000, 0.000003, 0.000000, + 0.000003,-0.000000, 1.772010, 0.000000, + -0.000000, 3.914027, 0.000000, 0.000000, + 0.087784,-4.472020,-0.000000, 1.000000;; + } // End of Skeleton_Rig_Head skin weights + SkinWeights { + "Skeleton_Rig_Hand_L"; + 24; + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010,-0.000002, 0.000001, 0.000000, + 0.000002,-1.771684,-0.033990, 0.000000, + 0.000002,-0.075078, 3.913306, 0.000000, + 3.258999, 0.097471,-2.459795, 1.000000;; + } // End of Skeleton_Rig_Hand_L skin weights + SkinWeights { + "Skeleton_Rig_Chest"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010,-0.000000, 0.000003, 0.000000, + 0.000003,-0.000000, 1.772010, 0.000000, + -0.000000, 3.914027, 0.000000, 0.000000, + -0.012756, 2.145959,-0.000000, 1.000000;; + } // End of Skeleton_Rig_Chest skin weights + SkinWeights { + "Skeleton_Rig_Root"; + 0; + -1.772010,-0.000000, 0.000002, 0.000000, + 0.000002,-0.000000, 1.772010, 0.000000, + 0.000000, 3.914027, 0.000000, 0.000000, + 0.000000, 9.947523, 0.000001, 1.000000;; + } // End of Skeleton_Rig_Root skin weights + SkinWeights { + "Skeleton_Rig_Coccyx"; + 0; + -1.772010,-0.000000, 0.000003, 0.000000, + 0.000003,-0.000000, 1.772010, 0.000000, + -0.000000, 3.914027, 0.000000, 0.000000, + -0.012756, 2.821467,-0.000000, 1.000000;; + } // End of Skeleton_Rig_Coccyx skin weights + } // End of Cube_001 mesh + } // End of Cube_001 + } // End of Skeleton_Rig +} // End of Root +AnimationSet Global { + Animation { + {Cube_001} + AnimationKey { // Rotation + 0; + 146; + 0;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 1;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 2;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 3;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 4;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 5;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 6;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 7;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 8;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 9;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 10;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 11;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 12;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 13;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 14;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 15;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 16;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 17;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 18;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 19;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 20;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 21;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 22;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 23;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 24;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 25;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 26;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 27;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 28;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 29;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 30;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 31;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 32;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 33;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 34;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 35;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 36;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 37;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 38;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 39;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 40;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 41;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 42;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 43;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 44;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 45;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 46;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 47;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 48;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 49;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 50;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 51;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 52;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 53;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 54;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 55;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 56;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 57;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 58;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 59;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 60;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 61;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 62;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 63;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 64;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 65;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 66;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 67;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 68;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 69;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 70;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 71;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 72;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 73;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 74;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 75;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 76;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 77;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 78;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 79;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 80;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 81;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 82;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 83;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 84;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 85;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 86;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 87;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 88;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 89;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 90;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 91;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 92;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 93;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 94;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 95;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 96;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 97;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 98;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 99;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 100;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 101;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 102;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 103;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 104;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 105;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 106;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 107;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 108;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 109;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 110;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 111;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 112;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 113;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 114;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 115;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 116;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 117;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 118;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 119;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 120;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 121;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 122;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 123;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 124;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 125;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 126;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 127;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 128;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 129;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 130;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 131;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 132;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 133;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 134;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 135;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 136;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 137;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 138;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 139;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 140;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 141;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 142;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 143;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 144;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 145;4; 0.000001, 0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.772010, 1.772010, 3.914027;;, + 1;3; 1.772010, 1.772010, 3.914027;;, + 2;3; 1.772010, 1.772010, 3.914027;;, + 3;3; 1.772010, 1.772010, 3.914027;;, + 4;3; 1.772010, 1.772010, 3.914027;;, + 5;3; 1.772010, 1.772010, 3.914027;;, + 6;3; 1.772010, 1.772010, 3.914027;;, + 7;3; 1.772010, 1.772010, 3.914027;;, + 8;3; 1.772010, 1.772010, 3.914027;;, + 9;3; 1.772010, 1.772010, 3.914027;;, + 10;3; 1.772010, 1.772010, 3.914027;;, + 11;3; 1.772010, 1.772010, 3.914027;;, + 12;3; 1.772010, 1.772010, 3.914027;;, + 13;3; 1.772010, 1.772010, 3.914027;;, + 14;3; 1.772010, 1.772010, 3.914027;;, + 15;3; 1.772010, 1.772010, 3.914027;;, + 16;3; 1.772010, 1.772010, 3.914027;;, + 17;3; 1.772010, 1.772010, 3.914027;;, + 18;3; 1.772010, 1.772010, 3.914027;;, + 19;3; 1.772010, 1.772010, 3.914027;;, + 20;3; 1.772010, 1.772010, 3.914027;;, + 21;3; 1.772010, 1.772010, 3.914027;;, + 22;3; 1.772010, 1.772010, 3.914027;;, + 23;3; 1.772010, 1.772010, 3.914027;;, + 24;3; 1.772010, 1.772010, 3.914027;;, + 25;3; 1.772010, 1.772010, 3.914027;;, + 26;3; 1.772010, 1.772010, 3.914027;;, + 27;3; 1.772010, 1.772010, 3.914027;;, + 28;3; 1.772010, 1.772010, 3.914027;;, + 29;3; 1.772010, 1.772010, 3.914027;;, + 30;3; 1.772010, 1.772010, 3.914027;;, + 31;3; 1.772010, 1.772010, 3.914027;;, + 32;3; 1.772010, 1.772010, 3.914027;;, + 33;3; 1.772010, 1.772010, 3.914027;;, + 34;3; 1.772010, 1.772010, 3.914027;;, + 35;3; 1.772010, 1.772010, 3.914027;;, + 36;3; 1.772010, 1.772010, 3.914027;;, + 37;3; 1.772010, 1.772010, 3.914027;;, + 38;3; 1.772010, 1.772010, 3.914027;;, + 39;3; 1.772010, 1.772010, 3.914027;;, + 40;3; 1.772010, 1.772010, 3.914027;;, + 41;3; 1.772010, 1.772010, 3.914027;;, + 42;3; 1.772010, 1.772010, 3.914027;;, + 43;3; 1.772010, 1.772010, 3.914027;;, + 44;3; 1.772010, 1.772010, 3.914027;;, + 45;3; 1.772010, 1.772010, 3.914027;;, + 46;3; 1.772010, 1.772010, 3.914027;;, + 47;3; 1.772010, 1.772010, 3.914027;;, + 48;3; 1.772010, 1.772010, 3.914027;;, + 49;3; 1.772010, 1.772010, 3.914027;;, + 50;3; 1.772010, 1.772010, 3.914027;;, + 51;3; 1.772010, 1.772010, 3.914027;;, + 52;3; 1.772010, 1.772010, 3.914027;;, + 53;3; 1.772010, 1.772010, 3.914027;;, + 54;3; 1.772010, 1.772010, 3.914027;;, + 55;3; 1.772010, 1.772010, 3.914027;;, + 56;3; 1.772010, 1.772010, 3.914027;;, + 57;3; 1.772010, 1.772010, 3.914027;;, + 58;3; 1.772010, 1.772010, 3.914027;;, + 59;3; 1.772010, 1.772010, 3.914027;;, + 60;3; 1.772010, 1.772010, 3.914027;;, + 61;3; 1.772010, 1.772010, 3.914027;;, + 62;3; 1.772010, 1.772010, 3.914027;;, + 63;3; 1.772010, 1.772010, 3.914027;;, + 64;3; 1.772010, 1.772010, 3.914027;;, + 65;3; 1.772010, 1.772010, 3.914027;;, + 66;3; 1.772010, 1.772010, 3.914027;;, + 67;3; 1.772010, 1.772010, 3.914027;;, + 68;3; 1.772010, 1.772010, 3.914027;;, + 69;3; 1.772010, 1.772010, 3.914027;;, + 70;3; 1.772010, 1.772010, 3.914027;;, + 71;3; 1.772010, 1.772010, 3.914027;;, + 72;3; 1.772010, 1.772010, 3.914027;;, + 73;3; 1.772010, 1.772010, 3.914027;;, + 74;3; 1.772010, 1.772010, 3.914027;;, + 75;3; 1.772010, 1.772010, 3.914027;;, + 76;3; 1.772010, 1.772010, 3.914027;;, + 77;3; 1.772010, 1.772010, 3.914027;;, + 78;3; 1.772010, 1.772010, 3.914027;;, + 79;3; 1.772010, 1.772010, 3.914027;;, + 80;3; 1.772010, 1.772010, 3.914027;;, + 81;3; 1.772010, 1.772010, 3.914027;;, + 82;3; 1.772010, 1.772010, 3.914027;;, + 83;3; 1.772010, 1.772010, 3.914027;;, + 84;3; 1.772010, 1.772010, 3.914027;;, + 85;3; 1.772010, 1.772010, 3.914027;;, + 86;3; 1.772010, 1.772010, 3.914027;;, + 87;3; 1.772010, 1.772010, 3.914027;;, + 88;3; 1.772010, 1.772010, 3.914027;;, + 89;3; 1.772010, 1.772010, 3.914027;;, + 90;3; 1.772010, 1.772010, 3.914027;;, + 91;3; 1.772010, 1.772010, 3.914027;;, + 92;3; 1.772010, 1.772010, 3.914027;;, + 93;3; 1.772010, 1.772010, 3.914027;;, + 94;3; 1.772010, 1.772010, 3.914027;;, + 95;3; 1.772010, 1.772010, 3.914027;;, + 96;3; 1.772010, 1.772010, 3.914027;;, + 97;3; 1.772010, 1.772010, 3.914027;;, + 98;3; 1.772010, 1.772010, 3.914027;;, + 99;3; 1.772010, 1.772010, 3.914027;;, + 100;3; 1.772010, 1.772010, 3.914027;;, + 101;3; 1.772010, 1.772010, 3.914027;;, + 102;3; 1.772010, 1.772010, 3.914027;;, + 103;3; 1.772010, 1.772010, 3.914027;;, + 104;3; 1.772010, 1.772010, 3.914027;;, + 105;3; 1.772010, 1.772010, 3.914027;;, + 106;3; 1.772010, 1.772010, 3.914027;;, + 107;3; 1.772010, 1.772010, 3.914027;;, + 108;3; 1.772010, 1.772010, 3.914027;;, + 109;3; 1.772010, 1.772010, 3.914027;;, + 110;3; 1.772010, 1.772010, 3.914027;;, + 111;3; 1.772010, 1.772010, 3.914027;;, + 112;3; 1.772010, 1.772010, 3.914027;;, + 113;3; 1.772010, 1.772010, 3.914027;;, + 114;3; 1.772010, 1.772010, 3.914027;;, + 115;3; 1.772010, 1.772010, 3.914027;;, + 116;3; 1.772010, 1.772010, 3.914027;;, + 117;3; 1.772010, 1.772010, 3.914027;;, + 118;3; 1.772010, 1.772010, 3.914027;;, + 119;3; 1.772010, 1.772010, 3.914027;;, + 120;3; 1.772010, 1.772010, 3.914027;;, + 121;3; 1.772010, 1.772010, 3.914027;;, + 122;3; 1.772010, 1.772010, 3.914027;;, + 123;3; 1.772010, 1.772010, 3.914027;;, + 124;3; 1.772010, 1.772010, 3.914027;;, + 125;3; 1.772010, 1.772010, 3.914027;;, + 126;3; 1.772010, 1.772010, 3.914027;;, + 127;3; 1.772010, 1.772010, 3.914027;;, + 128;3; 1.772010, 1.772010, 3.914027;;, + 129;3; 1.772010, 1.772010, 3.914027;;, + 130;3; 1.772010, 1.772010, 3.914027;;, + 131;3; 1.772010, 1.772010, 3.914027;;, + 132;3; 1.772010, 1.772010, 3.914027;;, + 133;3; 1.772010, 1.772010, 3.914027;;, + 134;3; 1.772010, 1.772010, 3.914027;;, + 135;3; 1.772010, 1.772010, 3.914027;;, + 136;3; 1.772010, 1.772010, 3.914027;;, + 137;3; 1.772010, 1.772010, 3.914027;;, + 138;3; 1.772010, 1.772010, 3.914027;;, + 139;3; 1.772010, 1.772010, 3.914027;;, + 140;3; 1.772010, 1.772010, 3.914027;;, + 141;3; 1.772010, 1.772010, 3.914027;;, + 142;3; 1.772010, 1.772010, 3.914027;;, + 143;3; 1.772010, 1.772010, 3.914027;;, + 144;3; 1.772010, 1.772010, 3.914027;;, + 145;3; 1.772010, 1.772010, 3.914027;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.000000, 0.000000, 9.947523;;, + 1;3; 0.000000, 0.000000, 9.947523;;, + 2;3; 0.000000, 0.000000, 9.947523;;, + 3;3; 0.000000, 0.000000, 9.947523;;, + 4;3; 0.000000, 0.000000, 9.947523;;, + 5;3; 0.000000, 0.000000, 9.947523;;, + 6;3; 0.000000, 0.000000, 9.947523;;, + 7;3; 0.000000, 0.000000, 9.947523;;, + 8;3; 0.000000, 0.000000, 9.947523;;, + 9;3; 0.000000, 0.000000, 9.947523;;, + 10;3; 0.000000, 0.000000, 9.947523;;, + 11;3; 0.000000, 0.000000, 9.947523;;, + 12;3; 0.000000, 0.000000, 9.947523;;, + 13;3; 0.000000, 0.000000, 9.947523;;, + 14;3; 0.000000, 0.000000, 9.947523;;, + 15;3; 0.000000, 0.000000, 9.947523;;, + 16;3; 0.000000, 0.000000, 9.947523;;, + 17;3; 0.000000, 0.000000, 9.947523;;, + 18;3; 0.000000, 0.000000, 9.947523;;, + 19;3; 0.000000, 0.000000, 9.947523;;, + 20;3; 0.000000, 0.000000, 9.947523;;, + 21;3; 0.000000, 0.000000, 9.947523;;, + 22;3; 0.000000, 0.000000, 9.947523;;, + 23;3; 0.000000, 0.000000, 9.947523;;, + 24;3; 0.000000, 0.000000, 9.947523;;, + 25;3; 0.000000, 0.000000, 9.947523;;, + 26;3; 0.000000, 0.000000, 9.947523;;, + 27;3; 0.000000, 0.000000, 9.947523;;, + 28;3; 0.000000, 0.000000, 9.947523;;, + 29;3; 0.000000, 0.000000, 9.947523;;, + 30;3; 0.000000, 0.000000, 9.947523;;, + 31;3; 0.000000, 0.000000, 9.947523;;, + 32;3; 0.000000, 0.000000, 9.947523;;, + 33;3; 0.000000, 0.000000, 9.947523;;, + 34;3; 0.000000, 0.000000, 9.947523;;, + 35;3; 0.000000, 0.000000, 9.947523;;, + 36;3; 0.000000, 0.000000, 9.947523;;, + 37;3; 0.000000, 0.000000, 9.947523;;, + 38;3; 0.000000, 0.000000, 9.947523;;, + 39;3; 0.000000, 0.000000, 9.947523;;, + 40;3; 0.000000, 0.000000, 9.947523;;, + 41;3; 0.000000, 0.000000, 9.947523;;, + 42;3; 0.000000, 0.000000, 9.947523;;, + 43;3; 0.000000, 0.000000, 9.947523;;, + 44;3; 0.000000, 0.000000, 9.947523;;, + 45;3; 0.000000, 0.000000, 9.947523;;, + 46;3; 0.000000, 0.000000, 9.947523;;, + 47;3; 0.000000, 0.000000, 9.947523;;, + 48;3; 0.000000, 0.000000, 9.947523;;, + 49;3; 0.000000, 0.000000, 9.947523;;, + 50;3; 0.000000, 0.000000, 9.947523;;, + 51;3; 0.000000, 0.000000, 9.947523;;, + 52;3; 0.000000, 0.000000, 9.947523;;, + 53;3; 0.000000, 0.000000, 9.947523;;, + 54;3; 0.000000, 0.000000, 9.947523;;, + 55;3; 0.000000, 0.000000, 9.947523;;, + 56;3; 0.000000, 0.000000, 9.947523;;, + 57;3; 0.000000, 0.000000, 9.947523;;, + 58;3; 0.000000, 0.000000, 9.947523;;, + 59;3; 0.000000, 0.000000, 9.947523;;, + 60;3; 0.000000, 0.000000, 9.947523;;, + 61;3; 0.000000, 0.000000, 9.947523;;, + 62;3; 0.000000, 0.000000, 9.947523;;, + 63;3; 0.000000, 0.000000, 9.947523;;, + 64;3; 0.000000, 0.000000, 9.947523;;, + 65;3; 0.000000, 0.000000, 9.947523;;, + 66;3; 0.000000, 0.000000, 9.947523;;, + 67;3; 0.000000, 0.000000, 9.947523;;, + 68;3; 0.000000, 0.000000, 9.947523;;, + 69;3; 0.000000, 0.000000, 9.947523;;, + 70;3; 0.000000, 0.000000, 9.947523;;, + 71;3; 0.000000, 0.000000, 9.947523;;, + 72;3; 0.000000, 0.000000, 9.947523;;, + 73;3; 0.000000, 0.000000, 9.947523;;, + 74;3; 0.000000, 0.000000, 9.947523;;, + 75;3; 0.000000, 0.000000, 9.947523;;, + 76;3; 0.000000, 0.000000, 9.947523;;, + 77;3; 0.000000, 0.000000, 9.947523;;, + 78;3; 0.000000, 0.000000, 9.947523;;, + 79;3; 0.000000, 0.000000, 9.947523;;, + 80;3; 0.000000, 0.000000, 9.947523;;, + 81;3; 0.000000, 0.000000, 9.947523;;, + 82;3; 0.000000, 0.000000, 9.947523;;, + 83;3; 0.000000, 0.000000, 9.947523;;, + 84;3; 0.000000, 0.000000, 9.947523;;, + 85;3; 0.000000, 0.000000, 9.947523;;, + 86;3; 0.000000, 0.000000, 9.947523;;, + 87;3; 0.000000, 0.000000, 9.947523;;, + 88;3; 0.000000, 0.000000, 9.947523;;, + 89;3; 0.000000, 0.000000, 9.947523;;, + 90;3; 0.000000, 0.000000, 9.947523;;, + 91;3; 0.000000, 0.000000, 9.947523;;, + 92;3; 0.000000, 0.000000, 9.947523;;, + 93;3; 0.000000, 0.000000, 9.947523;;, + 94;3; 0.000000, 0.000000, 9.947523;;, + 95;3; 0.000000, 0.000000, 9.947523;;, + 96;3; 0.000000, 0.000000, 9.947523;;, + 97;3; 0.000000, 0.000000, 9.947523;;, + 98;3; 0.000000, 0.000000, 9.947523;;, + 99;3; 0.000000, 0.000000, 9.947523;;, + 100;3; 0.000000, 0.000000, 9.947523;;, + 101;3; 0.000000, 0.000000, 9.947523;;, + 102;3; 0.000000, 0.000000, 9.947523;;, + 103;3; 0.000000, 0.000000, 9.947523;;, + 104;3; 0.000000, 0.000000, 9.947523;;, + 105;3; 0.000000, 0.000000, 9.947523;;, + 106;3; 0.000000, 0.000000, 9.947523;;, + 107;3; 0.000000, 0.000000, 9.947523;;, + 108;3; 0.000000, 0.000000, 9.947523;;, + 109;3; 0.000000, 0.000000, 9.947523;;, + 110;3; 0.000000, 0.000000, 9.947523;;, + 111;3; 0.000000, 0.000000, 9.947523;;, + 112;3; 0.000000, 0.000000, 9.947523;;, + 113;3; 0.000000, 0.000000, 9.947523;;, + 114;3; 0.000000, 0.000000, 9.947523;;, + 115;3; 0.000000, 0.000000, 9.947523;;, + 116;3; 0.000000, 0.000000, 9.947523;;, + 117;3; 0.000000, 0.000000, 9.947523;;, + 118;3; 0.000000, 0.000000, 9.947523;;, + 119;3; 0.000000, 0.000000, 9.947523;;, + 120;3; 0.000000, 0.000000, 9.947523;;, + 121;3; 0.000000, 0.000000, 9.947523;;, + 122;3; 0.000000, 0.000000, 9.947523;;, + 123;3; 0.000000, 0.000000, 9.947523;;, + 124;3; 0.000000, 0.000000, 9.947523;;, + 125;3; 0.000000, 0.000000, 9.947523;;, + 126;3; 0.000000, 0.000000, 9.947523;;, + 127;3; 0.000000, 0.000000, 9.947523;;, + 128;3; 0.000000, 0.000000, 9.947523;;, + 129;3; 0.000000, 0.000000, 9.947523;;, + 130;3; 0.000000, 0.000000, 9.947523;;, + 131;3; 0.000000, 0.000000, 9.947523;;, + 132;3; 0.000000, 0.000000, 9.947523;;, + 133;3; 0.000000, 0.000000, 9.947523;;, + 134;3; 0.000000, 0.000000, 9.947523;;, + 135;3; 0.000000, 0.000000, 9.947523;;, + 136;3; 0.000000, 0.000000, 9.947523;;, + 137;3; 0.000000, 0.000000, 9.947523;;, + 138;3; 0.000000, 0.000000, 9.947523;;, + 139;3; 0.000000, 0.000000, 9.947523;;, + 140;3; 0.000000, 0.000000, 9.947523;;, + 141;3; 0.000000, 0.000000, 9.947523;;, + 142;3; 0.000000, 0.000000, 9.947523;;, + 143;3; 0.000000, 0.000000, 9.947523;;, + 144;3; 0.000000, 0.000000, 9.947523;;, + 145;3; 0.000000, 0.000000, 9.947523;;; + } + } + Animation { + {Skeleton_Rig} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Skeleton_Rig_Root} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Skeleton_Rig_Coccyx} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 1;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 2;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 3;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 4;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 5;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 6;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 7;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 8;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 9;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 10;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 11;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 12;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 13;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 14;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 15;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 16;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 17;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 18;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 19;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 20;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 21;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 22;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 23;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 24;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 25;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 26;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 27;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 28;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 29;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 30;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 31;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 32;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 33;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 34;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 35;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 36;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 37;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 38;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 39;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 40;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 41;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 42;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 43;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 44;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 45;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 46;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 47;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 48;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 49;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 50;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 51;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 52;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 53;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 54;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 55;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 56;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 57;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 58;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 59;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 60;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 61;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 62;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 63;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 64;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 65;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 66;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 67;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 68;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 69;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 70;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 71;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 72;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 73;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 74;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 75;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 76;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 77;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 78;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 79;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 80;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 81;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 82;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 83;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 84;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 85;4;-0.993906,-0.000000,-0.053942,-0.000000;;, + 86;4;-0.980864,-0.000000,-0.169285,-0.000000;;, + 87;4;-0.974770,-0.000000,-0.223212,-0.000000;;, + 88;4;-0.974998,-0.000000,-0.221188,-0.000000;;, + 89;4;-0.975624,-0.000000,-0.215651,-0.000000;;, + 90;4;-0.976566,-0.000000,-0.207308,-0.000000;;, + 91;4;-0.977759,-0.000000,-0.196753,-0.000000;;, + 92;4;-0.979144,-0.000000,-0.184494,-0.000000;;, + 93;4;-0.980673,-0.000000,-0.170969,-0.000000;;, + 94;4;-0.982301,-0.000000,-0.156562,-0.000000;;, + 95;4;-0.983992,-0.000000,-0.141607,-0.000000;;, + 96;4;-0.985711,-0.000000,-0.126404,-0.000000;;, + 97;4;-0.987427,-0.000000,-0.111217,-0.000000;;, + 98;4;-0.989115,-0.000000,-0.096286,-0.000000;;, + 99;4;-0.990750,-0.000000,-0.081828,-0.000000;;, + 100;4;-0.992308,-0.000000,-0.068040,-0.000000;;, + 101;4;-0.993771,-0.000000,-0.055103,-0.000000;;, + 102;4;-0.995118,-0.000000,-0.043184,-0.000000;;, + 103;4;-0.996333,-0.000000,-0.032436,-0.000000;;, + 104;4;-0.997400,-0.000000,-0.023003,-0.000000;;, + 105;4;-0.998302,-0.000000,-0.015020,-0.000000;;, + 106;4;-0.999027,-0.000000,-0.008612,-0.000000;;, + 107;4;-0.999559,-0.000000,-0.003898,-0.000000;;, + 108;4;-0.999888,-0.000000,-0.000992,-0.000000;;, + 109;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 110;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 111;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 112;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 113;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 114;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 115;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 116;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 117;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 118;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 119;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 120;4;-0.993564, 0.015628,-0.000000,-0.000000;;, + 121;4;-0.974198, 0.062625,-0.000000,-0.000000;;, + 122;4;-0.942714, 0.138986,-0.000000,-0.000000;;, + 123;4;-0.901537, 0.238820,-0.000000,-0.000000;;, + 124;4;-0.854891, 0.351920,-0.000000,-0.000000;;, + 125;4;-0.808239, 0.465086,-0.000000,-0.000000;;, + 126;4;-0.767051, 0.565085,-0.000000,-0.000000;;, + 127;4;-0.735553, 0.641638,-0.000000,-0.000000;;, + 128;4;-0.716177, 0.688784,-0.000000,-0.000000;;, + 129;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 130;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 131;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 132;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 133;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 134;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 135;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 136;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 137;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 138;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 139;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 140;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 141;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 142;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 143;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 144;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 145;4;-0.709737, 0.704467,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.012756, 7.126056, 0.000001;;, + 1;3; 0.012756, 7.126056, 0.000001;;, + 2;3; 0.012756, 7.126056, 0.000001;;, + 3;3; 0.012756, 7.126056, 0.000001;;, + 4;3; 0.012756, 7.126056, 0.000001;;, + 5;3; 0.012756, 7.126056, 0.000001;;, + 6;3; 0.012756, 7.126056, 0.000001;;, + 7;3; 0.012756, 7.126056, 0.000001;;, + 8;3; 0.012756, 7.126056, 0.000001;;, + 9;3; 0.012756, 7.126056, 0.000001;;, + 10;3; 0.012756, 7.126056, 0.000001;;, + 11;3; 0.012756, 7.126056, 0.000001;;, + 12;3; 0.012756, 7.126056, 0.000001;;, + 13;3; 0.012756, 7.126056, 0.000001;;, + 14;3; 0.012756, 7.126056, 0.000001;;, + 15;3; 0.012756, 7.126056, 0.000001;;, + 16;3; 0.012756, 7.126056, 0.000001;;, + 17;3; 0.012756, 7.126056, 0.000001;;, + 18;3; 0.012756, 7.126056, 0.000001;;, + 19;3; 0.012756, 7.126056, 0.000001;;, + 20;3; 0.012756, 7.126056, 0.000001;;, + 21;3; 0.012756, 7.126056, 0.000001;;, + 22;3; 0.012756, 7.126056, 0.000001;;, + 23;3; 0.012756, 7.126056, 0.000001;;, + 24;3; 0.012756, 7.126056, 0.000001;;, + 25;3; 0.012756, 7.117846, 0.000001;;, + 26;3; 0.012756, 7.093557, 0.000001;;, + 27;3; 0.012756, 7.056553, 0.000001;;, + 28;3; 0.012756, 7.014584, 0.000001;;, + 29;3; 0.012756, 6.977582, 0.000001;;, + 30;3; 0.012756, 6.953297, 0.000001;;, + 31;3; 0.012756, 6.945087, 0.000001;;, + 32;3; 0.012756, 6.956266, 0.000001;;, + 33;3; 0.012756, 6.988801, 0.000001;;, + 34;3; 0.012756, 7.035572, 0.000001;;, + 35;3; 0.012756, 7.082343, 0.000001;;, + 36;3; 0.012756, 7.114877, 0.000001;;, + 37;3; 0.012756, 7.126056, 0.000001;;, + 38;3; 0.012756, 7.114877, 0.000001;;, + 39;3; 0.012756, 7.082343, 0.000001;;, + 40;3; 0.012756, 7.035572, 0.000001;;, + 41;3; 0.012756, 6.988801, 0.000001;;, + 42;3; 0.012756, 6.956266, 0.000001;;, + 43;3; 0.012756, 6.945087, 0.000001;;, + 44;3; 0.012756, 6.956266, 0.000001;;, + 45;3; 0.012756, 6.988799, 0.000001;;, + 46;3; 0.012756, 7.035567, 0.000001;;, + 47;3; 0.012756, 7.082338, 0.000001;;, + 48;3; 0.012756, 7.114875, 0.000001;;, + 49;3; 0.012756, 7.126056, 0.000001;;, + 50;3; 0.012756, 7.126056, 0.000001;;, + 51;3; 0.012756, 7.126056, 0.000001;;, + 52;3; 0.012756, 7.126056, 0.000001;;, + 53;3; 0.012756, 7.126056, 0.000001;;, + 54;3; 0.012756, 7.126056, 0.000001;;, + 55;3; 0.012756, 7.126056, 0.000001;;, + 56;3; 0.012756, 7.126056, 0.000001;;, + 57;3; 0.012756, 7.126056, 0.000001;;, + 58;3; 0.012756, 7.126056, 0.000001;;, + 59;3; 0.012756, 7.126056, 0.000001;;, + 60;3; 0.012756, 7.126056, 0.000001;;, + 61;3; 0.012756, 7.126056, 0.000001;;, + 62;3; 0.012756, 7.126056, 0.000001;;, + 63;3; 0.012756, 7.126056, 0.000001;;, + 64;3; 0.012756, 7.126056, 0.000001;;, + 65;3; 0.012756, 7.126056, 0.000001;;, + 66;3; 0.012756, 7.126056, 0.000001;;, + 67;3; 0.012756, 7.126056, 0.000001;;, + 68;3; 0.012756, 7.126056, 0.000001;;, + 69;3; 0.012756, 7.126056, 0.000001;;, + 70;3; 0.012756, 7.126056, 0.000001;;, + 71;3; 0.012756, 7.126056, 0.000001;;, + 72;3; 0.012756, 7.126056, 0.000001;;, + 73;3; 0.012756, 7.126056, 0.000001;;, + 74;3; 0.012756, 7.126056, 0.000001;;, + 75;3; 0.012756, 7.126056, 0.000001;;, + 76;3; 0.012756, 7.126056, 0.000001;;, + 77;3; 0.012756, 7.126056, 0.000001;;, + 78;3; 0.012756, 7.126056, 0.000001;;, + 79;3; 0.012756, 7.126056, 0.000001;;, + 80;3; 0.012756, 7.126056, 0.000001;;, + 81;3; 0.012756, 7.126056, 0.000001;;, + 82;3; 0.012756, 7.126056, 0.000001;;, + 83;3; 0.012756, 7.126056, 0.000001;;, + 84;3; 0.012756, 7.126056, 0.000001;;, + 85;3; 0.012756,10.137318, 0.000001;;, + 86;3; 0.012756,10.921167, 0.000001;;, + 87;3; 0.012756,11.126057, 0.000002;;, + 88;3; 0.012756,11.111126, 0.000002;;, + 89;3; 0.012756,11.016350, 0.000002;;, + 90;3; 0.012756,10.840691, 0.000001;;, + 91;3; 0.012756,10.586319, 0.000001;;, + 92;3; 0.012756,10.259875, 0.000001;;, + 93;3; 0.012756, 9.873508, 0.000001;;, + 94;3; 0.012756, 9.445189, 0.000001;;, + 95;3; 0.012756, 8.997793, 0.000001;;, + 96;3; 0.012756, 8.556813, 0.000001;;, + 97;3; 0.012756, 8.147202, 0.000001;;, + 98;3; 0.012756, 7.790392, 0.000001;;, + 99;3; 0.012756, 7.502371, 0.000001;;, + 100;3; 0.012756, 7.293185, 0.000001;;, + 101;3; 0.012756, 7.167550, 0.000001;;, + 102;3; 0.012756, 7.126056, 0.000001;;, + 103;3; 0.012756, 7.126056, 0.000001;;, + 104;3; 0.012756, 7.126056, 0.000001;;, + 105;3; 0.012756, 7.126056, 0.000001;;, + 106;3; 0.012756, 7.126056, 0.000001;;, + 107;3; 0.012756, 7.126056, 0.000001;;, + 108;3; 0.012756, 7.126056, 0.000001;;, + 109;3; 0.012756, 7.126056, 0.000001;;, + 110;3; 0.012756, 7.126056, 0.000001;;, + 111;3; 0.012756, 7.126056, 0.000001;;, + 112;3; 0.012756, 7.126056, 0.000001;;, + 113;3; 0.012756, 7.126056, 0.000001;;, + 114;3; 0.012756, 7.126056, 0.000001;;, + 115;3; 0.012756, 7.126056, 0.000001;;, + 116;3; 0.012756, 7.126056, 0.000001;;, + 117;3; 0.012756, 8.008668, 0.000001;;, + 118;3; 0.012756, 9.638206, 0.000001;;, + 119;3; 0.012756,10.386742, 0.000001;;, + 120;3; 0.012756,10.215348,-0.141229;;, + 121;3; 0.012756, 9.759109,-0.572056;;, + 122;3; 0.012756, 9.081751,-1.085306;;, + 123;3; 0.012756, 8.227430,-1.498350;;, + 124;3; 0.012756, 7.229108,-1.796161;;, + 125;3; 0.012756, 6.113598,-2.004171;;, + 126;3; 0.012756, 4.905734,-2.144737;;, + 127;3; 0.012756, 3.634414,-2.233589;;, + 128;3; 0.012756, 2.350448,-2.281648;;, + 129;3; 0.012756, 1.281430,-2.296675;;, + 130;3; 0.012756, 1.281430,-2.296675;;, + 131;3; 0.012756, 1.281430,-2.296675;;, + 132;3; 0.012756, 1.281430,-2.296675;;, + 133;3; 0.012756, 1.281430,-2.296675;;, + 134;3; 0.012756, 1.281430,-2.296675;;, + 135;3; 0.012756, 1.281430,-2.296675;;, + 136;3; 0.012756, 1.281430,-2.296675;;, + 137;3; 0.012756, 1.281430,-2.296675;;, + 138;3; 0.012756, 1.281430,-2.296675;;, + 139;3; 0.012756, 1.281430,-2.296675;;, + 140;3; 0.012756, 1.281430,-2.296675;;, + 141;3; 0.012756, 1.281430,-2.296675;;, + 142;3; 0.012756, 1.281430,-2.296675;;, + 143;3; 0.012756, 1.281430,-2.296675;;, + 144;3; 0.012756, 1.281430,-2.296675;;, + 145;3; 0.012756, 1.281430,-2.296675;;; + } + } + Animation { + {Skeleton_Rig_Chest} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 1;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 2;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 3;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 4;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 5;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 6;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 7;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 8;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 9;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 10;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 11;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 12;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 13;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 14;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 15;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 16;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 17;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 18;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 19;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 20;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 21;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 22;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 23;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 24;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 25;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 26;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 27;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 28;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 29;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 30;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 31;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 32;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 33;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 34;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 35;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 36;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 37;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 38;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 39;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 40;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 41;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 42;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 43;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 44;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 45;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 46;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 47;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 48;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 49;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 50;4;-0.999140,-0.000000,-0.007541,-0.000000;;, + 51;4;-0.996326, 0.000000,-0.030923,-0.000000;;, + 52;4;-0.991288, 0.000000,-0.069883,-0.000000;;, + 53;4;-0.984003, 0.000000,-0.121422,-0.000000;;, + 54;4;-0.974815, 0.000000,-0.179753,-0.000000;;, + 55;4;-0.964356, 0.000000,-0.238067,-0.000000;;, + 56;4;-0.953307, 0.000000,-0.290872,-0.000000;;, + 57;4;-0.942195, 0.000000,-0.335066,-0.000000;;, + 58;4;-0.924155,-0.000000,-0.383533,-0.000000;;, + 59;4;-0.912569,-0.000000,-0.408922,-0.000000;;, + 60;4;-0.917970,-0.000000,-0.383662,-0.000000;;, + 61;4;-0.933688,-0.000000,-0.310161,-0.000000;;, + 62;4;-0.956284,-0.000000,-0.204506,-0.000000;;, + 63;4;-0.978880,-0.000000,-0.098827,-0.000000;;, + 64;4;-0.994599,-0.000000,-0.025282,-0.000000;;, + 65;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 66;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 67;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 68;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 69;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 70;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 71;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 72;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 73;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 74;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 75;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 76;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 77;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 78;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 79;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 80;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 81;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 82;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 83;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 84;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 85;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 86;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 87;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 88;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 89;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 90;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 91;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 92;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 93;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 94;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 95;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 96;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 97;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 98;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 99;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 100;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 101;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 102;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 103;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 104;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 105;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 106;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 107;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 108;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 109;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 110;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 111;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 112;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 113;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 114;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 115;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 116;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 117;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 118;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 119;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 120;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 121;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 122;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 123;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 124;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 125;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 126;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 127;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 128;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 129;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 130;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 131;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 132;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 133;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 134;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 135;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 136;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 137;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 138;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 139;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 140;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 141;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 142;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 143;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 144;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 145;4;-1.000000,-0.000000,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-0.000000, 0.675508, 0.000000;;, + 1;3;-0.000000, 0.675508, 0.000000;;, + 2;3;-0.000000, 0.675508, 0.000000;;, + 3;3;-0.000000, 0.675508, 0.000000;;, + 4;3;-0.000000, 0.675508, 0.000000;;, + 5;3;-0.000000, 0.675508, 0.000000;;, + 6;3;-0.000000, 0.675508, 0.000000;;, + 7;3;-0.000000, 0.675508, 0.000000;;, + 8;3;-0.000000, 0.675508, 0.000000;;, + 9;3;-0.000000, 0.675508, 0.000000;;, + 10;3;-0.000000, 0.675508, 0.000000;;, + 11;3;-0.000000, 0.675508, 0.000000;;, + 12;3;-0.000000, 0.675508, 0.000000;;, + 13;3;-0.000000, 0.675508, 0.000000;;, + 14;3;-0.000000, 0.675508, 0.000000;;, + 15;3;-0.000000, 0.675508, 0.000000;;, + 16;3;-0.000000, 0.675508, 0.000000;;, + 17;3;-0.000000, 0.675508, 0.000000;;, + 18;3;-0.000000, 0.675508, 0.000000;;, + 19;3;-0.000000, 0.675508, 0.000000;;, + 20;3;-0.000000, 0.675508, 0.000000;;, + 21;3;-0.000000, 0.675508, 0.000000;;, + 22;3;-0.000000, 0.675508, 0.000000;;, + 23;3;-0.000000, 0.675508, 0.000000;;, + 24;3;-0.000000, 0.675508, 0.000000;;, + 25;3;-0.000000, 0.675508, 0.000000;;, + 26;3;-0.000000, 0.675508, 0.000000;;, + 27;3;-0.000000, 0.675508, 0.000000;;, + 28;3;-0.000000, 0.675508, 0.000000;;, + 29;3;-0.000000, 0.675508, 0.000000;;, + 30;3;-0.000000, 0.675508,-0.000000;;, + 31;3;-0.000000, 0.675508,-0.000000;;, + 32;3;-0.000000, 0.675508, 0.000000;;, + 33;3;-0.000000, 0.675508,-0.000000;;, + 34;3;-0.000000, 0.675508,-0.000000;;, + 35;3;-0.000000, 0.675508, 0.000000;;, + 36;3;-0.000000, 0.675508, 0.000000;;, + 37;3;-0.000000, 0.675508, 0.000000;;, + 38;3;-0.000000, 0.675508, 0.000000;;, + 39;3;-0.000000, 0.675508, 0.000000;;, + 40;3;-0.000000, 0.675508,-0.000000;;, + 41;3;-0.000000, 0.675508,-0.000000;;, + 42;3;-0.000000, 0.675508, 0.000000;;, + 43;3;-0.000000, 0.675508,-0.000000;;, + 44;3;-0.000000, 0.675508, 0.000000;;, + 45;3;-0.000000, 0.675508, 0.000000;;, + 46;3;-0.000000, 0.675508, 0.000000;;, + 47;3;-0.000000, 0.675508, 0.000000;;, + 48;3;-0.000000, 0.675508, 0.000000;;, + 49;3;-0.000000, 0.675508, 0.000000;;, + 50;3;-0.000000, 0.675508, 0.000000;;, + 51;3;-0.000000, 0.675508, 0.000000;;, + 52;3;-0.000000, 0.675508, 0.000000;;, + 53;3;-0.000000, 0.675508, 0.000000;;, + 54;3;-0.000000, 0.675508, 0.000000;;, + 55;3;-0.000000, 0.675508, 0.000000;;, + 56;3;-0.000000, 0.675508, 0.000000;;, + 57;3;-0.000000, 0.675508, 0.000000;;, + 58;3;-0.000000, 0.675508, 0.000000;;, + 59;3;-0.000000, 0.675508, 0.000000;;, + 60;3;-0.000000, 0.675508, 0.000000;;, + 61;3;-0.000000, 0.675508, 0.000000;;, + 62;3;-0.000000, 0.675508, 0.000000;;, + 63;3;-0.000000, 0.675508, 0.000000;;, + 64;3;-0.000000, 0.675508, 0.000000;;, + 65;3;-0.000000, 0.675508, 0.000000;;, + 66;3;-0.000000, 0.675508, 0.000000;;, + 67;3;-0.000000, 0.675508, 0.000000;;, + 68;3;-0.000000, 0.675508, 0.000000;;, + 69;3;-0.000000, 0.675508, 0.000000;;, + 70;3;-0.000000, 0.675508, 0.000000;;, + 71;3;-0.000000, 0.675508, 0.000000;;, + 72;3;-0.000000, 0.675508, 0.000000;;, + 73;3;-0.000000, 0.675508, 0.000000;;, + 74;3;-0.000000, 0.675508, 0.000000;;, + 75;3;-0.000000, 0.675508, 0.000000;;, + 76;3;-0.000000, 0.675508, 0.000000;;, + 77;3;-0.000000, 0.675508, 0.000000;;, + 78;3;-0.000000, 0.675508, 0.000000;;, + 79;3;-0.000000, 0.675508, 0.000000;;, + 80;3;-0.000000, 0.675508, 0.000000;;, + 81;3;-0.000000, 0.675508, 0.000000;;, + 82;3;-0.000000, 0.675508, 0.000000;;, + 83;3;-0.000000, 0.675508, 0.000000;;, + 84;3;-0.000000, 0.675508, 0.000000;;, + 85;3; 0.000000, 0.675508,-0.000000;;, + 86;3; 0.000000, 0.675508, 0.000000;;, + 87;3; 0.000000, 0.675508,-0.000000;;, + 88;3;-0.000000, 0.675508,-0.000000;;, + 89;3;-0.000000, 0.675508, 0.000000;;, + 90;3;-0.000000, 0.675507, 0.000000;;, + 91;3; 0.000000, 0.675508,-0.000000;;, + 92;3;-0.000000, 0.675507,-0.000000;;, + 93;3; 0.000000, 0.675508, 0.000000;;, + 94;3; 0.000000, 0.675508,-0.000000;;, + 95;3; 0.000000, 0.675508,-0.000000;;, + 96;3;-0.000000, 0.675507,-0.000000;;, + 97;3; 0.000000, 0.675508, 0.000000;;, + 98;3; 0.000000, 0.675508,-0.000000;;, + 99;3; 0.000000, 0.675508, 0.000000;;, + 100;3; 0.000000, 0.675508,-0.000000;;, + 101;3;-0.000000, 0.675508, 0.000000;;, + 102;3; 0.000000, 0.675508,-0.000000;;, + 103;3; 0.000000, 0.675508,-0.000000;;, + 104;3; 0.000000, 0.675507,-0.000000;;, + 105;3;-0.000000, 0.675508, 0.000000;;, + 106;3;-0.000000, 0.675508,-0.000000;;, + 107;3;-0.000000, 0.675508,-0.000000;;, + 108;3; 0.000000, 0.675508,-0.000000;;, + 109;3;-0.000000, 0.675508, 0.000000;;, + 110;3;-0.000000, 0.675508, 0.000000;;, + 111;3;-0.000000, 0.675508, 0.000000;;, + 112;3;-0.000000, 0.675508, 0.000000;;, + 113;3;-0.000000, 0.675508, 0.000000;;, + 114;3;-0.000000, 0.675508, 0.000000;;, + 115;3;-0.000000, 0.675508, 0.000000;;, + 116;3;-0.000000, 0.675508, 0.000000;;, + 117;3;-0.000000, 0.675508,-0.000000;;, + 118;3;-0.000000, 0.675508, 0.000000;;, + 119;3;-0.000000, 0.675508, 0.000000;;, + 120;3; 0.000000, 0.675508, 0.000000;;, + 121;3; 0.000000, 0.675508, 0.000000;;, + 122;3;-0.000000, 0.675507, 0.000000;;, + 123;3;-0.000000, 0.675508, 0.000000;;, + 124;3;-0.000000, 0.675508,-0.000000;;, + 125;3;-0.000000, 0.675508,-0.000000;;, + 126;3; 0.000000, 0.675508, 0.000000;;, + 127;3; 0.000000, 0.675508,-0.000000;;, + 128;3; 0.000000, 0.675508, 0.000000;;, + 129;3;-0.000000, 0.675508, 0.000000;;, + 130;3;-0.000000, 0.675508, 0.000000;;, + 131;3;-0.000000, 0.675508, 0.000000;;, + 132;3;-0.000000, 0.675508, 0.000000;;, + 133;3;-0.000000, 0.675508, 0.000000;;, + 134;3;-0.000000, 0.675508, 0.000000;;, + 135;3;-0.000000, 0.675508, 0.000000;;, + 136;3;-0.000000, 0.675508, 0.000000;;, + 137;3;-0.000000, 0.675508, 0.000000;;, + 138;3;-0.000000, 0.675508, 0.000000;;, + 139;3;-0.000000, 0.675508, 0.000000;;, + 140;3;-0.000000, 0.675508, 0.000000;;, + 141;3;-0.000000, 0.675508, 0.000000;;, + 142;3;-0.000000, 0.675508, 0.000000;;, + 143;3;-0.000000, 0.675508, 0.000000;;, + 144;3;-0.000000, 0.675508, 0.000000;;, + 145;3;-0.000000, 0.675508, 0.000000;;; + } + } + Animation { + {Skeleton_Rig_Hand_R} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 1;4;-0.699516,-0.714605,-0.000000, 0.000000;;, + 2;4;-0.697257,-0.716782,-0.000000, 0.000000;;, + 3;4;-0.694010,-0.719913,-0.000000, 0.000000;;, + 4;4;-0.690762,-0.723044,-0.000000, 0.000000;;, + 5;4;-0.688503,-0.725221,-0.000000, 0.000000;;, + 6;4;-0.687727,-0.725969,-0.000000, 0.000000;;, + 7;4;-0.688499,-0.725231,-0.000000, 0.000000;;, + 8;4;-0.690825,-0.723003,-0.000000, 0.000000;;, + 9;4;-0.694216,-0.719745,-0.000000, 0.000000;;, + 10;4;-0.697644,-0.716435,-0.000000, 0.000000;;, + 11;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 12;4;-0.702562,-0.711620,-0.000000, 0.000000;;, + 13;4;-0.705030,-0.709170,-0.000000, 0.000000;;, + 14;4;-0.707504,-0.706699,-0.000000, 0.000000;;, + 15;4;-0.709703,-0.704493,-0.000000, 0.000000;;, + 16;4;-0.711359,-0.702825,-0.000000, 0.000000;;, + 17;4;-0.712336,-0.701838,-0.000000, 0.000000;;, + 18;4;-0.712644,-0.701526,-0.000000, 0.000000;;, + 19;4;-0.711881,-0.702287,-0.000000, 0.000000;;, + 20;4;-0.709660,-0.704504,-0.000000, 0.000000;;, + 21;4;-0.706468,-0.707691,-0.000000, 0.000000;;, + 22;4;-0.703276,-0.710878,-0.000000, 0.000000;;, + 23;4;-0.701055,-0.713095,-0.000000, 0.000000;;, + 24;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 25;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 26;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 27;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 28;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 29;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 30;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 31;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 32;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 33;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 34;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 35;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 36;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 37;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 38;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 39;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 40;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 41;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 42;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 43;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 44;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 45;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 46;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 47;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 48;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 49;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 50;4;-0.698992,-0.710435, 0.010689, 0.010385;;, + 51;4;-0.695104,-0.700218, 0.042590, 0.041376;;, + 52;4;-0.688968,-0.684118, 0.092799, 0.090154;;, + 53;4;-0.681465,-0.664476, 0.153949, 0.149561;;, + 54;4;-0.673915,-0.644785, 0.215094, 0.208962;;, + 55;4;-0.667645,-0.628545, 0.265290, 0.257728;;, + 56;4;-0.663553,-0.618115, 0.297179, 0.288708;;, + 57;4;-0.661997,-0.614432, 0.307864, 0.299088;;, + 58;4;-0.638853,-0.636661, 0.300921, 0.304621;;, + 59;4;-0.578821,-0.695273, 0.277994, 0.314416;;, + 60;4;-0.518885,-0.753973, 0.242178, 0.311567;;, + 61;4;-0.495978,-0.776434, 0.202622, 0.285105;;, + 62;4;-0.501480,-0.775446, 0.134635, 0.203963;;, + 63;4;-0.518315,-0.772142, 0.024664, 0.058295;;, + 64;4;-0.541747,-0.766893,-0.072374,-0.074688;;, + 65;4;-0.563906,-0.760992,-0.107710,-0.123800;;, + 66;4;-0.587540,-0.753593,-0.101043,-0.116139;;, + 67;4;-0.617498,-0.743514,-0.081659,-0.093863;;, + 68;4;-0.649541,-0.732278,-0.053823,-0.061868;;, + 69;4;-0.677059,-0.722377,-0.026004,-0.029891;;, + 70;4;-0.694579,-0.715968,-0.006652,-0.007646;;, + 71;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 72;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 73;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 74;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 75;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 76;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 77;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 78;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 79;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 80;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 81;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 82;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 83;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 84;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 85;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 86;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 87;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 88;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 89;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 90;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 91;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 92;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 93;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 94;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 95;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 96;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 97;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 98;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 99;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 100;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 101;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 102;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 103;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 104;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 105;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 106;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 107;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 108;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 109;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 110;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 111;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 112;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 113;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 114;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 115;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 116;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 117;4;-0.697222,-0.710727,-0.006796,-0.007031;;, + 118;4;-0.687949,-0.701274,-0.027318,-0.028264;;, + 119;4;-0.672597,-0.685625,-0.061279,-0.063404;;, + 120;4;-0.651688,-0.664311,-0.107523,-0.111254;;, + 121;4;-0.626239,-0.638369,-0.163797,-0.169482;;, + 122;4;-0.597790,-0.609369,-0.226704,-0.234574;;, + 123;4;-0.568287,-0.579295,-0.291950,-0.302086;;, + 124;4;-0.539834,-0.550291,-0.354896,-0.367215;;, + 125;4;-0.514380,-0.524343,-0.411235,-0.425508;;, + 126;4;-0.493464,-0.503022,-0.457555,-0.473432;;, + 127;4;-0.478106,-0.487367,-0.491584,-0.508638;;, + 128;4;-0.468828,-0.477910,-0.512152,-0.529917;;, + 129;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 130;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 131;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 132;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 133;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 134;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 135;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 136;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 137;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 138;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 139;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 140;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 141;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 142;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 143;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 144;4;-0.465757,-0.474779,-0.518965,-0.536965;;, + 145;4;-0.465757,-0.474779,-0.518965,-0.536965;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 3.174013, 4.607169, 0.050269;;, + 1;3; 3.174013, 4.607169, 0.050269;;, + 2;3; 3.174013, 4.607169, 0.050269;;, + 3;3; 3.174013, 4.607169, 0.050269;;, + 4;3; 3.174013, 4.607169, 0.050269;;, + 5;3; 3.174013, 4.607169, 0.050269;;, + 6;3; 3.174013, 4.607169, 0.050269;;, + 7;3; 3.174013, 4.607169, 0.050269;;, + 8;3; 3.174013, 4.607169, 0.050269;;, + 9;3; 3.174013, 4.607169, 0.050269;;, + 10;3; 3.174013, 4.607169, 0.050269;;, + 11;3; 3.174013, 4.607169, 0.050269;;, + 12;3; 3.174013, 4.607169, 0.050269;;, + 13;3; 3.174013, 4.607169, 0.050269;;, + 14;3; 3.174013, 4.607169, 0.050269;;, + 15;3; 3.174013, 4.607169, 0.050269;;, + 16;3; 3.174013, 4.607169, 0.050269;;, + 17;3; 3.174013, 4.607169, 0.050269;;, + 18;3; 3.174013, 4.607169, 0.050269;;, + 19;3; 3.174013, 4.607169, 0.050269;;, + 20;3; 3.174013, 4.607169, 0.050269;;, + 21;3; 3.174013, 4.607169, 0.050269;;, + 22;3; 3.174013, 4.607169, 0.050269;;, + 23;3; 3.174013, 4.607169, 0.050269;;, + 24;3; 3.174013, 4.607169, 0.050269;;, + 25;3; 3.174013, 4.607169, 0.050269;;, + 26;3; 3.174013, 4.607169, 0.050269;;, + 27;3; 3.174013, 4.607169, 0.050269;;, + 28;3; 3.174013, 4.607169, 0.050269;;, + 29;3; 3.174013, 4.607169, 0.050269;;, + 30;3; 3.174013, 4.607169, 0.050269;;, + 31;3; 3.174013, 4.607169, 0.050269;;, + 32;3; 3.174013, 4.607169, 0.050269;;, + 33;3; 3.174013, 4.607169, 0.050269;;, + 34;3; 3.174013, 4.607169, 0.050269;;, + 35;3; 3.174013, 4.607169, 0.050269;;, + 36;3; 3.174013, 4.607169, 0.050269;;, + 37;3; 3.174013, 4.607169, 0.050269;;, + 38;3; 3.174013, 4.607169, 0.050269;;, + 39;3; 3.174013, 4.607169, 0.050269;;, + 40;3; 3.174013, 4.607169, 0.050269;;, + 41;3; 3.174013, 4.607169, 0.050269;;, + 42;3; 3.174013, 4.607169, 0.050269;;, + 43;3; 3.174013, 4.607169, 0.050269;;, + 44;3; 3.174013, 4.607169, 0.050269;;, + 45;3; 3.174013, 4.607169, 0.050269;;, + 46;3; 3.174013, 4.607169, 0.050269;;, + 47;3; 3.174013, 4.607169, 0.050269;;, + 48;3; 3.174013, 4.607169, 0.050269;;, + 49;3; 3.174013, 4.607169, 0.050269;;, + 50;3; 3.174013, 4.607169, 0.050269;;, + 51;3; 3.174013, 4.607169, 0.050269;;, + 52;3; 3.174013, 4.607169, 0.050269;;, + 53;3; 3.174013, 4.607169, 0.050269;;, + 54;3; 3.174013, 4.607169, 0.050269;;, + 55;3; 3.174013, 4.607169, 0.050269;;, + 56;3; 3.174013, 4.607169, 0.050270;;, + 57;3; 3.174014, 4.607169, 0.050270;;, + 58;3; 3.174013, 4.607169, 0.050270;;, + 59;3; 3.174013, 4.607169, 0.050269;;, + 60;3; 3.174013, 4.607169, 0.050269;;, + 61;3; 3.174013, 4.607169, 0.050269;;, + 62;3; 3.174013, 4.607169, 0.050269;;, + 63;3; 3.174013, 4.607169, 0.050269;;, + 64;3; 3.174013, 4.607169, 0.050269;;, + 65;3; 3.174013, 4.607169, 0.050269;;, + 66;3; 3.174013, 4.607169, 0.050269;;, + 67;3; 3.174013, 4.607169, 0.050269;;, + 68;3; 3.174013, 4.607169, 0.050269;;, + 69;3; 3.174013, 4.607169, 0.050269;;, + 70;3; 3.174013, 4.607169, 0.050269;;, + 71;3; 3.174013, 4.607169, 0.050269;;, + 72;3; 3.174013, 4.607169, 0.050269;;, + 73;3; 3.174013, 4.607169, 0.050269;;, + 74;3; 3.174013, 4.607169, 0.050269;;, + 75;3; 3.174013, 4.607169, 0.050269;;, + 76;3; 3.174013, 4.607169, 0.050269;;, + 77;3; 3.174013, 4.607169, 0.050269;;, + 78;3; 3.174013, 4.607169, 0.050269;;, + 79;3; 3.174013, 4.607169, 0.050269;;, + 80;3; 3.174013, 4.607169, 0.050269;;, + 81;3; 3.174013, 4.607169, 0.050269;;, + 82;3; 3.174013, 4.607169, 0.050269;;, + 83;3; 3.174013, 4.607169, 0.050269;;, + 84;3; 3.174013, 4.607169, 0.050269;;, + 85;3; 3.174013, 4.607169, 0.050269;;, + 86;3; 3.174013, 4.607169, 0.050269;;, + 87;3; 3.174013, 4.607170, 0.050269;;, + 88;3; 3.174014, 4.607169, 0.050269;;, + 89;3; 3.174014, 4.607170, 0.050269;;, + 90;3; 3.174014, 4.607169, 0.050269;;, + 91;3; 3.174013, 4.607168, 0.050269;;, + 92;3; 3.174013, 4.607170, 0.050269;;, + 93;3; 3.174013, 4.607169, 0.050269;;, + 94;3; 3.174013, 4.607169, 0.050269;;, + 95;3; 3.174013, 4.607168, 0.050269;;, + 96;3; 3.174013, 4.607168, 0.050269;;, + 97;3; 3.174013, 4.607169, 0.050269;;, + 98;3; 3.174013, 4.607168, 0.050269;;, + 99;3; 3.174013, 4.607169, 0.050269;;, + 100;3; 3.174013, 4.607170, 0.050269;;, + 101;3; 3.174013, 4.607169, 0.050269;;, + 102;3; 3.174013, 4.607170, 0.050269;;, + 103;3; 3.174013, 4.607169, 0.050269;;, + 104;3; 3.174013, 4.607169, 0.050269;;, + 105;3; 3.174013, 4.607169, 0.050269;;, + 106;3; 3.174013, 4.607169, 0.050269;;, + 107;3; 3.174013, 4.607169, 0.050269;;, + 108;3; 3.174013, 4.607169, 0.050269;;, + 109;3; 3.174013, 4.607169, 0.050269;;, + 110;3; 3.174013, 4.607169, 0.050269;;, + 111;3; 3.174013, 4.607169, 0.050269;;, + 112;3; 3.174013, 4.607169, 0.050269;;, + 113;3; 3.174013, 4.607169, 0.050269;;, + 114;3; 3.174013, 4.607169, 0.050269;;, + 115;3; 3.174013, 4.607169, 0.050269;;, + 116;3; 3.174013, 4.607169, 0.050269;;, + 117;3; 3.174013, 4.607169, 0.050269;;, + 118;3; 3.174013, 4.607169, 0.050269;;, + 119;3; 3.174013, 4.607169, 0.050269;;, + 120;3; 3.174014, 4.607171, 0.050269;;, + 121;3; 3.174013, 4.607170, 0.050269;;, + 122;3; 3.174013, 4.607169, 0.050269;;, + 123;3; 3.174013, 4.607169, 0.050269;;, + 124;3; 3.174013, 4.607170, 0.050269;;, + 125;3; 3.174013, 4.607170, 0.050269;;, + 126;3; 3.174013, 4.607169, 0.050270;;, + 127;3; 3.174013, 4.607169, 0.050270;;, + 128;3; 3.174013, 4.607169, 0.050270;;, + 129;3; 3.174013, 4.607170, 0.050269;;, + 130;3; 3.174013, 4.607170, 0.050269;;, + 131;3; 3.174013, 4.607170, 0.050269;;, + 132;3; 3.174013, 4.607170, 0.050269;;, + 133;3; 3.174013, 4.607170, 0.050269;;, + 134;3; 3.174013, 4.607170, 0.050269;;, + 135;3; 3.174013, 4.607170, 0.050269;;, + 136;3; 3.174013, 4.607170, 0.050269;;, + 137;3; 3.174013, 4.607170, 0.050269;;, + 138;3; 3.174013, 4.607170, 0.050269;;, + 139;3; 3.174013, 4.607170, 0.050269;;, + 140;3; 3.174013, 4.607170, 0.050269;;, + 141;3; 3.174013, 4.607170, 0.050269;;, + 142;3; 3.174013, 4.607170, 0.050269;;, + 143;3; 3.174013, 4.607170, 0.050269;;, + 144;3; 3.174013, 4.607170, 0.050269;;, + 145;3; 3.174013, 4.607170, 0.050269;;; + } + } + Animation { + {Skeleton_Rig_Head} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 1;4;-0.999998, 0.000000,-0.000000, 0.000539;;, + 2;4;-0.999991, 0.000000,-0.000000, 0.002108;;, + 3;4;-0.999981, 0.000000,-0.000000, 0.004363;;, + 4;4;-0.999971, 0.000000,-0.000000, 0.006619;;, + 5;4;-0.999964, 0.000000,-0.000000, 0.008187;;, + 6;4;-0.999962, 0.000000,-0.000000, 0.008726;;, + 7;4;-0.999965, 0.000000,-0.000000, 0.008192;;, + 8;4;-0.999975, 0.000000,-0.000000, 0.006582;;, + 9;4;-0.999987, 0.000000,-0.000000, 0.004231;;, + 10;4;-0.999997, 0.000000,-0.000000, 0.001848;;, + 11;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 12;4;-0.999998,-0.000000,-0.000000,-0.001594;;, + 13;4;-0.999993,-0.000000,-0.000000,-0.003332;;, + 14;4;-0.999985,-0.000000,-0.000000,-0.005080;;, + 15;4;-0.999977,-0.000000,-0.000000,-0.006638;;, + 16;4;-0.999969,-0.000000,-0.000000,-0.007813;;, + 17;4;-0.999964,-0.000000,-0.000000,-0.008507;;, + 18;4;-0.999962,-0.000000,-0.000000,-0.008726;;, + 19;4;-0.999964,-0.000000,-0.000000,-0.008187;;, + 20;4;-0.999971,-0.000000,-0.000000,-0.006619;;, + 21;4;-0.999981,-0.000000,-0.000000,-0.004363;;, + 22;4;-0.999991,-0.000000,-0.000000,-0.002108;;, + 23;4;-0.999998,-0.000000,-0.000000,-0.000539;;, + 24;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 50;4;-0.998021,-0.001529, 0.011439, 0.000553;;, + 51;4;-0.992115,-0.006093, 0.045581, 0.002204;;, + 52;4;-0.982817,-0.013277, 0.099323, 0.004804;;, + 53;4;-0.971491,-0.022029, 0.164781, 0.007971;;, + 54;4;-0.960165,-0.030781, 0.230234, 0.011137;;, + 55;4;-0.950867,-0.037966, 0.283963, 0.013737;;, + 56;4;-0.944961,-0.042530, 0.318094, 0.015388;;, + 57;4;-0.942982,-0.044059, 0.329528, 0.015941;;, + 58;4;-0.944961,-0.042530, 0.318094, 0.015388;;, + 59;4;-0.950867,-0.037966, 0.283964, 0.013737;;, + 60;4;-0.960165,-0.030781, 0.230234, 0.011137;;, + 61;4;-0.971491,-0.022029, 0.164781, 0.007971;;, + 62;4;-0.982817,-0.013277, 0.099323, 0.004804;;, + 63;4;-0.992115,-0.006093, 0.045581, 0.002204;;, + 64;4;-0.998021,-0.001529, 0.011439, 0.000553;;, + 65;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 85;4;-0.993813, 0.000000, 0.054345, 0.000000;;, + 86;4;-0.980575, 0.000000, 0.170546, 0.000000;;, + 87;4;-0.974389, 0.000000, 0.224871, 0.000000;;, + 88;4;-0.974640, 0.000000, 0.222661, 0.000000;;, + 89;4;-0.975400, 0.000000, 0.215982, 0.000000;;, + 90;4;-0.976665, 0.000000, 0.204870, 0.000000;;, + 91;4;-0.978409, 0.000000, 0.189557, 0.000000;;, + 92;4;-0.980575, 0.000000, 0.170529, 0.000000;;, + 93;4;-0.983078, 0.000000, 0.148555, 0.000000;;, + 94;4;-0.985797, 0.000000, 0.124680, 0.000000;;, + 95;4;-0.988592, 0.000000, 0.100146, 0.000000;;, + 96;4;-0.991311, 0.000000, 0.076275, 0.000000;;, + 97;4;-0.993813, 0.000000, 0.054308, 0.000000;;, + 98;4;-0.995980, 0.000000, 0.035290, 0.000000;;, + 99;4;-0.997723, 0.000000, 0.019986, 0.000000;;, + 100;4;-0.998988, 0.000000, 0.008882, 0.000000;;, + 101;4;-0.999749, 0.000000, 0.002208, 0.000000;;, + 102;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 117;4;-0.999880,-0.001768,-0.000000, 0.000000;;, + 118;4;-0.999517,-0.007111,-0.000000, 0.000000;;, + 119;4;-0.998917,-0.015956,-0.000000, 0.000000;;, + 120;4;-0.998099,-0.028003,-0.000000, 0.000000;;, + 121;4;-0.997104,-0.042667,-0.000000, 0.000000;;, + 122;4;-0.995991,-0.059060,-0.000000, 0.000000;;, + 123;4;-0.994838,-0.076059,-0.000000, 0.000000;;, + 124;4;-0.993725,-0.092452,-0.000000, 0.000000;;, + 125;4;-0.992730,-0.107116,-0.000000, 0.000000;;, + 126;4;-0.991912,-0.119164,-0.000000, 0.000000;;, + 127;4;-0.991312,-0.128010,-0.000000, 0.000000;;, + 128;4;-0.990949,-0.133353,-0.000000, 0.000000;;, + 129;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 130;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 131;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 132;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 133;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 134;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 135;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 136;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 137;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 138;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 139;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 140;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 141;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 142;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 143;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 144;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 145;4;-0.990829,-0.135121,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-0.100540, 6.617979,-0.000000;;, + 1;3;-0.100540, 6.617979,-0.000000;;, + 2;3;-0.100540, 6.617979,-0.000000;;, + 3;3;-0.100540, 6.617979,-0.000000;;, + 4;3;-0.100540, 6.617979,-0.000000;;, + 5;3;-0.100540, 6.617979,-0.000000;;, + 6;3;-0.100540, 6.617979,-0.000000;;, + 7;3;-0.100540, 6.617979,-0.000000;;, + 8;3;-0.100540, 6.617979,-0.000000;;, + 9;3;-0.100540, 6.617979,-0.000000;;, + 10;3;-0.100540, 6.617979,-0.000000;;, + 11;3;-0.100540, 6.617979,-0.000000;;, + 12;3;-0.100540, 6.617979,-0.000000;;, + 13;3;-0.100540, 6.617979,-0.000000;;, + 14;3;-0.100540, 6.617979,-0.000000;;, + 15;3;-0.100540, 6.617979,-0.000000;;, + 16;3;-0.100540, 6.617979,-0.000000;;, + 17;3;-0.100540, 6.617979,-0.000000;;, + 18;3;-0.100540, 6.617979,-0.000000;;, + 19;3;-0.100540, 6.617979,-0.000000;;, + 20;3;-0.100540, 6.617979,-0.000000;;, + 21;3;-0.100540, 6.617979,-0.000000;;, + 22;3;-0.100540, 6.617979,-0.000000;;, + 23;3;-0.100540, 6.617979,-0.000000;;, + 24;3;-0.100540, 6.617979,-0.000000;;, + 25;3;-0.100540, 6.617979,-0.000000;;, + 26;3;-0.100540, 6.617979,-0.000000;;, + 27;3;-0.100540, 6.617979,-0.000000;;, + 28;3;-0.100540, 6.617979,-0.000000;;, + 29;3;-0.100540, 6.617979,-0.000000;;, + 30;3;-0.100540, 6.617979,-0.000000;;, + 31;3;-0.100540, 6.617979,-0.000000;;, + 32;3;-0.100540, 6.617979,-0.000000;;, + 33;3;-0.100540, 6.617979,-0.000000;;, + 34;3;-0.100540, 6.617979,-0.000000;;, + 35;3;-0.100540, 6.617979,-0.000000;;, + 36;3;-0.100540, 6.617979,-0.000000;;, + 37;3;-0.100540, 6.617979,-0.000000;;, + 38;3;-0.100540, 6.617979,-0.000000;;, + 39;3;-0.100540, 6.617979,-0.000000;;, + 40;3;-0.100540, 6.617979,-0.000000;;, + 41;3;-0.100540, 6.617979,-0.000000;;, + 42;3;-0.100540, 6.617979,-0.000000;;, + 43;3;-0.100540, 6.617979,-0.000000;;, + 44;3;-0.100540, 6.617979,-0.000000;;, + 45;3;-0.100540, 6.617979,-0.000000;;, + 46;3;-0.100540, 6.617979,-0.000000;;, + 47;3;-0.100540, 6.617979,-0.000000;;, + 48;3;-0.100540, 6.617979,-0.000000;;, + 49;3;-0.100540, 6.617979,-0.000000;;, + 50;3;-0.100540, 6.617979,-0.000000;;, + 51;3;-0.100540, 6.617979,-0.000000;;, + 52;3;-0.100540, 6.617979,-0.000000;;, + 53;3;-0.100540, 6.617979,-0.000000;;, + 54;3;-0.100540, 6.617979,-0.000000;;, + 55;3;-0.100540, 6.617979,-0.000000;;, + 56;3;-0.100540, 6.617979,-0.000000;;, + 57;3;-0.100540, 6.617979,-0.000000;;, + 58;3;-0.100540, 6.617979,-0.000000;;, + 59;3;-0.100540, 6.617979,-0.000000;;, + 60;3;-0.100540, 6.617979,-0.000000;;, + 61;3;-0.100540, 6.617979,-0.000000;;, + 62;3;-0.100540, 6.617979,-0.000000;;, + 63;3;-0.100540, 6.617979,-0.000000;;, + 64;3;-0.100540, 6.617979,-0.000000;;, + 65;3;-0.100540, 6.617979,-0.000000;;, + 66;3;-0.100540, 6.617979,-0.000000;;, + 67;3;-0.100540, 6.617979,-0.000000;;, + 68;3;-0.100540, 6.617979,-0.000000;;, + 69;3;-0.100540, 6.617979,-0.000000;;, + 70;3;-0.100540, 6.617979,-0.000000;;, + 71;3;-0.100540, 6.617979,-0.000000;;, + 72;3;-0.100540, 6.617979,-0.000000;;, + 73;3;-0.100540, 6.617979,-0.000000;;, + 74;3;-0.100540, 6.617979,-0.000000;;, + 75;3;-0.100540, 6.617979,-0.000000;;, + 76;3;-0.100540, 6.617979,-0.000000;;, + 77;3;-0.100540, 6.617979,-0.000000;;, + 78;3;-0.100540, 6.617979,-0.000000;;, + 79;3;-0.100540, 6.617979,-0.000000;;, + 80;3;-0.100540, 6.617979,-0.000000;;, + 81;3;-0.100540, 6.617979,-0.000000;;, + 82;3;-0.100540, 6.617979,-0.000000;;, + 83;3;-0.100540, 6.617979,-0.000000;;, + 84;3;-0.100540, 6.617979,-0.000000;;, + 85;3;-0.100540, 6.617980,-0.000000;;, + 86;3;-0.100540, 6.617978,-0.000000;;, + 87;3;-0.100540, 6.617981,-0.000000;;, + 88;3;-0.100540, 6.617980,-0.000000;;, + 89;3;-0.100540, 6.617981,-0.000000;;, + 90;3;-0.100540, 6.617980,-0.000000;;, + 91;3;-0.100540, 6.617979,-0.000000;;, + 92;3;-0.100540, 6.617980,-0.000000;;, + 93;3;-0.100540, 6.617980,-0.000000;;, + 94;3;-0.100540, 6.617978,-0.000000;;, + 95;3;-0.100540, 6.617977,-0.000000;;, + 96;3;-0.100540, 6.617978,-0.000000;;, + 97;3;-0.100540, 6.617979,-0.000000;;, + 98;3;-0.100540, 6.617978,-0.000000;;, + 99;3;-0.100540, 6.617979,-0.000000;;, + 100;3;-0.100540, 6.617980,-0.000000;;, + 101;3;-0.100540, 6.617979,-0.000000;;, + 102;3;-0.100540, 6.617980,-0.000000;;, + 103;3;-0.100540, 6.617979,-0.000000;;, + 104;3;-0.100540, 6.617979,-0.000000;;, + 105;3;-0.100540, 6.617979,-0.000000;;, + 106;3;-0.100540, 6.617979,-0.000000;;, + 107;3;-0.100540, 6.617979,-0.000000;;, + 108;3;-0.100540, 6.617979,-0.000000;;, + 109;3;-0.100540, 6.617979,-0.000000;;, + 110;3;-0.100540, 6.617979,-0.000000;;, + 111;3;-0.100540, 6.617979,-0.000000;;, + 112;3;-0.100540, 6.617979,-0.000000;;, + 113;3;-0.100540, 6.617979,-0.000000;;, + 114;3;-0.100540, 6.617979,-0.000000;;, + 115;3;-0.100540, 6.617979,-0.000000;;, + 116;3;-0.100540, 6.617979,-0.000000;;, + 117;3;-0.100540, 6.617979,-0.000000;;, + 118;3;-0.100540, 6.617980,-0.000000;;, + 119;3;-0.100540, 6.617980,-0.000000;;, + 120;3;-0.100540, 6.617980,-0.000000;;, + 121;3;-0.100540, 6.617980,-0.000000;;, + 122;3;-0.100540, 6.617978,-0.000000;;, + 123;3;-0.100540, 6.617979,-0.000000;;, + 124;3;-0.100540, 6.617980,-0.000001;;, + 125;3;-0.100540, 6.617979, 0.000000;;, + 126;3;-0.100540, 6.617979, 0.000000;;, + 127;3;-0.100540, 6.617979,-0.000000;;, + 128;3;-0.100540, 6.617978,-0.000000;;, + 129;3;-0.100540, 6.617979,-0.000000;;, + 130;3;-0.100540, 6.617979,-0.000000;;, + 131;3;-0.100540, 6.617979,-0.000000;;, + 132;3;-0.100540, 6.617979,-0.000000;;, + 133;3;-0.100540, 6.617979,-0.000000;;, + 134;3;-0.100540, 6.617979,-0.000000;;, + 135;3;-0.100540, 6.617979,-0.000000;;, + 136;3;-0.100540, 6.617979,-0.000000;;, + 137;3;-0.100540, 6.617979,-0.000000;;, + 138;3;-0.100540, 6.617979,-0.000000;;, + 139;3;-0.100540, 6.617979,-0.000000;;, + 140;3;-0.100540, 6.617979,-0.000000;;, + 141;3;-0.100540, 6.617979,-0.000000;;, + 142;3;-0.100540, 6.617979,-0.000000;;, + 143;3;-0.100540, 6.617979,-0.000000;;, + 144;3;-0.100540, 6.617979,-0.000000;;, + 145;3;-0.100540, 6.617979,-0.000000;;; + } + } + Animation { + {Skeleton_Rig_Hand_L} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 1;4;-0.701055,-0.713095,-0.000000, 0.000000;;, + 2;4;-0.703276,-0.710878,-0.000000, 0.000000;;, + 3;4;-0.706468,-0.707691,-0.000000, 0.000000;;, + 4;4;-0.709660,-0.704504,-0.000000, 0.000000;;, + 5;4;-0.711881,-0.702287,-0.000000, 0.000000;;, + 6;4;-0.712644,-0.701526,-0.000000, 0.000000;;, + 7;4;-0.711891,-0.702284,-0.000000, 0.000000;;, + 8;4;-0.709619,-0.704566,-0.000000, 0.000000;;, + 9;4;-0.706296,-0.707894,-0.000000, 0.000000;;, + 10;4;-0.702921,-0.711258,-0.000000, 0.000000;;, + 11;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 12;4;-0.698012,-0.716083,-0.000000, 0.000000;;, + 13;4;-0.695516,-0.718503,-0.000000, 0.000000;;, + 14;4;-0.692998,-0.720930,-0.000000, 0.000000;;, + 15;4;-0.690750,-0.723086,-0.000000, 0.000000;;, + 16;4;-0.689050,-0.724710,-0.000000, 0.000000;;, + 17;4;-0.688045,-0.725668,-0.000000, 0.000000;;, + 18;4;-0.687727,-0.725969,-0.000000, 0.000000;;, + 19;4;-0.688503,-0.725221,-0.000000, 0.000000;;, + 20;4;-0.690762,-0.723044,-0.000000, 0.000000;;, + 21;4;-0.694010,-0.719913,-0.000000, 0.000000;;, + 22;4;-0.697257,-0.716782,-0.000000, 0.000000;;, + 23;4;-0.699516,-0.714605,-0.000000, 0.000000;;, + 24;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 25;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 26;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 27;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 28;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 29;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 30;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 31;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 32;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 33;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 34;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 35;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 36;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 37;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 38;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 39;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 40;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 41;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 42;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 43;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 44;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 45;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 46;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 47;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 48;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 49;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 50;4;-0.702505,-0.711661, 0.001937,-0.000754;;, + 51;4;-0.709045,-0.705044, 0.008222,-0.002513;;, + 52;4;-0.719184,-0.694466, 0.019355,-0.004066;;, + 53;4;-0.731239,-0.681279, 0.035255,-0.003665;;, + 54;4;-0.742803,-0.667592, 0.055032, 0.000541;;, + 55;4;-0.751544,-0.655589, 0.077210, 0.009822;;, + 56;4;-0.755961,-0.646807, 0.100279, 0.024529;;, + 57;4;-0.755530,-0.641917, 0.123114, 0.044275;;, + 58;4;-0.744569,-0.639555, 0.163909, 0.084501;;, + 59;4;-0.730853,-0.643226, 0.190921, 0.112448;;, + 60;4;-0.723184,-0.653260, 0.178316, 0.106330;;, + 61;4;-0.715622,-0.667986, 0.143704, 0.086411;;, + 62;4;-0.708942,-0.685045, 0.094535, 0.057178;;, + 63;4;-0.703983,-0.700417, 0.045605, 0.027696;;, + 64;4;-0.701149,-0.710504, 0.011651, 0.007096;;, + 65;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 66;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 67;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 68;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 69;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 70;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 71;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 72;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 73;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 74;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 75;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 76;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 77;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 78;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 79;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 80;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 81;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 82;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 83;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 84;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 85;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 86;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 87;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 88;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 89;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 90;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 91;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 92;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 93;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 94;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 95;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 96;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 97;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 98;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 99;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 100;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 101;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 102;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 103;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 104;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 105;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 106;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 107;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 108;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 109;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 110;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 111;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 112;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 113;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 114;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 115;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 116;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 117;4;-0.697160,-0.710664, 0.006850, 0.007088;;, + 118;4;-0.687700,-0.701020, 0.027536, 0.028491;;, + 119;4;-0.672039,-0.685055, 0.061768, 0.063911;;, + 120;4;-0.650707,-0.663311, 0.108381, 0.112142;;, + 121;4;-0.624745,-0.636846, 0.165104, 0.170835;;, + 122;4;-0.595722,-0.607260, 0.228513, 0.236446;;, + 123;4;-0.565624,-0.576580, 0.294279, 0.304496;;, + 124;4;-0.536597,-0.546991, 0.357727, 0.370146;;, + 125;4;-0.510629,-0.520519, 0.414517, 0.428904;;, + 126;4;-0.489291,-0.498767, 0.461207, 0.477211;;, + 127;4;-0.473623,-0.482796, 0.495509, 0.512700;;, + 128;4;-0.464158,-0.473148, 0.516243, 0.534150;;, + 129;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 130;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 131;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 132;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 133;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 134;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 135;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 136;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 137;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 138;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 139;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 140;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 141;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 142;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 143;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 144;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 145;4;-0.461025,-0.469954, 0.523110, 0.541254;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-3.271756, 4.607169, 0.050271;;, + 1;3;-3.271756, 4.607169, 0.050271;;, + 2;3;-3.271756, 4.607169, 0.050271;;, + 3;3;-3.271756, 4.607169, 0.050271;;, + 4;3;-3.271756, 4.607169, 0.050271;;, + 5;3;-3.271756, 4.607169, 0.050271;;, + 6;3;-3.271756, 4.607169, 0.050271;;, + 7;3;-3.271756, 4.607169, 0.050271;;, + 8;3;-3.271756, 4.607169, 0.050271;;, + 9;3;-3.271756, 4.607169, 0.050271;;, + 10;3;-3.271756, 4.607169, 0.050271;;, + 11;3;-3.271756, 4.607169, 0.050271;;, + 12;3;-3.271756, 4.607169, 0.050271;;, + 13;3;-3.271756, 4.607169, 0.050271;;, + 14;3;-3.271756, 4.607169, 0.050271;;, + 15;3;-3.271756, 4.607169, 0.050271;;, + 16;3;-3.271756, 4.607169, 0.050271;;, + 17;3;-3.271756, 4.607169, 0.050271;;, + 18;3;-3.271756, 4.607169, 0.050271;;, + 19;3;-3.271756, 4.607169, 0.050271;;, + 20;3;-3.271756, 4.607169, 0.050271;;, + 21;3;-3.271756, 4.607169, 0.050271;;, + 22;3;-3.271756, 4.607169, 0.050271;;, + 23;3;-3.271756, 4.607169, 0.050271;;, + 24;3;-3.271756, 4.607169, 0.050271;;, + 25;3;-3.271756, 4.607169, 0.050271;;, + 26;3;-3.271756, 4.607169, 0.050271;;, + 27;3;-3.271756, 4.607169, 0.050271;;, + 28;3;-3.271756, 4.607169, 0.050271;;, + 29;3;-3.271756, 4.607169, 0.050271;;, + 30;3;-3.271756, 4.607169, 0.050271;;, + 31;3;-3.271756, 4.607169, 0.050271;;, + 32;3;-3.271756, 4.607169, 0.050271;;, + 33;3;-3.271756, 4.607169, 0.050271;;, + 34;3;-3.271756, 4.607169, 0.050271;;, + 35;3;-3.271756, 4.607169, 0.050271;;, + 36;3;-3.271756, 4.607169, 0.050271;;, + 37;3;-3.271756, 4.607169, 0.050271;;, + 38;3;-3.271756, 4.607169, 0.050271;;, + 39;3;-3.271756, 4.607169, 0.050271;;, + 40;3;-3.271756, 4.607169, 0.050271;;, + 41;3;-3.271756, 4.607169, 0.050271;;, + 42;3;-3.271756, 4.607169, 0.050271;;, + 43;3;-3.271756, 4.607169, 0.050271;;, + 44;3;-3.271756, 4.607169, 0.050271;;, + 45;3;-3.271756, 4.607169, 0.050271;;, + 46;3;-3.271756, 4.607169, 0.050271;;, + 47;3;-3.271756, 4.607169, 0.050271;;, + 48;3;-3.271756, 4.607169, 0.050271;;, + 49;3;-3.271756, 4.607169, 0.050271;;, + 50;3;-3.271757, 4.607169, 0.050271;;, + 51;3;-3.271757, 4.607169, 0.050271;;, + 52;3;-3.271757, 4.607169, 0.050271;;, + 53;3;-3.271756, 4.607169, 0.050271;;, + 54;3;-3.271756, 4.607169, 0.050271;;, + 55;3;-3.271757, 4.607169, 0.050271;;, + 56;3;-3.271756, 4.607169, 0.050271;;, + 57;3;-3.271756, 4.607169, 0.050271;;, + 58;3;-3.271757, 4.607169, 0.050271;;, + 59;3;-3.271757, 4.607169, 0.050271;;, + 60;3;-3.271757, 4.607169, 0.050271;;, + 61;3;-3.271757, 4.607169, 0.050271;;, + 62;3;-3.271756, 4.607169, 0.050271;;, + 63;3;-3.271757, 4.607169, 0.050271;;, + 64;3;-3.271757, 4.607169, 0.050271;;, + 65;3;-3.271756, 4.607169, 0.050271;;, + 66;3;-3.271756, 4.607169, 0.050271;;, + 67;3;-3.271756, 4.607169, 0.050271;;, + 68;3;-3.271756, 4.607169, 0.050271;;, + 69;3;-3.271756, 4.607169, 0.050271;;, + 70;3;-3.271756, 4.607169, 0.050271;;, + 71;3;-3.271756, 4.607169, 0.050271;;, + 72;3;-3.271756, 4.607169, 0.050271;;, + 73;3;-3.271756, 4.607169, 0.050271;;, + 74;3;-3.271756, 4.607169, 0.050271;;, + 75;3;-3.271756, 4.607169, 0.050271;;, + 76;3;-3.271756, 4.607169, 0.050271;;, + 77;3;-3.271756, 4.607169, 0.050271;;, + 78;3;-3.271756, 4.607169, 0.050271;;, + 79;3;-3.271756, 4.607169, 0.050271;;, + 80;3;-3.271756, 4.607169, 0.050271;;, + 81;3;-3.271756, 4.607169, 0.050271;;, + 82;3;-3.271756, 4.607169, 0.050271;;, + 83;3;-3.271756, 4.607169, 0.050271;;, + 84;3;-3.271756, 4.607169, 0.050271;;, + 85;3;-3.271757, 4.607169, 0.050271;;, + 86;3;-3.271757, 4.607169, 0.050271;;, + 87;3;-3.271756, 4.607170, 0.050271;;, + 88;3;-3.271756, 4.607169, 0.050271;;, + 89;3;-3.271756, 4.607170, 0.050271;;, + 90;3;-3.271756, 4.607169, 0.050271;;, + 91;3;-3.271756, 4.607168, 0.050271;;, + 92;3;-3.271756, 4.607170, 0.050271;;, + 93;3;-3.271757, 4.607169, 0.050271;;, + 94;3;-3.271756, 4.607169, 0.050271;;, + 95;3;-3.271757, 4.607168, 0.050271;;, + 96;3;-3.271757, 4.607168, 0.050271;;, + 97;3;-3.271757, 4.607169, 0.050271;;, + 98;3;-3.271757, 4.607168, 0.050271;;, + 99;3;-3.271757, 4.607169, 0.050271;;, + 100;3;-3.271756, 4.607170, 0.050271;;, + 101;3;-3.271757, 4.607169, 0.050271;;, + 102;3;-3.271756, 4.607170, 0.050271;;, + 103;3;-3.271756, 4.607169, 0.050271;;, + 104;3;-3.271757, 4.607169, 0.050271;;, + 105;3;-3.271757, 4.607169, 0.050271;;, + 106;3;-3.271757, 4.607169, 0.050271;;, + 107;3;-3.271757, 4.607169, 0.050271;;, + 108;3;-3.271756, 4.607169, 0.050271;;, + 109;3;-3.271756, 4.607169, 0.050271;;, + 110;3;-3.271756, 4.607169, 0.050271;;, + 111;3;-3.271756, 4.607169, 0.050271;;, + 112;3;-3.271756, 4.607169, 0.050271;;, + 113;3;-3.271756, 4.607169, 0.050271;;, + 114;3;-3.271756, 4.607169, 0.050271;;, + 115;3;-3.271756, 4.607169, 0.050271;;, + 116;3;-3.271756, 4.607169, 0.050271;;, + 117;3;-3.271756, 4.607169, 0.050271;;, + 118;3;-3.271756, 4.607169, 0.050271;;, + 119;3;-3.271756, 4.607169, 0.050271;;, + 120;3;-3.271756, 4.607171, 0.050271;;, + 121;3;-3.271756, 4.607170, 0.050271;;, + 122;3;-3.271756, 4.607169, 0.050271;;, + 123;3;-3.271756, 4.607169, 0.050271;;, + 124;3;-3.271756, 4.607170, 0.050271;;, + 125;3;-3.271756, 4.607169, 0.050271;;, + 126;3;-3.271756, 4.607170, 0.050271;;, + 127;3;-3.271756, 4.607169, 0.050271;;, + 128;3;-3.271756, 4.607169, 0.050271;;, + 129;3;-3.271756, 4.607170, 0.050271;;, + 130;3;-3.271756, 4.607170, 0.050271;;, + 131;3;-3.271756, 4.607170, 0.050271;;, + 132;3;-3.271756, 4.607170, 0.050271;;, + 133;3;-3.271756, 4.607170, 0.050271;;, + 134;3;-3.271756, 4.607170, 0.050271;;, + 135;3;-3.271756, 4.607170, 0.050271;;, + 136;3;-3.271756, 4.607170, 0.050271;;, + 137;3;-3.271756, 4.607170, 0.050271;;, + 138;3;-3.271756, 4.607170, 0.050271;;, + 139;3;-3.271756, 4.607170, 0.050271;;, + 140;3;-3.271756, 4.607170, 0.050271;;, + 141;3;-3.271756, 4.607170, 0.050271;;, + 142;3;-3.271756, 4.607170, 0.050271;;, + 143;3;-3.271756, 4.607170, 0.050271;;, + 144;3;-3.271756, 4.607170, 0.050271;;, + 145;3;-3.271756, 4.607170, 0.050271;;; + } + } + Animation { + {Skeleton_Rig_Leg_R} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 2;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 3;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 4;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 5;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 6;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 7;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 8;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 9;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 10;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 11;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 12;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 13;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 14;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 15;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 16;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 17;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 18;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 19;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 20;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 21;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 22;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 23;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 24;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 25;4;-0.005922, 0.999612,-0.000000,-0.000000;;, + 26;4;-0.023440, 0.998464,-0.000000,-0.000000;;, + 27;4;-0.050129, 0.996714,-0.000000,-0.000000;;, + 28;4;-0.080401, 0.994730,-0.000000,-0.000000;;, + 29;4;-0.107089, 0.992981,-0.000000,-0.000000;;, + 30;4;-0.124606, 0.991833,-0.000000,-0.000000;;, + 31;4;-0.130527, 0.991445,-0.000000,-0.000000;;, + 32;4;-0.125435, 0.991973,-0.000000,-0.000000;;, + 33;4;-0.109638, 0.993511,-0.000000,-0.000000;;, + 34;4;-0.084375, 0.995722,-0.000000,-0.000000;;, + 35;4;-0.054152, 0.997933,-0.000000,-0.000000;;, + 36;4;-0.024727, 0.999471,-0.000000,-0.000000;;, + 37;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 38;4; 0.024726, 0.999472,-0.000000,-0.000000;;, + 39;4; 0.054151, 0.997934,-0.000000,-0.000000;;, + 40;4; 0.084374, 0.995723,-0.000000,-0.000000;;, + 41;4; 0.109637, 0.993511,-0.000000,-0.000000;;, + 42;4; 0.125434, 0.991973,-0.000000, 0.000000;;, + 43;4; 0.130526, 0.991445,-0.000000, 0.000000;;, + 44;4; 0.122463, 0.991973,-0.000000, 0.000000;;, + 45;4; 0.098998, 0.993511,-0.000000,-0.000000;;, + 46;4; 0.065264, 0.995722,-0.000000,-0.000000;;, + 47;4; 0.031530, 0.997933,-0.000000,-0.000000;;, + 48;4; 0.008063, 0.999471,-0.000000,-0.000000;;, + 49;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 50;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 51;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 52;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 53;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 54;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 55;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 56;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 57;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 58;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 59;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 60;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 61;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 62;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 63;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 64;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 65;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 66;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 67;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 68;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 69;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 70;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 71;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 72;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 73;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 74;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 75;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 76;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 77;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 78;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 79;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 80;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 81;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 82;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 83;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 84;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 85;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 86;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 87;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 88;4;-0.017140, 0.998877,-0.000000,-0.000000;;, + 89;4;-0.062763, 0.995886,-0.000000,-0.000000;;, + 90;4;-0.110958, 0.992727,-0.000000,-0.000000;;, + 91;4;-0.130527, 0.991445,-0.000000,-0.000000;;, + 92;4;-0.119022, 0.992613,-0.000000,-0.000000;;, + 93;4;-0.084036, 0.995750,-0.000000,-0.000000;;, + 94;4;-0.038265, 0.998857,-0.000000,-0.000000;;, + 95;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 96;4; 0.045264, 0.998145,-0.000000,-0.000000;;, + 97;4; 0.102581, 0.993885,-0.000000,-0.000000;;, + 98;4; 0.130526, 0.991445,-0.000000, 0.000000;;, + 99;4; 0.116162, 0.992386,-0.000000, 0.000000;;, + 100;4; 0.071201, 0.995333,-0.000000,-0.000000;;, + 101;4; 0.019411, 0.998728,-0.000000,-0.000000;;, + 102;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 103;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 104;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 105;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 106;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 107;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 108;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 109;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 110;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 111;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 112;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 113;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 114;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 115;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 116;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 117;4; 0.019221, 0.998456,-0.000000,-0.000000;;, + 118;4; 0.073351, 0.993863,-0.000000,-0.000000;;, + 119;4; 0.142841, 0.987310,-0.000000,-0.000000;;, + 120;4; 0.196963, 0.980933,-0.000000,-0.000000;;, + 121;4; 0.216181, 0.976353,-0.000000,-0.000000;;, + 122;4; 0.208868, 0.973160, 0.042021, 0.010400;;, + 123;4; 0.188284, 0.971990, 0.103249, 0.020800;;, + 124;4; 0.159293, 0.972629, 0.133550, 0.019601;;, + 125;4; 0.119241, 0.974489, 0.157604, 0.016113;;, + 126;4; 0.074247, 0.977164, 0.173981, 0.011097;;, + 127;4; 0.034410, 0.979838, 0.182889, 0.006082;;, + 128;4; 0.008541, 0.981699, 0.186406, 0.002593;;, + 129;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 130;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 131;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 132;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 133;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 134;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 135;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 136;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 137;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 138;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 139;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 140;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 141;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 142;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 143;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 144;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 145;4;-0.000000, 0.982338, 0.187109, 0.001395;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 1.206486, 0.069941,-0.000000;;, + 1;3; 1.206486, 0.069941,-0.000000;;, + 2;3; 1.206486, 0.069941,-0.000000;;, + 3;3; 1.206486, 0.069941,-0.000000;;, + 4;3; 1.206486, 0.069941,-0.000000;;, + 5;3; 1.206486, 0.069941,-0.000000;;, + 6;3; 1.206486, 0.069941,-0.000000;;, + 7;3; 1.206486, 0.069941,-0.000000;;, + 8;3; 1.206486, 0.069941,-0.000000;;, + 9;3; 1.206486, 0.069941,-0.000000;;, + 10;3; 1.206486, 0.069941,-0.000000;;, + 11;3; 1.206486, 0.069941,-0.000000;;, + 12;3; 1.206486, 0.069941,-0.000000;;, + 13;3; 1.206486, 0.069941,-0.000000;;, + 14;3; 1.206486, 0.069941,-0.000000;;, + 15;3; 1.206486, 0.069941,-0.000000;;, + 16;3; 1.206486, 0.069941,-0.000000;;, + 17;3; 1.206486, 0.069941,-0.000000;;, + 18;3; 1.206486, 0.069941,-0.000000;;, + 19;3; 1.206486, 0.069941,-0.000000;;, + 20;3; 1.206486, 0.069941,-0.000000;;, + 21;3; 1.206486, 0.069941,-0.000000;;, + 22;3; 1.206486, 0.069941,-0.000000;;, + 23;3; 1.206486, 0.069941,-0.000000;;, + 24;3; 1.206486, 0.069941,-0.000000;;, + 25;3; 1.206486, 0.069941,-0.000000;;, + 26;3; 1.206486, 0.069941,-0.000000;;, + 27;3; 1.206486, 0.069941,-0.000000;;, + 28;3; 1.206486, 0.069941,-0.000000;;, + 29;3; 1.206486, 0.069941,-0.000000;;, + 30;3; 1.206486, 0.069941,-0.000000;;, + 31;3; 1.206486, 0.069941,-0.000000;;, + 32;3; 1.206486, 0.069941,-0.000000;;, + 33;3; 1.206486, 0.069941,-0.000000;;, + 34;3; 1.206486, 0.069941,-0.000000;;, + 35;3; 1.206486, 0.069941,-0.000000;;, + 36;3; 1.206486, 0.069941,-0.000000;;, + 37;3; 1.206486, 0.069941,-0.000000;;, + 38;3; 1.206486, 0.069941,-0.000000;;, + 39;3; 1.206486, 0.069941,-0.000000;;, + 40;3; 1.206486, 0.069941,-0.000000;;, + 41;3; 1.206486, 0.069941,-0.000000;;, + 42;3; 1.206486, 0.069941,-0.000000;;, + 43;3; 1.206486, 0.069941,-0.000000;;, + 44;3; 1.206486, 0.069941,-0.000000;;, + 45;3; 1.206486, 0.069941,-0.000000;;, + 46;3; 1.206486, 0.069941,-0.000000;;, + 47;3; 1.206486, 0.069941,-0.000000;;, + 48;3; 1.206486, 0.069941,-0.000000;;, + 49;3; 1.206486, 0.069941,-0.000000;;, + 50;3; 1.206486, 0.069941,-0.000000;;, + 51;3; 1.206486, 0.069941,-0.000000;;, + 52;3; 1.206486, 0.069941,-0.000000;;, + 53;3; 1.206486, 0.069941,-0.000000;;, + 54;3; 1.206486, 0.069941,-0.000000;;, + 55;3; 1.206486, 0.069941,-0.000000;;, + 56;3; 1.206486, 0.069941,-0.000000;;, + 57;3; 1.206486, 0.069941,-0.000000;;, + 58;3; 1.206486, 0.069941,-0.000000;;, + 59;3; 1.206486, 0.069941,-0.000000;;, + 60;3; 1.206486, 0.069941,-0.000000;;, + 61;3; 1.206486, 0.069941,-0.000000;;, + 62;3; 1.206486, 0.069941,-0.000000;;, + 63;3; 1.206486, 0.069941,-0.000000;;, + 64;3; 1.206486, 0.069941,-0.000000;;, + 65;3; 1.206486, 0.069941,-0.000000;;, + 66;3; 1.206486, 0.069941,-0.000000;;, + 67;3; 1.206486, 0.069941,-0.000000;;, + 68;3; 1.206486, 0.069941,-0.000000;;, + 69;3; 1.206486, 0.069941,-0.000000;;, + 70;3; 1.206486, 0.069941,-0.000000;;, + 71;3; 1.206486, 0.069941,-0.000000;;, + 72;3; 1.206486, 0.069941,-0.000000;;, + 73;3; 1.206486, 0.069941,-0.000000;;, + 74;3; 1.206486, 0.069941,-0.000000;;, + 75;3; 1.206486, 0.069941,-0.000000;;, + 76;3; 1.206486, 0.069941,-0.000000;;, + 77;3; 1.206486, 0.069941,-0.000000;;, + 78;3; 1.206486, 0.069941,-0.000000;;, + 79;3; 1.206486, 0.069941,-0.000000;;, + 80;3; 1.206486, 0.069941,-0.000000;;, + 81;3; 1.206486, 0.069941,-0.000000;;, + 82;3; 1.206486, 0.069941,-0.000000;;, + 83;3; 1.206486, 0.069941,-0.000000;;, + 84;3; 1.206486, 0.069941,-0.000000;;, + 85;3; 1.206486, 0.069942,-0.000000;;, + 86;3; 1.206486, 0.069942,-0.000000;;, + 87;3; 1.206486, 0.069942,-0.000000;;, + 88;3; 1.206486, 0.069942,-0.000000;;, + 89;3; 1.206486, 0.069942,-0.000000;;, + 90;3; 1.206486, 0.069941,-0.000000;;, + 91;3; 1.206486, 0.069942,-0.000000;;, + 92;3; 1.206486, 0.069941,-0.000000;;, + 93;3; 1.206486, 0.069942,-0.000000;;, + 94;3; 1.206486, 0.069942,-0.000000;;, + 95;3; 1.206486, 0.069942,-0.000000;;, + 96;3; 1.206486, 0.069941,-0.000000;;, + 97;3; 1.206486, 0.069942,-0.000000;;, + 98;3; 1.206486, 0.069941,-0.000000;;, + 99;3; 1.206486, 0.069942,-0.000000;;, + 100;3; 1.206486, 0.069941,-0.000000;;, + 101;3; 1.206486, 0.069941,-0.000000;;, + 102;3; 1.206486, 0.069942,-0.000000;;, + 103;3; 1.206486, 0.069941,-0.000000;;, + 104;3; 1.206486, 0.069940,-0.000000;;, + 105;3; 1.206486, 0.069941,-0.000000;;, + 106;3; 1.206486, 0.069941,-0.000000;;, + 107;3; 1.206486, 0.069941,-0.000000;;, + 108;3; 1.206486, 0.069941,-0.000000;;, + 109;3; 1.206486, 0.069941,-0.000000;;, + 110;3; 1.206486, 0.069941,-0.000000;;, + 111;3; 1.206486, 0.069941,-0.000000;;, + 112;3; 1.206486, 0.069941,-0.000000;;, + 113;3; 1.206486, 0.069941,-0.000000;;, + 114;3; 1.206486, 0.069941,-0.000000;;, + 115;3; 1.206486, 0.069941,-0.000000;;, + 116;3; 1.206486, 0.069941,-0.000000;;, + 117;3; 1.206486, 0.069942,-0.000000;;, + 118;3; 1.206486, 0.069942,-0.000000;;, + 119;3; 1.206486, 0.069942,-0.000000;;, + 120;3; 1.206486, 0.069941,-0.000000;;, + 121;3; 1.206486, 0.069942,-0.000000;;, + 122;3; 1.206486, 0.069941,-0.000000;;, + 123;3; 1.206486, 0.069942,-0.000000;;, + 124;3; 1.206486, 0.069941,-0.000001;;, + 125;3; 1.206486, 0.069941, 0.000000;;, + 126;3; 1.206486, 0.069941, 0.000000;;, + 127;3; 1.206486, 0.069941,-0.000000;;, + 128;3; 1.206486, 0.069941, 0.000000;;, + 129;3; 1.206486, 0.069941,-0.000000;;, + 130;3; 1.206486, 0.069941,-0.000000;;, + 131;3; 1.206486, 0.069941,-0.000000;;, + 132;3; 1.206486, 0.069941,-0.000000;;, + 133;3; 1.206486, 0.069941,-0.000000;;, + 134;3; 1.206486, 0.069941,-0.000000;;, + 135;3; 1.206486, 0.069941,-0.000000;;, + 136;3; 1.206486, 0.069941,-0.000000;;, + 137;3; 1.206486, 0.069941,-0.000000;;, + 138;3; 1.206486, 0.069941,-0.000000;;, + 139;3; 1.206486, 0.069941,-0.000000;;, + 140;3; 1.206486, 0.069941,-0.000000;;, + 141;3; 1.206486, 0.069941,-0.000000;;, + 142;3; 1.206486, 0.069941,-0.000000;;, + 143;3; 1.206486, 0.069941,-0.000000;;, + 144;3; 1.206486, 0.069941,-0.000000;;, + 145;3; 1.206486, 0.069941,-0.000000;;; + } + } + Animation { + {Skeleton_Rig_Leg_L} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 2;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 3;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 4;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 5;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 6;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 7;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 8;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 9;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 10;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 11;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 12;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 13;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 14;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 15;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 16;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 17;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 18;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 19;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 20;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 21;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 22;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 23;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 24;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 25;4; 0.005921, 0.999612,-0.000000,-0.000000;;, + 26;4; 0.023439, 0.998464,-0.000000,-0.000000;;, + 27;4; 0.050128, 0.996714,-0.000000,-0.000000;;, + 28;4; 0.080400, 0.994730,-0.000000,-0.000000;;, + 29;4; 0.107088, 0.992981,-0.000000,-0.000000;;, + 30;4; 0.124605, 0.991833,-0.000000,-0.000000;;, + 31;4; 0.130526, 0.991445,-0.000000,-0.000000;;, + 32;4; 0.125434, 0.991973,-0.000000,-0.000000;;, + 33;4; 0.109637, 0.993511,-0.000000,-0.000000;;, + 34;4; 0.084374, 0.995722,-0.000000,-0.000000;;, + 35;4; 0.054151, 0.997933,-0.000000,-0.000000;;, + 36;4; 0.024726, 0.999471,-0.000000,-0.000000;;, + 37;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 38;4;-0.024727, 0.999472,-0.000000,-0.000000;;, + 39;4;-0.054152, 0.997934,-0.000000,-0.000000;;, + 40;4;-0.084375, 0.995722,-0.000000,-0.000000;;, + 41;4;-0.109638, 0.993511,-0.000000,-0.000000;;, + 42;4;-0.125435, 0.991973,-0.000000,-0.000000;;, + 43;4;-0.130527, 0.991445,-0.000000,-0.000000;;, + 44;4;-0.122464, 0.991973,-0.000000,-0.000000;;, + 45;4;-0.098999, 0.993511,-0.000000,-0.000000;;, + 46;4;-0.065265, 0.995722,-0.000000,-0.000000;;, + 47;4;-0.031531, 0.997933,-0.000000,-0.000000;;, + 48;4;-0.008064, 0.999471,-0.000000,-0.000000;;, + 49;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 50;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 51;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 52;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 53;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 54;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 55;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 56;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 57;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 58;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 59;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 60;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 61;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 62;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 63;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 64;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 65;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 66;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 67;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 68;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 69;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 70;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 71;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 72;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 73;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 74;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 75;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 76;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 77;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 78;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 79;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 80;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 81;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 82;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 83;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 84;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 85;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 86;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 87;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 88;4; 0.017139, 0.998877,-0.000000,-0.000000;;, + 89;4; 0.062762, 0.995886,-0.000000,-0.000000;;, + 90;4; 0.110957, 0.992728,-0.000000,-0.000000;;, + 91;4; 0.130526, 0.991445,-0.000000,-0.000000;;, + 92;4; 0.119021, 0.992613,-0.000000,-0.000000;;, + 93;4; 0.084035, 0.995750,-0.000000,-0.000000;;, + 94;4; 0.038264, 0.998857,-0.000000,-0.000000;;, + 95;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 96;4;-0.045265, 0.998145,-0.000000,-0.000000;;, + 97;4;-0.102582, 0.993885,-0.000000,-0.000000;;, + 98;4;-0.130527, 0.991445,-0.000000,-0.000000;;, + 99;4;-0.116163, 0.992386,-0.000000,-0.000000;;, + 100;4;-0.071202, 0.995333,-0.000000,-0.000000;;, + 101;4;-0.019412, 0.998728,-0.000000,-0.000000;;, + 102;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 103;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 104;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 105;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 106;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 107;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 108;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 109;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 110;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 111;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 112;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 113;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 114;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 115;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 116;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 117;4; 0.019221, 0.998786,-0.000000,-0.000000;;, + 118;4; 0.073351, 0.994980,-0.000000,-0.000000;;, + 119;4; 0.142842, 0.989050,-0.000000,-0.000000;;, + 120;4; 0.196963, 0.982402,-0.000000,-0.000000;;, + 121;4; 0.216181, 0.976353,-0.000000,-0.000000;;, + 122;4; 0.208152, 0.968463,-0.056779,-0.014053;;, + 123;4; 0.186697, 0.963795,-0.139508,-0.028105;;, + 124;4; 0.157601, 0.964025,-0.180448,-0.026485;;, + 125;4; 0.117762, 0.964693,-0.212945,-0.021771;;, + 126;4; 0.073220, 0.965653,-0.235072,-0.014995;;, + 127;4; 0.033897, 0.966613,-0.247112,-0.008218;;, + 128;4; 0.008407, 0.967281,-0.251872,-0.003504;;, + 129;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 130;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 131;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 132;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 133;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 134;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 135;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 136;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 137;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 138;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 139;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 140;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 141;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 142;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 143;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 144;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 145;4;-0.000001, 0.967510,-0.252825,-0.001885;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-1.105947, 0.069942, 0.000000;;, + 1;3;-1.105947, 0.069942, 0.000000;;, + 2;3;-1.105947, 0.069942, 0.000000;;, + 3;3;-1.105947, 0.069942, 0.000000;;, + 4;3;-1.105947, 0.069942, 0.000000;;, + 5;3;-1.105947, 0.069942, 0.000000;;, + 6;3;-1.105947, 0.069942, 0.000000;;, + 7;3;-1.105947, 0.069942, 0.000000;;, + 8;3;-1.105947, 0.069942, 0.000000;;, + 9;3;-1.105947, 0.069942, 0.000000;;, + 10;3;-1.105947, 0.069942, 0.000000;;, + 11;3;-1.105947, 0.069942, 0.000000;;, + 12;3;-1.105947, 0.069942, 0.000000;;, + 13;3;-1.105947, 0.069942, 0.000000;;, + 14;3;-1.105947, 0.069942, 0.000000;;, + 15;3;-1.105947, 0.069942, 0.000000;;, + 16;3;-1.105947, 0.069942, 0.000000;;, + 17;3;-1.105947, 0.069942, 0.000000;;, + 18;3;-1.105947, 0.069942, 0.000000;;, + 19;3;-1.105947, 0.069942, 0.000000;;, + 20;3;-1.105947, 0.069942, 0.000000;;, + 21;3;-1.105947, 0.069942, 0.000000;;, + 22;3;-1.105947, 0.069942, 0.000000;;, + 23;3;-1.105947, 0.069942, 0.000000;;, + 24;3;-1.105947, 0.069942, 0.000000;;, + 25;3;-1.105947, 0.069942, 0.000000;;, + 26;3;-1.105947, 0.069942, 0.000000;;, + 27;3;-1.105947, 0.069942, 0.000000;;, + 28;3;-1.105947, 0.069942, 0.000000;;, + 29;3;-1.105947, 0.069942, 0.000000;;, + 30;3;-1.105947, 0.069942, 0.000000;;, + 31;3;-1.105947, 0.069942, 0.000000;;, + 32;3;-1.105947, 0.069942, 0.000000;;, + 33;3;-1.105947, 0.069942, 0.000000;;, + 34;3;-1.105947, 0.069942, 0.000000;;, + 35;3;-1.105947, 0.069942, 0.000000;;, + 36;3;-1.105947, 0.069942, 0.000000;;, + 37;3;-1.105947, 0.069942, 0.000000;;, + 38;3;-1.105947, 0.069942, 0.000000;;, + 39;3;-1.105947, 0.069942, 0.000000;;, + 40;3;-1.105947, 0.069942, 0.000000;;, + 41;3;-1.105947, 0.069942, 0.000000;;, + 42;3;-1.105947, 0.069942, 0.000000;;, + 43;3;-1.105947, 0.069942, 0.000000;;, + 44;3;-1.105947, 0.069942, 0.000000;;, + 45;3;-1.105947, 0.069942, 0.000000;;, + 46;3;-1.105947, 0.069942, 0.000000;;, + 47;3;-1.105947, 0.069942, 0.000000;;, + 48;3;-1.105947, 0.069942, 0.000000;;, + 49;3;-1.105947, 0.069942, 0.000000;;, + 50;3;-1.105947, 0.069942, 0.000000;;, + 51;3;-1.105947, 0.069942, 0.000000;;, + 52;3;-1.105947, 0.069942, 0.000000;;, + 53;3;-1.105947, 0.069942, 0.000000;;, + 54;3;-1.105947, 0.069942, 0.000000;;, + 55;3;-1.105947, 0.069942, 0.000000;;, + 56;3;-1.105947, 0.069942, 0.000000;;, + 57;3;-1.105947, 0.069942, 0.000000;;, + 58;3;-1.105947, 0.069942, 0.000000;;, + 59;3;-1.105947, 0.069942, 0.000000;;, + 60;3;-1.105947, 0.069942, 0.000000;;, + 61;3;-1.105947, 0.069942, 0.000000;;, + 62;3;-1.105947, 0.069942, 0.000000;;, + 63;3;-1.105947, 0.069942, 0.000000;;, + 64;3;-1.105947, 0.069942, 0.000000;;, + 65;3;-1.105947, 0.069942, 0.000000;;, + 66;3;-1.105947, 0.069942, 0.000000;;, + 67;3;-1.105947, 0.069942, 0.000000;;, + 68;3;-1.105947, 0.069942, 0.000000;;, + 69;3;-1.105947, 0.069942, 0.000000;;, + 70;3;-1.105947, 0.069942, 0.000000;;, + 71;3;-1.105947, 0.069942, 0.000000;;, + 72;3;-1.105947, 0.069942, 0.000000;;, + 73;3;-1.105947, 0.069942, 0.000000;;, + 74;3;-1.105947, 0.069942, 0.000000;;, + 75;3;-1.105947, 0.069942, 0.000000;;, + 76;3;-1.105947, 0.069942, 0.000000;;, + 77;3;-1.105947, 0.069942, 0.000000;;, + 78;3;-1.105947, 0.069942, 0.000000;;, + 79;3;-1.105947, 0.069942, 0.000000;;, + 80;3;-1.105947, 0.069942, 0.000000;;, + 81;3;-1.105947, 0.069942, 0.000000;;, + 82;3;-1.105947, 0.069942, 0.000000;;, + 83;3;-1.105947, 0.069942, 0.000000;;, + 84;3;-1.105947, 0.069942, 0.000000;;, + 85;3;-1.105947, 0.069942, 0.000000;;, + 86;3;-1.105947, 0.069943, 0.000000;;, + 87;3;-1.105947, 0.069942, 0.000000;;, + 88;3;-1.105947, 0.069942, 0.000000;;, + 89;3;-1.105947, 0.069942, 0.000000;;, + 90;3;-1.105947, 0.069942, 0.000000;;, + 91;3;-1.105947, 0.069942, 0.000000;;, + 92;3;-1.105947, 0.069942, 0.000000;;, + 93;3;-1.105947, 0.069942, 0.000000;;, + 94;3;-1.105947, 0.069942, 0.000000;;, + 95;3;-1.105947, 0.069942, 0.000000;;, + 96;3;-1.105947, 0.069942, 0.000000;;, + 97;3;-1.105947, 0.069942, 0.000000;;, + 98;3;-1.105947, 0.069942, 0.000000;;, + 99;3;-1.105947, 0.069943, 0.000000;;, + 100;3;-1.105947, 0.069942, 0.000000;;, + 101;3;-1.105947, 0.069942, 0.000000;;, + 102;3;-1.105947, 0.069943, 0.000000;;, + 103;3;-1.105947, 0.069942, 0.000000;;, + 104;3;-1.105947, 0.069942, 0.000000;;, + 105;3;-1.105947, 0.069942, 0.000000;;, + 106;3;-1.105947, 0.069942, 0.000000;;, + 107;3;-1.105947, 0.069942, 0.000000;;, + 108;3;-1.105947, 0.069942, 0.000000;;, + 109;3;-1.105947, 0.069942, 0.000000;;, + 110;3;-1.105947, 0.069942, 0.000000;;, + 111;3;-1.105947, 0.069942, 0.000000;;, + 112;3;-1.105947, 0.069942, 0.000000;;, + 113;3;-1.105947, 0.069942, 0.000000;;, + 114;3;-1.105947, 0.069942, 0.000000;;, + 115;3;-1.105947, 0.069942, 0.000000;;, + 116;3;-1.105947, 0.069942, 0.000000;;, + 117;3;-1.105947, 0.069942, 0.000000;;, + 118;3;-1.105947, 0.069942, 0.000001;;, + 119;3;-1.105947, 0.069942, 0.000001;;, + 120;3;-1.105947, 0.069943, 0.000001;;, + 121;3;-1.105947, 0.069943, 0.000001;;, + 122;3;-1.105947, 0.069942, 0.000001;;, + 123;3;-1.105947, 0.069942, 0.000000;;, + 124;3;-1.105947, 0.069942, 0.000001;;, + 125;3;-1.105947, 0.069942, 0.000001;;, + 126;3;-1.105947, 0.069942, 0.000000;;, + 127;3;-1.105947, 0.069942, 0.000000;;, + 128;3;-1.105947, 0.069942, 0.000001;;, + 129;3;-1.105947, 0.069942, 0.000000;;, + 130;3;-1.105947, 0.069942, 0.000000;;, + 131;3;-1.105947, 0.069942, 0.000000;;, + 132;3;-1.105947, 0.069942, 0.000000;;, + 133;3;-1.105947, 0.069942, 0.000000;;, + 134;3;-1.105947, 0.069942, 0.000000;;, + 135;3;-1.105947, 0.069942, 0.000000;;, + 136;3;-1.105947, 0.069942, 0.000000;;, + 137;3;-1.105947, 0.069942, 0.000000;;, + 138;3;-1.105947, 0.069942, 0.000000;;, + 139;3;-1.105947, 0.069942, 0.000000;;, + 140;3;-1.105947, 0.069942, 0.000000;;, + 141;3;-1.105947, 0.069942, 0.000000;;, + 142;3;-1.105947, 0.069942, 0.000000;;, + 143;3;-1.105947, 0.069942, 0.000000;;, + 144;3;-1.105947, 0.069942, 0.000000;;, + 145;3;-1.105947, 0.069942, 0.000000;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs/models/creatures_spider.x b/mods/mobs_mc/models/mobs_spider.x similarity index 99% rename from mods/mobs/models/creatures_spider.x rename to mods/mobs_mc/models/mobs_spider.x index 5ac809353..b0a95ca87 100644 --- a/mods/mobs/models/creatures_spider.x +++ b/mods/mobs_mc/models/mobs_spider.x @@ -1,5 +1,9 @@ xof 0303txt 0032 +template AnimTicksPerSecond { + <9E415A43-7BA6-4a73-8743-B73D47E88476> + DWORD AnimTicksPerSecond; +} template XSkinMeshHeader { <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> @@ -2355,7 +2359,9 @@ Frame Root { } // End of Group8 } // End of Armature } // End of Root - +AnimTicksPerSecond { + 24; +} AnimationSet Global { Animation { {Armature} diff --git a/mods/mobs_mc/models/mobs_villager.x b/mods/mobs_mc/models/mobs_villager.x new file mode 100644 index 000000000..cc3cc6fa1 --- /dev/null +++ b/mods/mobs_mc/models/mobs_villager.x @@ -0,0 +1,5471 @@ +xof 0303txt 0032 + +template AnimTicksPerSecond { + <9E415A43-7BA6-4a73-8743-B73D47E88476> + DWORD AnimTicksPerSecond; +} + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Skeleton_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Skeleton_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Skeleton_Rig_Coccyx { + FrameTransformMatrix { + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.012756, 7.126056, 0.000001, 1.000000;; + } + Frame Skeleton_Rig_Chest { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 1.000000,-0.000000, 0.000000, + -0.000000, 0.000000, 1.000000, 0.000000, + -0.000000, 0.675508, 0.000000, 1.000000;; + } + Frame Skeleton_Rig_Hand_L { + FrameTransformMatrix { + 1.000000, 0.000001,-0.000000, 0.000000, + -0.000000,-0.019182,-0.999816, 0.000000, + -0.000001, 0.999816,-0.019182, 0.000000, + -3.271756, 4.607169, 0.050271, 1.000000;; + } + } // End of Skeleton_Rig_Hand_L + Frame Skeleton_Rig_Hand_R { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.019182,-0.999816, 0.000000, + -0.000000, 0.999816,-0.019182, 0.000000, + 3.174013, 4.607169, 0.050269, 1.000000;; + } + } // End of Skeleton_Rig_Hand_R + Frame Skeleton_Rig_Head { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + -0.000000, 1.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + -0.100540, 6.617979,-0.000000, 1.000000;; + } + } // End of Skeleton_Rig_Head + } // End of Skeleton_Rig_Chest + Frame Skeleton_Rig_Leg_L { + FrameTransformMatrix { + 1.000000,-0.000001,-0.000000, 0.000000, + -0.000001,-1.000000, 0.000001, 0.000000, + -0.000000,-0.000001,-1.000000, 0.000000, + -1.105947, 0.069942, 0.000000, 1.000000;; + } + } // End of Skeleton_Rig_Leg_L + Frame Skeleton_Rig_Leg_R { + FrameTransformMatrix { + 1.000000,-0.000001,-0.000000, 0.000000, + -0.000001,-1.000000, 0.000001, 0.000000, + -0.000000,-0.000001,-1.000000, 0.000000, + 1.206486, 0.069941,-0.000000, 1.000000;; + } + } // End of Skeleton_Rig_Leg_R + } // End of Skeleton_Rig_Coccyx + } // End of Skeleton_Rig_Root + Frame Cube_001 { + FrameTransformMatrix { + -1.772010,-0.000002, 0.000000, 0.000000, + 0.000002,-1.772010, 0.000000, 0.000000, + 0.000000, 0.000000, 3.914027, 0.000000, + 0.000000, 0.000000, 9.947523, 1.000000;; + } + Mesh { // Cube_001 mesh + 144; + -1.571525;-1.468254; 1.067808;, + -1.571523; 1.344241; 1.067808;, + -1.571523; 1.344241;-1.180722;, + -1.571525;-1.468254;-1.180722;, + -1.571523; 1.344241; 1.067808;, + 1.527287; 1.344240; 1.067808;, + 1.527287; 1.344240;-1.180722;, + -1.571523; 1.344241;-1.180722;, + 1.527287; 1.344240; 1.067808;, + 1.527285;-1.468255; 1.067808;, + 1.527285;-1.468255;-1.180722;, + 1.527287; 1.344240;-1.180722;, + 1.527285;-1.468255; 1.067808;, + -1.571525;-1.468254; 1.067808;, + -1.571525;-1.468254;-1.180722;, + 1.527285;-1.468255;-1.180722;, + -1.571525;-1.468254;-1.180722;, + -1.571523; 1.344241;-1.180722;, + 1.527287; 1.344240;-1.180722;, + 1.527285;-1.468255;-1.180722;, + 1.527285;-1.468255; 1.067808;, + 1.527287; 1.344240; 1.067808;, + -1.571523; 1.344241; 1.067808;, + -1.571525;-1.468254; 1.067808;, + -1.434277;-1.434277; 2.565863;, + -1.434277; 1.434277; 2.565863;, + -1.434277; 1.434277; 1.070664;, + -1.434277;-1.434277; 1.070664;, + -1.434277; 1.434277; 2.565863;, + 1.434277; 1.434277; 2.565863;, + 1.434277; 1.434277; 1.070664;, + -1.434277; 1.434277; 1.070664;, + 1.434277; 1.434277; 2.565863;, + 1.434277;-1.434277; 2.565863;, + 1.434277;-1.434277; 1.070664;, + 1.434277; 1.434277; 1.070664;, + 1.434277;-1.434277; 2.565863;, + -1.434277;-1.434277; 2.565863;, + -1.434277;-1.434277; 1.070664;, + 1.434277;-1.434277; 1.070664;, + -1.434277;-1.434277; 1.070664;, + -1.434277; 1.434277; 1.070664;, + 1.434277; 1.434277; 1.070664;, + 1.434277;-1.434277; 1.070664;, + 1.434277;-1.434277; 2.565863;, + 1.434277; 1.434277; 2.565863;, + -1.434277; 1.434277; 2.565863;, + -1.434277;-1.434277; 2.565863;, + -1.444149;-0.701832;-0.717990;, + -1.444149; 0.510780;-0.717990;, + -1.444149; 0.510780;-2.514503;, + -1.444149;-0.701832;-2.514503;, + -1.444149; 0.510780;-0.717990;, + -0.164222; 0.510780;-0.717990;, + -0.164222; 0.510780;-2.514503;, + -1.444149; 0.510780;-2.514503;, + -0.164222; 0.510780;-0.717990;, + -0.164222;-0.701832;-0.717990;, + -0.164222;-0.701832;-2.514503;, + -0.164222; 0.510780;-2.514503;, + -0.164222;-0.701832;-0.717990;, + -1.444149;-0.701832;-0.717990;, + -1.444149;-0.701832;-2.514503;, + -0.164222;-0.701832;-2.514503;, + -1.444149;-0.701832;-2.514503;, + -1.444149; 0.510780;-2.514503;, + -0.164222; 0.510780;-2.514503;, + -0.164222;-0.701832;-2.514503;, + -0.164222;-0.701832;-0.717990;, + -0.164222; 0.510780;-0.717990;, + -1.444149; 0.510780;-0.717990;, + -1.444149;-0.701832;-0.717990;, + 0.131817;-0.701831;-2.514503;, + 0.131817; 0.510780;-2.514503;, + 1.454805; 0.510780;-2.514503;, + 1.454804;-0.701832;-2.514503;, + 1.454805; 0.510780;-0.717990;, + 1.454804;-0.701832;-0.717990;, + 1.454804;-0.701832;-2.514503;, + 1.454805; 0.510780;-2.514503;, + 0.131817; 0.510780;-0.717990;, + 1.454805; 0.510780;-0.717990;, + 1.454805; 0.510780;-2.514503;, + 0.131817; 0.510780;-2.514503;, + 1.454804;-0.701832;-0.717990;, + 1.454805; 0.510780;-0.717990;, + 0.131817; 0.510780;-0.717990;, + 0.131817;-0.701831;-0.717990;, + 1.454804;-0.701832;-0.717990;, + 0.131817;-0.701831;-0.717990;, + 0.131817;-0.701831;-2.514503;, + 1.454804;-0.701832;-2.514503;, + 0.131817;-0.701831;-0.717990;, + 0.131817; 0.510780;-0.717990;, + 0.131817; 0.510780;-2.514503;, + 0.131817;-0.701831;-2.514503;, + 0.389229;-1.101085; 0.833127;, + 0.389228;-2.100086; 0.833127;, + -0.402430;-2.100086; 0.833127;, + -0.402429;-1.101084; 0.833127;, + -0.402429;-1.101084; 1.511044;, + 0.389229;-1.101085; 1.511044;, + 0.389229;-1.101085; 0.833127;, + -0.402429;-1.101084; 0.833127;, + -0.402430;-2.100086; 1.511044;, + -0.402429;-1.101084; 1.511044;, + -0.402429;-1.101084; 0.833127;, + -0.402430;-2.100086; 0.833127;, + 0.389229;-1.101085; 1.511044;, + 0.389228;-2.100086; 1.511044;, + 0.389228;-2.100086; 0.833127;, + 0.389229;-1.101085; 0.833127;, + -0.402429;-1.101084; 1.511044;, + -0.402430;-2.100086; 1.511044;, + 0.389228;-2.100086; 1.511044;, + 0.389229;-1.101085; 1.511044;, + 0.389228;-2.100086; 1.511044;, + -0.402430;-2.100086; 1.511044;, + -0.402430;-2.100086; 0.833127;, + 0.389228;-2.100086; 0.833127;, + -2.210900; 0.545999; 0.642799;, + -2.210902; 0.106836; 0.996039;, + 2.172258; 0.106831; 0.996040;, + 2.172259; 0.545994; 0.642799;, + 2.172287;-2.475090; 0.329868;, + 2.172288;-2.035926;-0.023372;, + 2.172259; 0.545994; 0.642799;, + 2.172258; 0.106831; 0.996040;, + -2.210872;-2.475085; 0.329868;, + 2.172287;-2.475090; 0.329868;, + 2.172258; 0.106831; 0.996040;, + -2.210902; 0.106836; 0.996039;, + 2.172288;-2.035926;-0.023372;, + 2.172287;-2.475090; 0.329868;, + -2.210872;-2.475085; 0.329868;, + -2.210871;-2.035922;-0.023372;, + 2.172288;-2.035926;-0.023372;, + -2.210871;-2.035922;-0.023372;, + -2.210900; 0.545999; 0.642799;, + 2.172259; 0.545994; 0.642799;, + -2.210871;-2.035922;-0.023372;, + -2.210872;-2.475085; 0.329868;, + -2.210902; 0.106836; 0.996039;, + -2.210900; 0.545999; 0.642799;; + 36; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;; + MeshNormals { // Cube_001 normals + 36; + -1.000000; 0.000001; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000001; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + 1.000000;-0.000000; 0.000000;, + -0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000;-1.000000;, + 1.000000;-0.000000; 0.000000;, + 0.000000; 1.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000;-1.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000001; 1.000000; 0.000000;, + -1.000000; 0.000001; 0.000000;, + 1.000000;-0.000001; 0.000000;, + 0.000000; 0.000000; 1.000000;, + -0.000001;-1.000000; 0.000000;, + 0.000001; 0.626759; 0.779213;, + 1.000000; 0.000008; 0.000013;, + -0.000000;-0.249832; 0.968289;, + -0.000001;-0.626759;-0.779213;, + 0.000000; 0.249832;-0.968289;, + -1.000000;-0.000008;-0.000014;; + 36; + 4;0,0,0,0;, + 4;1,1,1,1;, + 4;2,2,2,2;, + 4;3,3,3,3;, + 4;4,4,4,4;, + 4;5,5,5,5;, + 4;6,6,6,6;, + 4;7,7,7,7;, + 4;8,8,8,8;, + 4;9,9,9,9;, + 4;10,10,10,10;, + 4;11,11,11,11;, + 4;12,12,12,12;, + 4;13,13,13,13;, + 4;14,14,14,14;, + 4;15,15,15,15;, + 4;16,16,16,16;, + 4;17,17,17,17;, + 4;18,18,18,18;, + 4;19,19,19,19;, + 4;20,20,20,20;, + 4;21,21,21,21;, + 4;22,22,22,22;, + 4;23,23,23,23;, + 4;24,24,24,24;, + 4;25,25,25,25;, + 4;26,26,26,26;, + 4;27,27,27,27;, + 4;28,28,28,28;, + 4;29,29,29,29;, + 4;30,30,30,30;, + 4;31,31,31,31;, + 4;32,32,32,32;, + 4;33,33,33,33;, + 4;34,34,34,34;, + 4;35,35,35,35;; + } // End of Cube_001 normals + MeshTextureCoords { // Cube_001 UV coordinates + 144; + 0.343750; 0.406250;, + 0.250000; 0.406250;, + 0.250000; 0.593750;, + 0.343750; 0.593750;, + 0.687500; 0.406250;, + 0.562500; 0.406250;, + 0.562500; 0.593750;, + 0.687500; 0.593750;, + 0.562500; 0.406250;, + 0.468750; 0.406250;, + 0.468750; 0.593750;, + 0.562500; 0.593750;, + 0.468750; 0.406250;, + 0.343750; 0.406250;, + 0.343750; 0.593750;, + 0.468750; 0.593750;, + 0.468750; 0.312500;, + 0.468750; 0.406250;, + 0.625000; 0.406250;, + 0.625000; 0.312500;, + 0.562500; 0.625000;, + 0.562500; 0.500000;, + 0.437500; 0.500000;, + 0.437500; 0.625000;, + 0.000000; 0.281250;, + 0.125000; 0.281250;, + 0.125000; 0.125000;, + -0.000000; 0.125000;, + 0.375000; 0.281250;, + 0.500000; 0.281250;, + 0.500000; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.125000;, + 0.250000; 0.125000;, + 0.250000; 0.281250;, + 0.375000; 0.281250;, + 0.250000; 0.125000;, + 0.125000; 0.125000;, + 0.125000; 0.281250;, + 0.250000; 0.281250;, + 0.250000; 0.000000;, + 0.250000; 0.125000;, + 0.375000; 0.125000;, + 0.375000; 0.000000;, + 0.250000; 0.125000;, + 0.250000; 0.000000;, + 0.125000; 0.000000;, + 0.125000; 0.125000;, + 0.062500; 0.406250;, + -0.000000; 0.406250;, + 0.000000; 0.593750;, + 0.062500; 0.593750;, + 0.250000; 0.406250;, + 0.187500; 0.406250;, + 0.187500; 0.593750;, + 0.250000; 0.593750;, + 0.062500; 0.562500;, + 0.031250; 0.562500;, + 0.031250; 0.937500;, + 0.062500; 0.937500;, + 0.125000; 0.406250;, + 0.062500; 0.406250;, + 0.062500; 0.593750;, + 0.125000; 0.593750;, + 0.187500; 0.554688;, + 0.187500; 0.593750;, + 0.250000; 0.593750;, + 0.250000; 0.554688;, + 0.093750; 0.562500;, + 0.093750; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.593750;, + 0.125000; 0.593750;, + 0.125000; 0.562500;, + 0.187500; 0.406250;, + 0.125000; 0.406250;, + 0.125000; 0.593750;, + 0.187500; 0.593750;, + 0.250000; 0.406250;, + 0.187500; 0.406250;, + 0.187500; 0.593750;, + 0.250000; 0.593750;, + 0.093750; 0.562500;, + 0.093750; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.562500;, + 0.125000; 0.406250;, + 0.062500; 0.406250;, + 0.062500; 0.593750;, + 0.125000; 0.593750;, + 0.093750; 0.562500;, + 0.062500; 0.562500;, + 0.062500; 0.937500;, + 0.093750; 0.937500;, + 0.437500; 0.000000;, + 0.406250; 0.000000;, + 0.406250; 0.031250;, + 0.437500; 0.031250;, + 0.375000; 0.093750;, + 0.406250; 0.093750;, + 0.406250; 0.031250;, + 0.375000; 0.031250;, + 0.375000; 0.093750;, + 0.406250; 0.093750;, + 0.406250; 0.031250;, + 0.375000; 0.031250;, + 0.468750; 0.031250;, + 0.437500; 0.031250;, + 0.437500; 0.093750;, + 0.468750; 0.093750;, + 0.468750; 0.031250;, + 0.468750; 0.000000;, + 0.437500; 0.000000;, + 0.437500; 0.031250;, + 0.437500; 0.031250;, + 0.406250; 0.031250;, + 0.406250; 0.093750;, + 0.437500; 0.093750;, + 0.625000; 0.656250;, + 0.625000; 0.718750;, + 0.687500; 0.718750;, + 0.687500; 0.656250;, + 0.875000; 0.406250;, + 0.812500; 0.406250;, + 0.812500; 0.531250;, + 0.875000; 0.531250;, + 0.812500; 0.593750;, + 0.687500; 0.593750;, + 0.687500; 0.718750;, + 0.812500; 0.718750;, + 1.000000; 0.695312;, + 1.000000; 0.656250;, + 0.875000; 0.656250;, + 0.875000; 0.695312;, + 0.875000; 0.656250;, + 0.812500; 0.656250;, + 0.812500; 0.718750;, + 0.875000; 0.718750;, + 0.750000; 0.406250;, + 0.687500; 0.406250;, + 0.687500; 0.531250;, + 0.750000; 0.531250;; + } // End of Cube_001 UV coordinates + MeshMaterialList { // Cube_001 material list + 1; + 36; + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0;; + Material Material_001 { + 0.640000; 0.640000; 0.640000; 1.000000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + TextureFilename {"farmer.png";} + } + } // End of Cube_001 material list + XSkinMeshHeader { + 2; + 6; + 8; + } + SkinWeights { + "Skeleton_Rig_Coccyx"; + 0; + -1.772010,-0.000000, 0.000003, 0.000000, + 0.000003,-0.000000, 1.772010, 0.000000, + -0.000000, 3.914027, 0.000000, 0.000000, + -0.012756, 2.821467,-0.000000, 1.000000;; + } // End of Skeleton_Rig_Coccyx skin weights + SkinWeights { + "Skeleton_Rig_Root"; + 0; + -1.772010,-0.000000, 0.000002, 0.000000, + 0.000002,-0.000000, 1.772010, 0.000000, + 0.000000, 3.914027, 0.000000, 0.000000, + 0.000000, 9.947523, 0.000001, 1.000000;; + } // End of Skeleton_Rig_Root skin weights + SkinWeights { + "Skeleton_Rig_Hand_L"; + 0; + -1.772010,-0.000002, 0.000001, 0.000000, + 0.000002,-1.771684,-0.033990, 0.000000, + 0.000002,-0.075078, 3.913306, 0.000000, + 3.258999, 0.097471,-2.459795, 1.000000;; + } // End of Skeleton_Rig_Hand_L skin weights + SkinWeights { + "Skeleton_Rig_Head"; + 54; + 1, + 4, + 5, + 8, + 21, + 22, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 0.015148, + 0.015148, + 0.000032, + 0.000032, + 0.000032, + 0.015148, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010,-0.000000, 0.000003, 0.000000, + 0.000003,-0.000000, 1.772010, 0.000000, + -0.000000, 3.914027, 0.000000, 0.000000, + 0.087784,-4.472020,-0.000000, 1.000000;; + } // End of Skeleton_Rig_Head skin weights + SkinWeights { + "Skeleton_Rig_Leg_R"; + 24; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010, 0.000002,-0.000002, 0.000000, + 0.000002, 0.000002,-1.772010, 0.000000, + -0.000004,-3.914027,-0.000004, 0.000000, + -1.219244,-2.751525,-0.000002, 1.000000;; + } // End of Skeleton_Rig_Leg_R skin weights + SkinWeights { + "Skeleton_Rig_Chest"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 0.984852, + 1.000000, + 1.000000, + 0.984852, + 0.999968, + 1.000000, + 1.000000, + 0.999968, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.999968, + 0.984852, + 1.000000; + -1.772010,-0.000000, 0.000003, 0.000000, + 0.000003,-0.000000, 1.772010, 0.000000, + -0.000000, 3.914027, 0.000000, 0.000000, + -0.012756, 2.145959,-0.000000, 1.000000;; + } // End of Skeleton_Rig_Chest skin weights + SkinWeights { + "Skeleton_Rig_Hand_R"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010,-0.000002, 0.000001, 0.000000, + 0.000002,-1.771684,-0.033990, 0.000000, + 0.000002,-0.075078, 3.913306, 0.000000, + -3.186770, 0.097472,-2.459791, 1.000000;; + } // End of Skeleton_Rig_Hand_R skin weights + SkinWeights { + "Skeleton_Rig_Leg_L"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -1.772010, 0.000002,-0.000002, 0.000000, + 0.000002, 0.000002,-1.772010, 0.000000, + -0.000004,-3.914027,-0.000004, 0.000000, + 1.093189,-2.751525,-0.000002, 1.000000;; + } // End of Skeleton_Rig_Leg_L skin weights + } // End of Cube_001 mesh + } // End of Cube_001 + } // End of Skeleton_Rig +} // End of Root +AnimTicksPerSecond { + 30; +} +AnimationSet ArmatureAction { + Animation { + {Skeleton_Rig} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Skeleton_Rig_Root} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 120;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 121;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 122;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 123;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 124;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 125;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 126;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 127;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 128;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 129;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 130;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 131;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 132;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 133;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 134;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 135;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 136;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 137;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 138;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 139;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 140;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 141;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 142;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 143;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 144;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 145;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;, + 120;3; 0.000000, 0.000000, 0.000000;;, + 121;3; 0.000000, 0.000000, 0.000000;;, + 122;3; 0.000000, 0.000000, 0.000000;;, + 123;3; 0.000000, 0.000000, 0.000000;;, + 124;3; 0.000000, 0.000000, 0.000000;;, + 125;3; 0.000000, 0.000000, 0.000000;;, + 126;3; 0.000000, 0.000000, 0.000000;;, + 127;3; 0.000000, 0.000000, 0.000000;;, + 128;3; 0.000000, 0.000000, 0.000000;;, + 129;3; 0.000000, 0.000000, 0.000000;;, + 130;3; 0.000000, 0.000000, 0.000000;;, + 131;3; 0.000000, 0.000000, 0.000000;;, + 132;3; 0.000000, 0.000000, 0.000000;;, + 133;3; 0.000000, 0.000000, 0.000000;;, + 134;3; 0.000000, 0.000000, 0.000000;;, + 135;3; 0.000000, 0.000000, 0.000000;;, + 136;3; 0.000000, 0.000000, 0.000000;;, + 137;3; 0.000000, 0.000000, 0.000000;;, + 138;3; 0.000000, 0.000000, 0.000000;;, + 139;3; 0.000000, 0.000000, 0.000000;;, + 140;3; 0.000000, 0.000000, 0.000000;;, + 141;3; 0.000000, 0.000000, 0.000000;;, + 142;3; 0.000000, 0.000000, 0.000000;;, + 143;3; 0.000000, 0.000000, 0.000000;;, + 144;3; 0.000000, 0.000000, 0.000000;;, + 145;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Skeleton_Rig_Coccyx} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 1;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 2;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 3;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 4;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 5;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 6;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 7;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 8;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 9;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 10;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 11;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 12;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 13;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 14;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 15;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 16;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 17;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 18;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 19;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 20;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 21;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 22;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 23;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 24;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 25;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 26;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 27;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 28;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 29;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 30;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 31;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 32;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 33;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 34;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 35;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 36;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 37;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 38;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 39;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 40;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 41;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 42;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 43;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 44;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 45;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 46;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 47;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 48;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 49;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 50;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 51;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 52;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 53;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 54;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 55;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 56;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 57;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 58;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 59;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 60;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 61;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 62;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 63;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 64;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 65;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 66;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 67;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 68;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 69;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 70;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 71;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 72;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 73;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 74;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 75;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 76;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 77;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 78;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 79;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 80;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 81;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 82;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 83;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 84;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 85;4;-0.998531, 0.000000,-0.054193,-0.000000;;, + 86;4;-0.985431, 0.000000,-0.170073,-0.000000;;, + 87;4;-0.974770,-0.000000,-0.223212,-0.000000;;, + 88;4;-0.975220,-0.000000,-0.221238,-0.000000;;, + 89;4;-0.976431,-0.000000,-0.215830,-0.000000;;, + 90;4;-0.978202,-0.000000,-0.207655,-0.000000;;, + 91;4;-0.980348,-0.000000,-0.197274,-0.000000;;, + 92;4;-0.982707,-0.000000,-0.185165,-0.000000;;, + 93;4;-0.985141,-0.000000,-0.171748,-0.000000;;, + 94;4;-0.987536,-0.000000,-0.157396,-0.000000;;, + 95;4;-0.989803,-0.000000,-0.142444,-0.000000;;, + 96;4;-0.991878,-0.000000,-0.127194,-0.000000;;, + 97;4;-0.993717,-0.000000,-0.111925,-0.000000;;, + 98;4;-0.995295,-0.000000,-0.096888,-0.000000;;, + 99;4;-0.996607,-0.000000,-0.082312,-0.000000;;, + 100;4;-0.997658,-0.000000,-0.068407,-0.000000;;, + 101;4;-0.998466,-0.000000,-0.055364,-0.000000;;, + 102;4;-0.999060,-0.000000,-0.043355,-0.000000;;, + 103;4;-0.999471,-0.000000,-0.032538,-0.000000;;, + 104;4;-0.999734,-0.000000,-0.023057,-0.000000;;, + 105;4;-0.999887,-0.000000,-0.015044,-0.000000;;, + 106;4;-0.999963,-0.000000,-0.008620,-0.000000;;, + 107;4;-0.999992,-0.000000,-0.003900,-0.000000;;, + 108;4;-1.000000,-0.000000,-0.000992,-0.000000;;, + 109;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 110;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 111;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 112;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 113;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 114;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 115;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 116;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 117;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 118;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 119;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 120;4;-0.999876, 0.015727,-0.000000,-0.000000;;, + 121;4;-0.997940, 0.064151,-0.000000,-0.000000;;, + 122;4;-0.989306, 0.145855,-0.000000,-0.000000;;, + 123;4;-0.966658, 0.256071,-0.000000,-0.000000;;, + 124;4;-0.924714, 0.380663,-0.000000,-0.000000;;, + 125;4;-0.866745, 0.498752,-0.000000,-0.000000;;, + 126;4;-0.805111, 0.593124,-0.000000,-0.000000;;, + 127;4;-0.753576, 0.657361,-0.000000,-0.000000;;, + 128;4;-0.720756, 0.693188,-0.000000,-0.000000;;, + 129;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 130;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 131;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 132;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 133;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 134;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 135;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 136;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 137;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 138;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 139;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 140;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 141;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 142;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 143;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 144;4;-0.709737, 0.704467,-0.000000,-0.000000;;, + 145;4;-0.709737, 0.704467,-0.000000,-0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.012756, 7.126056, 0.000001;;, + 1;3; 0.012756, 7.126056, 0.000001;;, + 2;3; 0.012756, 7.126056, 0.000001;;, + 3;3; 0.012756, 7.126056, 0.000001;;, + 4;3; 0.012756, 7.126056, 0.000001;;, + 5;3; 0.012756, 7.126056, 0.000001;;, + 6;3; 0.012756, 7.126056, 0.000001;;, + 7;3; 0.012756, 7.126056, 0.000001;;, + 8;3; 0.012756, 7.126056, 0.000001;;, + 9;3; 0.012756, 7.126056, 0.000001;;, + 10;3; 0.012756, 7.126056, 0.000001;;, + 11;3; 0.012756, 7.126056, 0.000001;;, + 12;3; 0.012756, 7.126056, 0.000001;;, + 13;3; 0.012756, 7.126056, 0.000001;;, + 14;3; 0.012756, 7.126056, 0.000001;;, + 15;3; 0.012756, 7.126056, 0.000001;;, + 16;3; 0.012756, 7.126056, 0.000001;;, + 17;3; 0.012756, 7.126056, 0.000001;;, + 18;3; 0.012756, 7.126056, 0.000001;;, + 19;3; 0.012756, 7.126056, 0.000001;;, + 20;3; 0.012756, 7.126056, 0.000001;;, + 21;3; 0.012756, 7.126056, 0.000001;;, + 22;3; 0.012756, 7.126056, 0.000001;;, + 23;3; 0.012756, 7.126056, 0.000001;;, + 24;3; 0.012756, 7.126056, 0.000001;;, + 25;3; 0.012756, 7.117846, 0.000001;;, + 26;3; 0.012756, 7.093557, 0.000001;;, + 27;3; 0.012756, 7.056553, 0.000001;;, + 28;3; 0.012756, 7.014584, 0.000001;;, + 29;3; 0.012756, 6.977582, 0.000001;;, + 30;3; 0.012756, 6.953297, 0.000001;;, + 31;3; 0.012756, 6.945087, 0.000001;;, + 32;3; 0.012756, 6.956266, 0.000001;;, + 33;3; 0.012756, 6.988801, 0.000001;;, + 34;3; 0.012756, 7.035572, 0.000001;;, + 35;3; 0.012756, 7.082343, 0.000001;;, + 36;3; 0.012756, 7.114877, 0.000001;;, + 37;3; 0.012756, 7.126056, 0.000001;;, + 38;3; 0.012756, 7.114877, 0.000001;;, + 39;3; 0.012756, 7.082343, 0.000001;;, + 40;3; 0.012756, 7.035572, 0.000001;;, + 41;3; 0.012756, 6.988801, 0.000001;;, + 42;3; 0.012756, 6.956266, 0.000001;;, + 43;3; 0.012756, 6.945087, 0.000001;;, + 44;3; 0.012756, 6.956266, 0.000001;;, + 45;3; 0.012756, 6.988799, 0.000001;;, + 46;3; 0.012756, 7.035567, 0.000001;;, + 47;3; 0.012756, 7.082338, 0.000001;;, + 48;3; 0.012756, 7.114875, 0.000001;;, + 49;3; 0.012756, 7.126056, 0.000001;;, + 50;3; 0.012756, 7.126056, 0.000001;;, + 51;3; 0.012756, 7.126056, 0.000001;;, + 52;3; 0.012756, 7.126056, 0.000001;;, + 53;3; 0.012756, 7.126056, 0.000001;;, + 54;3; 0.012756, 7.126056, 0.000001;;, + 55;3; 0.012756, 7.126056, 0.000001;;, + 56;3; 0.012756, 7.126056, 0.000001;;, + 57;3; 0.012756, 7.126056, 0.000001;;, + 58;3; 0.012756, 7.126056, 0.000001;;, + 59;3; 0.012756, 7.126056, 0.000001;;, + 60;3; 0.012756, 7.126056, 0.000001;;, + 61;3; 0.012756, 7.126056, 0.000001;;, + 62;3; 0.012756, 7.126056, 0.000001;;, + 63;3; 0.012756, 7.126056, 0.000001;;, + 64;3; 0.012756, 7.126056, 0.000001;;, + 65;3; 0.012756, 7.126056, 0.000001;;, + 66;3; 0.012756, 7.126056, 0.000001;;, + 67;3; 0.012756, 7.126056, 0.000001;;, + 68;3; 0.012756, 7.126056, 0.000001;;, + 69;3; 0.012756, 7.126056, 0.000001;;, + 70;3; 0.012756, 7.126056, 0.000001;;, + 71;3; 0.012756, 7.126056, 0.000001;;, + 72;3; 0.012756, 7.126056, 0.000001;;, + 73;3; 0.012756, 7.126056, 0.000001;;, + 74;3; 0.012756, 7.126056, 0.000001;;, + 75;3; 0.012756, 7.126056, 0.000001;;, + 76;3; 0.012756, 7.126056, 0.000001;;, + 77;3; 0.012756, 7.126056, 0.000001;;, + 78;3; 0.012756, 7.126056, 0.000001;;, + 79;3; 0.012756, 7.126056, 0.000001;;, + 80;3; 0.012756, 7.126056, 0.000001;;, + 81;3; 0.012756, 7.126056, 0.000001;;, + 82;3; 0.012756, 7.126056, 0.000001;;, + 83;3; 0.012756, 7.126056, 0.000001;;, + 84;3; 0.012756, 7.126056, 0.000001;;, + 85;3; 0.012756,10.137318, 0.000001;;, + 86;3; 0.012756,10.921167, 0.000001;;, + 87;3; 0.012756,11.126057, 0.000002;;, + 88;3; 0.012756,11.111126, 0.000002;;, + 89;3; 0.012756,11.016350, 0.000002;;, + 90;3; 0.012756,10.840691, 0.000001;;, + 91;3; 0.012756,10.586319, 0.000001;;, + 92;3; 0.012756,10.259875, 0.000001;;, + 93;3; 0.012756, 9.873508, 0.000001;;, + 94;3; 0.012756, 9.445189, 0.000001;;, + 95;3; 0.012756, 8.997793, 0.000001;;, + 96;3; 0.012756, 8.556813, 0.000001;;, + 97;3; 0.012756, 8.147202, 0.000001;;, + 98;3; 0.012756, 7.790392, 0.000001;;, + 99;3; 0.012756, 7.502371, 0.000001;;, + 100;3; 0.012756, 7.293185, 0.000001;;, + 101;3; 0.012756, 7.167550, 0.000001;;, + 102;3; 0.012756, 7.126056, 0.000001;;, + 103;3; 0.012756, 7.126056, 0.000001;;, + 104;3; 0.012756, 7.126056, 0.000001;;, + 105;3; 0.012756, 7.126056, 0.000001;;, + 106;3; 0.012756, 7.126056, 0.000001;;, + 107;3; 0.012756, 7.126056, 0.000001;;, + 108;3; 0.012756, 7.126056, 0.000001;;, + 109;3; 0.012756, 7.126056, 0.000001;;, + 110;3; 0.012756, 7.126056, 0.000001;;, + 111;3; 0.012756, 7.126056, 0.000001;;, + 112;3; 0.012756, 7.126056, 0.000001;;, + 113;3; 0.012756, 7.126056, 0.000001;;, + 114;3; 0.012756, 7.126056, 0.000001;;, + 115;3; 0.012756, 7.126056, 0.000001;;, + 116;3; 0.012756, 7.126056, 0.000001;;, + 117;3; 0.012756, 8.008668, 0.000001;;, + 118;3; 0.012756, 9.638206, 0.000001;;, + 119;3; 0.012756,10.386742, 0.000001;;, + 120;3; 0.012756,10.215348,-0.141229;;, + 121;3; 0.012756, 9.759109,-0.572056;;, + 122;3; 0.012756, 9.081751,-1.085306;;, + 123;3; 0.012756, 8.227430,-1.498350;;, + 124;3; 0.012756, 7.229108,-1.796161;;, + 125;3; 0.012756, 6.113598,-2.004171;;, + 126;3; 0.012756, 4.905734,-2.144737;;, + 127;3; 0.012756, 3.634414,-2.233589;;, + 128;3; 0.012756, 2.350448,-2.281648;;, + 129;3; 0.012756, 1.281430,-2.296675;;, + 130;3; 0.012756, 1.281430,-2.296675;;, + 131;3; 0.012756, 1.281430,-2.296675;;, + 132;3; 0.012756, 1.281430,-2.296675;;, + 133;3; 0.012756, 1.281430,-2.296675;;, + 134;3; 0.012756, 1.281430,-2.296675;;, + 135;3; 0.012756, 1.281430,-2.296675;;, + 136;3; 0.012756, 1.281430,-2.296675;;, + 137;3; 0.012756, 1.281430,-2.296675;;, + 138;3; 0.012756, 1.281430,-2.296675;;, + 139;3; 0.012756, 1.281430,-2.296675;;, + 140;3; 0.012756, 1.281430,-2.296675;;, + 141;3; 0.012756, 1.281430,-2.296675;;, + 142;3; 0.012756, 1.281430,-2.296675;;, + 143;3; 0.012756, 1.281430,-2.296675;;, + 144;3; 0.012756, 1.281430,-2.296675;;, + 145;3; 0.012756, 1.281430,-2.296675;;; + } + } + Animation { + {Skeleton_Rig_Chest} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 1;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 2;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 3;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 4;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 5;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 6;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 7;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 8;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 9;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 10;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 11;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 12;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 13;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 14;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 15;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 16;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 17;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 18;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 19;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 20;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 21;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 22;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 23;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 24;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 25;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 26;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 27;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 28;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 29;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 30;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 31;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 32;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 33;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 34;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 35;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 36;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 37;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 38;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 39;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 40;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 41;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 42;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 43;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 44;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 45;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 46;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 47;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 48;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 49;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 50;4;-0.999972,-0.000000,-0.007548, 0.000000;;, + 51;4;-0.999519,-0.000000,-0.031022, 0.000000;;, + 52;4;-0.997524,-0.000000,-0.070323, 0.000000;;, + 53;4;-0.992473,-0.000000,-0.122467, 0.000000;;, + 54;4;-0.983420,-0.000000,-0.181340, 0.000000;;, + 55;4;-0.970854,-0.000000,-0.239671, 0.000000;;, + 56;4;-0.956468,-0.000000,-0.291836, 0.000000;;, + 57;4;-0.942195, 0.000000,-0.335066,-0.000000;;, + 58;4;-0.923620, 0.000000,-0.383310,-0.000000;;, + 59;4;-0.912569,-0.000000,-0.408922,-0.000000;;, + 60;4;-0.922657,-0.000000,-0.385621,-0.000000;;, + 61;4;-0.949009,-0.000000,-0.315250,-0.000000;;, + 62;4;-0.977889,-0.000000,-0.209126,-0.000000;;, + 63;4;-0.994942,-0.000000,-0.100449,-0.000000;;, + 64;4;-0.999677,-0.000000,-0.025411,-0.000000;;, + 65;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 66;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 67;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 68;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 69;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 70;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 71;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 72;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 73;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 74;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 75;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 76;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 77;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 78;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 79;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 80;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 81;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 82;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 83;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 84;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 85;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 86;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 87;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 88;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 89;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 90;4;-1.000000,-0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 92;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 93;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 94;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 96;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 97;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 98;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 99;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 100;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 101;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 102;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 103;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 104;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 105;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 106;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 107;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 108;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 109;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 110;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 111;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 112;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 113;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 114;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 115;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 116;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 117;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 118;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 119;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 120;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 121;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 122;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 123;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 124;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 125;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 126;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 127;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 128;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 129;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 130;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 131;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 132;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 133;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 134;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 135;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 136;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 137;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 138;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 139;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 140;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 141;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 142;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 143;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 144;4;-1.000000,-0.000000,-0.000000, 0.000000;;, + 145;4;-1.000000,-0.000000,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-0.000000, 0.675508, 0.000000;;, + 1;3;-0.000000, 0.675508, 0.000000;;, + 2;3;-0.000000, 0.675508, 0.000000;;, + 3;3;-0.000000, 0.675508, 0.000000;;, + 4;3;-0.000000, 0.675508, 0.000000;;, + 5;3;-0.000000, 0.675508, 0.000000;;, + 6;3;-0.000000, 0.675508, 0.000000;;, + 7;3;-0.000000, 0.675508, 0.000000;;, + 8;3;-0.000000, 0.675508, 0.000000;;, + 9;3;-0.000000, 0.675508, 0.000000;;, + 10;3;-0.000000, 0.675508, 0.000000;;, + 11;3;-0.000000, 0.675508, 0.000000;;, + 12;3;-0.000000, 0.675508, 0.000000;;, + 13;3;-0.000000, 0.675508, 0.000000;;, + 14;3;-0.000000, 0.675508, 0.000000;;, + 15;3;-0.000000, 0.675508, 0.000000;;, + 16;3;-0.000000, 0.675508, 0.000000;;, + 17;3;-0.000000, 0.675508, 0.000000;;, + 18;3;-0.000000, 0.675508, 0.000000;;, + 19;3;-0.000000, 0.675508, 0.000000;;, + 20;3;-0.000000, 0.675508, 0.000000;;, + 21;3;-0.000000, 0.675508, 0.000000;;, + 22;3;-0.000000, 0.675508, 0.000000;;, + 23;3;-0.000000, 0.675508, 0.000000;;, + 24;3;-0.000000, 0.675508, 0.000000;;, + 25;3;-0.000000, 0.675508, 0.000000;;, + 26;3;-0.000000, 0.675508, 0.000000;;, + 27;3;-0.000000, 0.675508, 0.000000;;, + 28;3;-0.000000, 0.675508, 0.000000;;, + 29;3;-0.000000, 0.675508, 0.000000;;, + 30;3;-0.000000, 0.675508,-0.000000;;, + 31;3;-0.000000, 0.675508,-0.000000;;, + 32;3;-0.000000, 0.675508, 0.000000;;, + 33;3;-0.000000, 0.675508,-0.000000;;, + 34;3;-0.000000, 0.675508,-0.000000;;, + 35;3;-0.000000, 0.675508, 0.000000;;, + 36;3;-0.000000, 0.675508, 0.000000;;, + 37;3;-0.000000, 0.675508, 0.000000;;, + 38;3;-0.000000, 0.675508, 0.000000;;, + 39;3;-0.000000, 0.675508, 0.000000;;, + 40;3;-0.000000, 0.675508, 0.000000;;, + 41;3;-0.000000, 0.675508,-0.000000;;, + 42;3;-0.000000, 0.675508, 0.000000;;, + 43;3;-0.000000, 0.675508,-0.000000;;, + 44;3;-0.000000, 0.675508,-0.000000;;, + 45;3;-0.000000, 0.675508,-0.000000;;, + 46;3;-0.000000, 0.675508,-0.000000;;, + 47;3;-0.000000, 0.675508,-0.000000;;, + 48;3;-0.000000, 0.675508, 0.000000;;, + 49;3;-0.000000, 0.675508, 0.000000;;, + 50;3;-0.000000, 0.675508, 0.000000;;, + 51;3;-0.000000, 0.675508, 0.000000;;, + 52;3;-0.000000, 0.675508, 0.000000;;, + 53;3;-0.000000, 0.675508, 0.000000;;, + 54;3;-0.000000, 0.675508, 0.000000;;, + 55;3;-0.000000, 0.675508, 0.000000;;, + 56;3;-0.000000, 0.675508, 0.000000;;, + 57;3;-0.000000, 0.675508, 0.000000;;, + 58;3;-0.000000, 0.675508, 0.000000;;, + 59;3;-0.000000, 0.675508, 0.000000;;, + 60;3;-0.000000, 0.675508, 0.000000;;, + 61;3;-0.000000, 0.675508, 0.000000;;, + 62;3;-0.000000, 0.675508, 0.000000;;, + 63;3;-0.000000, 0.675508, 0.000000;;, + 64;3;-0.000000, 0.675508, 0.000000;;, + 65;3;-0.000000, 0.675508, 0.000000;;, + 66;3;-0.000000, 0.675508, 0.000000;;, + 67;3;-0.000000, 0.675508, 0.000000;;, + 68;3;-0.000000, 0.675508, 0.000000;;, + 69;3;-0.000000, 0.675508, 0.000000;;, + 70;3;-0.000000, 0.675508, 0.000000;;, + 71;3;-0.000000, 0.675508, 0.000000;;, + 72;3;-0.000000, 0.675508, 0.000000;;, + 73;3;-0.000000, 0.675508, 0.000000;;, + 74;3;-0.000000, 0.675508, 0.000000;;, + 75;3;-0.000000, 0.675508, 0.000000;;, + 76;3;-0.000000, 0.675508, 0.000000;;, + 77;3;-0.000000, 0.675508, 0.000000;;, + 78;3;-0.000000, 0.675508, 0.000000;;, + 79;3;-0.000000, 0.675508, 0.000000;;, + 80;3;-0.000000, 0.675508, 0.000000;;, + 81;3;-0.000000, 0.675508, 0.000000;;, + 82;3;-0.000000, 0.675508, 0.000000;;, + 83;3;-0.000000, 0.675508, 0.000000;;, + 84;3;-0.000000, 0.675508, 0.000000;;, + 85;3;-0.000000, 0.675508,-0.000000;;, + 86;3;-0.000000, 0.675508, 0.000000;;, + 87;3; 0.000000, 0.675508,-0.000000;;, + 88;3;-0.000000, 0.675508, 0.000000;;, + 89;3; 0.000000, 0.675508, 0.000000;;, + 90;3;-0.000000, 0.675507, 0.000000;;, + 91;3;-0.000000, 0.675508, 0.000000;;, + 92;3;-0.000000, 0.675507,-0.000000;;, + 93;3;-0.000000, 0.675508, 0.000000;;, + 94;3; 0.000000, 0.675508, 0.000000;;, + 95;3; 0.000000, 0.675508,-0.000000;;, + 96;3;-0.000000, 0.675507,-0.000000;;, + 97;3; 0.000000, 0.675508,-0.000000;;, + 98;3; 0.000000, 0.675508,-0.000000;;, + 99;3; 0.000000, 0.675508,-0.000000;;, + 100;3; 0.000000, 0.675508,-0.000000;;, + 101;3;-0.000000, 0.675508,-0.000000;;, + 102;3; 0.000000, 0.675508,-0.000000;;, + 103;3; 0.000000, 0.675508, 0.000000;;, + 104;3;-0.000000, 0.675507, 0.000000;;, + 105;3;-0.000000, 0.675508,-0.000000;;, + 106;3;-0.000000, 0.675508, 0.000000;;, + 107;3;-0.000000, 0.675508, 0.000000;;, + 108;3; 0.000000, 0.675508,-0.000000;;, + 109;3;-0.000000, 0.675508, 0.000000;;, + 110;3;-0.000000, 0.675508, 0.000000;;, + 111;3;-0.000000, 0.675508, 0.000000;;, + 112;3;-0.000000, 0.675508, 0.000000;;, + 113;3;-0.000000, 0.675508, 0.000000;;, + 114;3;-0.000000, 0.675508, 0.000000;;, + 115;3;-0.000000, 0.675508, 0.000000;;, + 116;3;-0.000000, 0.675508, 0.000000;;, + 117;3;-0.000000, 0.675508,-0.000000;;, + 118;3;-0.000000, 0.675508, 0.000000;;, + 119;3;-0.000000, 0.675508, 0.000000;;, + 120;3; 0.000000, 0.675508, 0.000000;;, + 121;3; 0.000000, 0.675508, 0.000000;;, + 122;3;-0.000000, 0.675507, 0.000000;;, + 123;3;-0.000000, 0.675508, 0.000000;;, + 124;3;-0.000000, 0.675508,-0.000000;;, + 125;3;-0.000000, 0.675508,-0.000000;;, + 126;3; 0.000000, 0.675508, 0.000000;;, + 127;3; 0.000000, 0.675508,-0.000000;;, + 128;3; 0.000000, 0.675508, 0.000000;;, + 129;3;-0.000000, 0.675508, 0.000000;;, + 130;3;-0.000000, 0.675508, 0.000000;;, + 131;3;-0.000000, 0.675508, 0.000000;;, + 132;3;-0.000000, 0.675508, 0.000000;;, + 133;3;-0.000000, 0.675508, 0.000000;;, + 134;3;-0.000000, 0.675508, 0.000000;;, + 135;3;-0.000000, 0.675508, 0.000000;;, + 136;3;-0.000000, 0.675508, 0.000000;;, + 137;3;-0.000000, 0.675508, 0.000000;;, + 138;3;-0.000000, 0.675508, 0.000000;;, + 139;3;-0.000000, 0.675508, 0.000000;;, + 140;3;-0.000000, 0.675508, 0.000000;;, + 141;3;-0.000000, 0.675508, 0.000000;;, + 142;3;-0.000000, 0.675508, 0.000000;;, + 143;3;-0.000000, 0.675508, 0.000000;;, + 144;3;-0.000000, 0.675508, 0.000000;;, + 145;3;-0.000000, 0.675508, 0.000000;;; + } + } + Animation { + {Skeleton_Rig_Hand_R} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 1;4;-0.699522,-0.714611,-0.000000, 0.000000;;, + 2;4;-0.697276,-0.716802,-0.000000, 0.000000;;, + 3;4;-0.694036,-0.719940,-0.000000, 0.000000;;, + 4;4;-0.690781,-0.723064,-0.000000, 0.000000;;, + 5;4;-0.688509,-0.725228,-0.000000, 0.000000;;, + 6;4;-0.687727,-0.725969,-0.000000, 0.000000;;, + 7;4;-0.688502,-0.725234,-0.000000, 0.000000;;, + 8;4;-0.690835,-0.723013,-0.000000, 0.000000;;, + 9;4;-0.694227,-0.719756,-0.000000, 0.000000;;, + 10;4;-0.697649,-0.716440,-0.000000, 0.000000;;, + 11;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 12;4;-0.702564,-0.711621,-0.000000, 0.000000;;, + 13;4;-0.705034,-0.709174,-0.000000, 0.000000;;, + 14;4;-0.707509,-0.706704,-0.000000, 0.000000;;, + 15;4;-0.709707,-0.704497,-0.000000, 0.000000;;, + 16;4;-0.711361,-0.702827,-0.000000, 0.000000;;, + 17;4;-0.712337,-0.701838,-0.000000, 0.000000;;, + 18;4;-0.712644,-0.701526,-0.000000, 0.000000;;, + 19;4;-0.711887,-0.702294,-0.000000, 0.000000;;, + 20;4;-0.709680,-0.704524,-0.000000, 0.000000;;, + 21;4;-0.706495,-0.707718,-0.000000, 0.000000;;, + 22;4;-0.703295,-0.710898,-0.000000, 0.000000;;, + 23;4;-0.701061,-0.713101,-0.000000, 0.000000;;, + 24;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 25;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 26;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 27;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 28;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 29;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 30;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 31;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 32;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 33;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 34;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 35;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 36;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 37;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 38;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 39;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 40;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 41;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 42;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 43;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 44;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 45;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 46;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 47;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 48;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 49;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 50;4;-0.701264,-0.712745, 0.010718, 0.010413;;, + 51;4;-0.703240,-0.708412, 0.043071, 0.041843;;, + 52;4;-0.703387,-0.698433, 0.094718, 0.092018;;, + 53;4;-0.698443,-0.681026, 0.157766, 0.153269;;, + 54;4;-0.687874,-0.658135, 0.219542, 0.213284;;, + 55;4;-0.675245,-0.635696, 0.268310, 0.260662;;, + 56;4;-0.665540,-0.619965, 0.298070, 0.289573;;, + 57;4;-0.661997,-0.614432, 0.307864, 0.299088;;, + 58;4;-0.639880,-0.637669, 0.301400, 0.305105;;, + 59;4;-0.580409,-0.697169, 0.278736, 0.315257;;, + 60;4;-0.520605,-0.756480, 0.242936, 0.312555;;, + 61;4;-0.503282,-0.787868, 0.205606, 0.289304;;, + 62;4;-0.524942,-0.811728, 0.141057, 0.213627;;, + 63;4;-0.556051,-0.828363, 0.026524, 0.062601;;, + 64;4;-0.573465,-0.811793,-0.076645,-0.079094;;, + 65;4;-0.586630,-0.791659,-0.112051,-0.128789;;, + 66;4;-0.607032,-0.778595,-0.104409,-0.120006;;, + 67;4;-0.633670,-0.762988,-0.083832,-0.096355;;, + 68;4;-0.661261,-0.745491,-0.054827,-0.063017;;, + 69;4;-0.683303,-0.729038,-0.026258,-0.030180;;, + 70;4;-0.696269,-0.717709,-0.006670,-0.007666;;, + 71;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 72;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 73;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 74;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 75;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 76;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 77;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 78;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 79;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 80;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 81;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 82;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 83;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 84;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 85;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 86;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 87;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 88;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 89;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 90;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 91;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 92;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 93;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 94;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 95;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 96;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 97;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 98;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 99;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 100;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 101;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 102;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 103;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 104;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 105;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 106;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 107;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 108;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 109;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 110;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 111;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 112;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 113;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 114;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 115;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 116;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 117;4;-0.700292,-0.713856, 0.000107,-0.000260;;, + 118;4;-0.700292,-0.713856, 0.000433,-0.001053;;, + 119;4;-0.700290,-0.713854, 0.000980,-0.002388;;, + 120;4;-0.700285,-0.713849, 0.001740,-0.004254;;, + 121;4;-0.700274,-0.713838, 0.002687,-0.006604;;, + 122;4;-0.700257,-0.713820, 0.003769,-0.009344;;, + 123;4;-0.700230,-0.713794, 0.004916,-0.012322;;, + 124;4;-0.700197,-0.713759, 0.006036,-0.015345;;, + 125;4;-0.700159,-0.713721, 0.007039,-0.018193;;, + 126;4;-0.700121,-0.713682, 0.007844,-0.020661;;, + 127;4;-0.700089,-0.713649, 0.008393,-0.022578;;, + 128;4;-0.700067,-0.713627, 0.008654,-0.023833;;, + 129;4;-0.700058,-0.713618, 0.008620,-0.024371;;, + 130;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 131;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 132;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 133;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 134;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 135;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 136;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 137;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 138;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 139;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 140;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 141;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 142;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 143;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 144;4;-0.700057,-0.713617, 0.008532,-0.024458;;, + 145;4;-0.700057,-0.713617, 0.008532,-0.024458;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 3.174013, 4.607169, 0.050269;;, + 1;3; 3.174013, 4.607169, 0.050269;;, + 2;3; 3.174013, 4.607169, 0.050269;;, + 3;3; 3.174013, 4.607169, 0.050269;;, + 4;3; 3.174013, 4.607169, 0.050269;;, + 5;3; 3.174013, 4.607169, 0.050269;;, + 6;3; 3.174013, 4.607169, 0.050269;;, + 7;3; 3.174013, 4.607169, 0.050269;;, + 8;3; 3.174013, 4.607169, 0.050269;;, + 9;3; 3.174013, 4.607169, 0.050269;;, + 10;3; 3.174013, 4.607169, 0.050269;;, + 11;3; 3.174013, 4.607169, 0.050269;;, + 12;3; 3.174013, 4.607169, 0.050269;;, + 13;3; 3.174013, 4.607169, 0.050269;;, + 14;3; 3.174013, 4.607169, 0.050269;;, + 15;3; 3.174013, 4.607169, 0.050269;;, + 16;3; 3.174013, 4.607169, 0.050269;;, + 17;3; 3.174013, 4.607169, 0.050269;;, + 18;3; 3.174013, 4.607169, 0.050269;;, + 19;3; 3.174013, 4.607169, 0.050269;;, + 20;3; 3.174013, 4.607169, 0.050269;;, + 21;3; 3.174013, 4.607169, 0.050269;;, + 22;3; 3.174013, 4.607169, 0.050269;;, + 23;3; 3.174013, 4.607169, 0.050269;;, + 24;3; 3.174013, 4.607169, 0.050269;;, + 25;3; 3.174013, 4.607169, 0.050269;;, + 26;3; 3.174013, 4.607169, 0.050269;;, + 27;3; 3.174013, 4.607169, 0.050269;;, + 28;3; 3.174013, 4.607169, 0.050269;;, + 29;3; 3.174013, 4.607169, 0.050269;;, + 30;3; 3.174013, 4.607169, 0.050269;;, + 31;3; 3.174013, 4.607169, 0.050269;;, + 32;3; 3.174013, 4.607169, 0.050269;;, + 33;3; 3.174013, 4.607169, 0.050269;;, + 34;3; 3.174013, 4.607169, 0.050269;;, + 35;3; 3.174013, 4.607169, 0.050269;;, + 36;3; 3.174013, 4.607169, 0.050269;;, + 37;3; 3.174013, 4.607169, 0.050269;;, + 38;3; 3.174013, 4.607169, 0.050269;;, + 39;3; 3.174013, 4.607169, 0.050269;;, + 40;3; 3.174013, 4.607169, 0.050269;;, + 41;3; 3.174013, 4.607169, 0.050269;;, + 42;3; 3.174013, 4.607169, 0.050269;;, + 43;3; 3.174013, 4.607169, 0.050269;;, + 44;3; 3.174013, 4.607169, 0.050269;;, + 45;3; 3.174013, 4.607169, 0.050269;;, + 46;3; 3.174013, 4.607169, 0.050269;;, + 47;3; 3.174013, 4.607169, 0.050269;;, + 48;3; 3.174013, 4.607169, 0.050269;;, + 49;3; 3.174013, 4.607169, 0.050269;;, + 50;3; 3.174013, 4.607169, 0.050269;;, + 51;3; 3.174013, 4.607169, 0.050269;;, + 52;3; 3.174013, 4.607169, 0.050269;;, + 53;3; 3.174013, 4.607169, 0.050269;;, + 54;3; 3.174013, 4.607169, 0.050269;;, + 55;3; 3.174013, 4.607169, 0.050269;;, + 56;3; 3.174013, 4.607169, 0.050269;;, + 57;3; 3.174014, 4.607169, 0.050270;;, + 58;3; 3.174013, 4.607169, 0.050270;;, + 59;3; 3.174013, 4.607169, 0.050269;;, + 60;3; 3.174013, 4.607169, 0.050269;;, + 61;3; 3.174013, 4.607169, 0.050269;;, + 62;3; 3.174013, 4.607169, 0.050269;;, + 63;3; 3.174013, 4.607169, 0.050269;;, + 64;3; 3.174013, 4.607169, 0.050269;;, + 65;3; 3.174013, 4.607169, 0.050269;;, + 66;3; 3.174013, 4.607169, 0.050269;;, + 67;3; 3.174013, 4.607169, 0.050269;;, + 68;3; 3.174013, 4.607169, 0.050269;;, + 69;3; 3.174013, 4.607169, 0.050269;;, + 70;3; 3.174013, 4.607169, 0.050269;;, + 71;3; 3.174013, 4.607169, 0.050269;;, + 72;3; 3.174013, 4.607169, 0.050269;;, + 73;3; 3.174013, 4.607169, 0.050269;;, + 74;3; 3.174013, 4.607169, 0.050269;;, + 75;3; 3.174013, 4.607169, 0.050269;;, + 76;3; 3.174013, 4.607169, 0.050269;;, + 77;3; 3.174013, 4.607169, 0.050269;;, + 78;3; 3.174013, 4.607169, 0.050269;;, + 79;3; 3.174013, 4.607169, 0.050269;;, + 80;3; 3.174013, 4.607169, 0.050269;;, + 81;3; 3.174013, 4.607169, 0.050269;;, + 82;3; 3.174013, 4.607169, 0.050269;;, + 83;3; 3.174013, 4.607169, 0.050269;;, + 84;3; 3.174013, 4.607169, 0.050269;;, + 85;3; 3.174013, 4.607169, 0.050269;;, + 86;3; 3.174013, 4.607169, 0.050269;;, + 87;3; 3.174013, 4.607170, 0.050269;;, + 88;3; 3.174013, 4.607169, 0.050269;;, + 89;3; 3.174014, 4.607170, 0.050269;;, + 90;3; 3.174014, 4.607169, 0.050269;;, + 91;3; 3.174013, 4.607168, 0.050269;;, + 92;3; 3.174013, 4.607170, 0.050269;;, + 93;3; 3.174014, 4.607169, 0.050269;;, + 94;3; 3.174014, 4.607169, 0.050269;;, + 95;3; 3.174014, 4.607168, 0.050269;;, + 96;3; 3.174013, 4.607168, 0.050269;;, + 97;3; 3.174014, 4.607169, 0.050269;;, + 98;3; 3.174014, 4.607168, 0.050269;;, + 99;3; 3.174014, 4.607169, 0.050269;;, + 100;3; 3.174014, 4.607170, 0.050269;;, + 101;3; 3.174014, 4.607169, 0.050269;;, + 102;3; 3.174014, 4.607170, 0.050269;;, + 103;3; 3.174014, 4.607169, 0.050269;;, + 104;3; 3.174014, 4.607169, 0.050269;;, + 105;3; 3.174014, 4.607169, 0.050269;;, + 106;3; 3.174014, 4.607169, 0.050269;;, + 107;3; 3.174014, 4.607169, 0.050269;;, + 108;3; 3.174014, 4.607169, 0.050269;;, + 109;3; 3.174013, 4.607169, 0.050269;;, + 110;3; 3.174013, 4.607169, 0.050269;;, + 111;3; 3.174013, 4.607169, 0.050269;;, + 112;3; 3.174013, 4.607169, 0.050269;;, + 113;3; 3.174013, 4.607169, 0.050269;;, + 114;3; 3.174013, 4.607169, 0.050269;;, + 115;3; 3.174013, 4.607169, 0.050269;;, + 116;3; 3.174013, 4.607169, 0.050269;;, + 117;3; 3.174013, 4.607169, 0.050269;;, + 118;3; 3.174013, 4.607169, 0.050269;;, + 119;3; 3.174013, 4.607169, 0.050269;;, + 120;3; 3.174014, 4.607171, 0.050269;;, + 121;3; 3.174013, 4.607170, 0.050269;;, + 122;3; 3.174013, 4.607169, 0.050269;;, + 123;3; 3.174013, 4.607169, 0.050269;;, + 124;3; 3.174013, 4.607170, 0.050269;;, + 125;3; 3.174013, 4.607170, 0.050269;;, + 126;3; 3.174013, 4.607169, 0.050270;;, + 127;3; 3.174013, 4.607169, 0.050270;;, + 128;3; 3.174013, 4.607169, 0.050270;;, + 129;3; 3.174013, 4.607170, 0.050269;;, + 130;3; 3.174013, 4.607170, 0.050269;;, + 131;3; 3.174013, 4.607170, 0.050269;;, + 132;3; 3.174013, 4.607170, 0.050269;;, + 133;3; 3.174013, 4.607170, 0.050269;;, + 134;3; 3.174013, 4.607170, 0.050269;;, + 135;3; 3.174013, 4.607170, 0.050269;;, + 136;3; 3.174013, 4.607170, 0.050269;;, + 137;3; 3.174013, 4.607170, 0.050269;;, + 138;3; 3.174013, 4.607170, 0.050269;;, + 139;3; 3.174013, 4.607170, 0.050269;;, + 140;3; 3.174013, 4.607170, 0.050269;;, + 141;3; 3.174013, 4.607170, 0.050269;;, + 142;3; 3.174013, 4.607170, 0.050269;;, + 143;3; 3.174013, 4.607170, 0.050269;;, + 144;3; 3.174013, 4.607170, 0.050269;;, + 145;3; 3.174013, 4.607170, 0.050269;;; + } + } + Animation { + {Skeleton_Rig_Head} + AnimationKey { // Rotation + 0; + 146; + 0;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 1;4;-1.000000,-0.000000,-0.000000, 0.000539;;, + 2;4;-0.999998,-0.000000,-0.000000, 0.002108;;, + 3;4;-0.999990,-0.000000,-0.000000, 0.004363;;, + 4;4;-0.999978,-0.000000,-0.000000, 0.006619;;, + 5;4;-0.999967,-0.000000,-0.000000, 0.008187;;, + 6;4;-0.999962, 0.000000,-0.000000, 0.008726;;, + 7;4;-0.999966, 0.000000,-0.000000, 0.008192;;, + 8;4;-0.999978, 0.000000,-0.000000, 0.006582;;, + 9;4;-0.999991, 0.000000,-0.000000, 0.004231;;, + 10;4;-0.999998, 0.000000,-0.000000, 0.001848;;, + 11;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 12;4;-0.999999, 0.000000,-0.000000,-0.001594;;, + 13;4;-0.999994, 0.000000,-0.000000,-0.003332;;, + 14;4;-0.999987, 0.000000,-0.000000,-0.005080;;, + 15;4;-0.999978, 0.000000,-0.000000,-0.006638;;, + 16;4;-0.999969, 0.000000,-0.000000,-0.007813;;, + 17;4;-0.999964, 0.000000,-0.000000,-0.008507;;, + 18;4;-0.999962,-0.000000,-0.000000,-0.008726;;, + 19;4;-0.999967,-0.000000,-0.000000,-0.008187;;, + 20;4;-0.999978,-0.000000,-0.000000,-0.006619;;, + 21;4;-0.999990,-0.000000,-0.000000,-0.004363;;, + 22;4;-0.999998,-0.000000,-0.000000,-0.002108;;, + 23;4;-1.000000,-0.000000,-0.000000,-0.000539;;, + 24;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 50;4;-0.999933,-0.001532, 0.011461, 0.000554;;, + 51;4;-0.998925,-0.006134, 0.045894, 0.002220;;, + 52;4;-0.994831,-0.013440, 0.100537, 0.004863;;, + 53;4;-0.985640,-0.022350, 0.167181, 0.008087;;, + 54;4;-0.971901,-0.031158, 0.233048, 0.011273;;, + 55;4;-0.957393,-0.038227, 0.285912, 0.013831;;, + 56;4;-0.946771,-0.042611, 0.318703, 0.015418;;, + 57;4;-0.942982,-0.044059, 0.329528, 0.015941;;, + 58;4;-0.946771,-0.042611, 0.318703, 0.015418;;, + 59;4;-0.957393,-0.038227, 0.285912, 0.013831;;, + 60;4;-0.971901,-0.031158, 0.233048, 0.011273;;, + 61;4;-0.985640,-0.022350, 0.167181, 0.008087;;, + 62;4;-0.994831,-0.013440, 0.100537, 0.004863;;, + 63;4;-0.998925,-0.006134, 0.045894, 0.002220;;, + 64;4;-0.999933,-0.001532, 0.011461, 0.000554;;, + 65;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 85;4;-0.998508, 0.000000, 0.054601, 0.000000;;, + 86;4;-0.985210, 0.000000, 0.171352, 0.000000;;, + 87;4;-0.974389, 0.000000, 0.224871, 0.000000;;, + 88;4;-0.974883, 0.000000, 0.222717, 0.000000;;, + 89;4;-0.976351, 0.000000, 0.216193, 0.000000;;, + 90;4;-0.978700, 0.000000, 0.205297, 0.000000;;, + 91;4;-0.981745, 0.000000, 0.190204, 0.000000;;, + 92;4;-0.985213, 0.000000, 0.171336, 0.000000;;, + 93;4;-0.988774, 0.000000, 0.149416, 0.000000;;, + 94;4;-0.992097, 0.000000, 0.125476, 0.000000;;, + 95;4;-0.994908, 0.000000, 0.100786, 0.000000;;, + 96;4;-0.997053, 0.000000, 0.076717, 0.000000;;, + 97;4;-0.998510, 0.000000, 0.054565, 0.000000;;, + 98;4;-0.999373, 0.000000, 0.035410, 0.000000;;, + 99;4;-0.999799, 0.000000, 0.020028, 0.000000;;, + 100;4;-0.999960, 0.000000, 0.008891, 0.000000;;, + 101;4;-0.999998, 0.000000, 0.002208, 0.000000;;, + 102;4;-1.000000,-0.000000,-0.000000,-0.000000;;, + 103;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 105;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 106;4;-1.000000,-0.000000,-0.000000,-0.000000;;, + 107;4;-1.000000,-0.000000,-0.000000,-0.000000;;, + 108;4;-1.000000, 0.000000,-0.000000,-0.000000;;, + 109;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 117;4;-0.999998,-0.001769,-0.000000,-0.000000;;, + 118;4;-0.999975,-0.007114,-0.000000,-0.000000;;, + 119;4;-0.999873,-0.015971,-0.000000,-0.000000;;, + 120;4;-0.999607,-0.028046,-0.000000,-0.000000;;, + 121;4;-0.999086,-0.042752,-0.000000,-0.000000;;, + 122;4;-0.998247,-0.059194,-0.000000,-0.000000;;, + 123;4;-0.997090,-0.076231,-0.000000,-0.000000;;, + 124;4;-0.995700,-0.092636,-0.000000,-0.000000;;, + 125;4;-0.994229,-0.107278,-0.000000,-0.000000;;, + 126;4;-0.992861,-0.119278,-0.000000,-0.000000;;, + 127;4;-0.991765,-0.128068,-0.000000,-0.000000;;, + 128;4;-0.991067,-0.133369,-0.000000,-0.000000;;, + 129;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 130;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 131;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 132;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 133;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 134;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 135;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 136;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 137;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 138;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 139;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 140;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 141;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 142;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 143;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 144;4;-0.990829,-0.135121,-0.000000, 0.000000;;, + 145;4;-0.990829,-0.135121,-0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-0.100540, 6.617979,-0.000000;;, + 1;3;-0.100540, 6.617979,-0.000000;;, + 2;3;-0.100540, 6.617979,-0.000000;;, + 3;3;-0.100540, 6.617979,-0.000000;;, + 4;3;-0.100540, 6.617979,-0.000000;;, + 5;3;-0.100540, 6.617979,-0.000000;;, + 6;3;-0.100540, 6.617979,-0.000000;;, + 7;3;-0.100540, 6.617979,-0.000000;;, + 8;3;-0.100540, 6.617979,-0.000000;;, + 9;3;-0.100540, 6.617979,-0.000000;;, + 10;3;-0.100540, 6.617979,-0.000000;;, + 11;3;-0.100540, 6.617979,-0.000000;;, + 12;3;-0.100540, 6.617979,-0.000000;;, + 13;3;-0.100540, 6.617979,-0.000000;;, + 14;3;-0.100540, 6.617979,-0.000000;;, + 15;3;-0.100540, 6.617979,-0.000000;;, + 16;3;-0.100540, 6.617979,-0.000000;;, + 17;3;-0.100540, 6.617979,-0.000000;;, + 18;3;-0.100540, 6.617979,-0.000000;;, + 19;3;-0.100540, 6.617979,-0.000000;;, + 20;3;-0.100540, 6.617979,-0.000000;;, + 21;3;-0.100540, 6.617979,-0.000000;;, + 22;3;-0.100540, 6.617979,-0.000000;;, + 23;3;-0.100540, 6.617979,-0.000000;;, + 24;3;-0.100540, 6.617979,-0.000000;;, + 25;3;-0.100540, 6.617979,-0.000000;;, + 26;3;-0.100540, 6.617979,-0.000000;;, + 27;3;-0.100540, 6.617979,-0.000000;;, + 28;3;-0.100540, 6.617979,-0.000000;;, + 29;3;-0.100540, 6.617979,-0.000000;;, + 30;3;-0.100540, 6.617979,-0.000000;;, + 31;3;-0.100540, 6.617979,-0.000000;;, + 32;3;-0.100540, 6.617979,-0.000000;;, + 33;3;-0.100540, 6.617979,-0.000000;;, + 34;3;-0.100540, 6.617979,-0.000000;;, + 35;3;-0.100540, 6.617979,-0.000000;;, + 36;3;-0.100540, 6.617979,-0.000000;;, + 37;3;-0.100540, 6.617979,-0.000000;;, + 38;3;-0.100540, 6.617979,-0.000000;;, + 39;3;-0.100540, 6.617979,-0.000000;;, + 40;3;-0.100540, 6.617979,-0.000000;;, + 41;3;-0.100540, 6.617979,-0.000000;;, + 42;3;-0.100540, 6.617979,-0.000000;;, + 43;3;-0.100540, 6.617979,-0.000000;;, + 44;3;-0.100540, 6.617979,-0.000000;;, + 45;3;-0.100540, 6.617979,-0.000000;;, + 46;3;-0.100540, 6.617979,-0.000000;;, + 47;3;-0.100540, 6.617979,-0.000000;;, + 48;3;-0.100540, 6.617979,-0.000000;;, + 49;3;-0.100540, 6.617979,-0.000000;;, + 50;3;-0.100540, 6.617979,-0.000000;;, + 51;3;-0.100540, 6.617979,-0.000000;;, + 52;3;-0.100540, 6.617979,-0.000000;;, + 53;3;-0.100540, 6.617979,-0.000000;;, + 54;3;-0.100540, 6.617979,-0.000000;;, + 55;3;-0.100540, 6.617979,-0.000000;;, + 56;3;-0.100540, 6.617979,-0.000000;;, + 57;3;-0.100540, 6.617979,-0.000000;;, + 58;3;-0.100540, 6.617979,-0.000000;;, + 59;3;-0.100540, 6.617979,-0.000000;;, + 60;3;-0.100540, 6.617979,-0.000000;;, + 61;3;-0.100540, 6.617979,-0.000000;;, + 62;3;-0.100540, 6.617979,-0.000000;;, + 63;3;-0.100540, 6.617979,-0.000000;;, + 64;3;-0.100540, 6.617979,-0.000000;;, + 65;3;-0.100540, 6.617979,-0.000000;;, + 66;3;-0.100540, 6.617979,-0.000000;;, + 67;3;-0.100540, 6.617979,-0.000000;;, + 68;3;-0.100540, 6.617979,-0.000000;;, + 69;3;-0.100540, 6.617979,-0.000000;;, + 70;3;-0.100540, 6.617979,-0.000000;;, + 71;3;-0.100540, 6.617979,-0.000000;;, + 72;3;-0.100540, 6.617979,-0.000000;;, + 73;3;-0.100540, 6.617979,-0.000000;;, + 74;3;-0.100540, 6.617979,-0.000000;;, + 75;3;-0.100540, 6.617979,-0.000000;;, + 76;3;-0.100540, 6.617979,-0.000000;;, + 77;3;-0.100540, 6.617979,-0.000000;;, + 78;3;-0.100540, 6.617979,-0.000000;;, + 79;3;-0.100540, 6.617979,-0.000000;;, + 80;3;-0.100540, 6.617979,-0.000000;;, + 81;3;-0.100540, 6.617979,-0.000000;;, + 82;3;-0.100540, 6.617979,-0.000000;;, + 83;3;-0.100540, 6.617979,-0.000000;;, + 84;3;-0.100540, 6.617979,-0.000000;;, + 85;3;-0.100540, 6.617980,-0.000000;;, + 86;3;-0.100540, 6.617978,-0.000000;;, + 87;3;-0.100540, 6.617981,-0.000000;;, + 88;3;-0.100540, 6.617980,-0.000000;;, + 89;3;-0.100540, 6.617981,-0.000000;;, + 90;3;-0.100540, 6.617980,-0.000000;;, + 91;3;-0.100540, 6.617979,-0.000000;;, + 92;3;-0.100540, 6.617980,-0.000000;;, + 93;3;-0.100540, 6.617980,-0.000000;;, + 94;3;-0.100540, 6.617978,-0.000000;;, + 95;3;-0.100540, 6.617977,-0.000000;;, + 96;3;-0.100540, 6.617978,-0.000000;;, + 97;3;-0.100540, 6.617979,-0.000000;;, + 98;3;-0.100540, 6.617978,-0.000000;;, + 99;3;-0.100540, 6.617979,-0.000000;;, + 100;3;-0.100540, 6.617980,-0.000000;;, + 101;3;-0.100540, 6.617979,-0.000000;;, + 102;3;-0.100540, 6.617980,-0.000000;;, + 103;3;-0.100540, 6.617979,-0.000000;;, + 104;3;-0.100540, 6.617979,-0.000000;;, + 105;3;-0.100540, 6.617979,-0.000000;;, + 106;3;-0.100540, 6.617979,-0.000000;;, + 107;3;-0.100540, 6.617979,-0.000000;;, + 108;3;-0.100540, 6.617979,-0.000000;;, + 109;3;-0.100540, 6.617979,-0.000000;;, + 110;3;-0.100540, 6.617979,-0.000000;;, + 111;3;-0.100540, 6.617979,-0.000000;;, + 112;3;-0.100540, 6.617979,-0.000000;;, + 113;3;-0.100540, 6.617979,-0.000000;;, + 114;3;-0.100540, 6.617979,-0.000000;;, + 115;3;-0.100540, 6.617979,-0.000000;;, + 116;3;-0.100540, 6.617979,-0.000000;;, + 117;3;-0.100540, 6.617979,-0.000000;;, + 118;3;-0.100540, 6.617980,-0.000000;;, + 119;3;-0.100540, 6.617980,-0.000000;;, + 120;3;-0.100540, 6.617980,-0.000000;;, + 121;3;-0.100540, 6.617980,-0.000000;;, + 122;3;-0.100540, 6.617978,-0.000000;;, + 123;3;-0.100540, 6.617979,-0.000000;;, + 124;3;-0.100540, 6.617980,-0.000001;;, + 125;3;-0.100540, 6.617979, 0.000000;;, + 126;3;-0.100540, 6.617979, 0.000000;;, + 127;3;-0.100540, 6.617979,-0.000000;;, + 128;3;-0.100540, 6.617978,-0.000000;;, + 129;3;-0.100540, 6.617979,-0.000000;;, + 130;3;-0.100540, 6.617979,-0.000000;;, + 131;3;-0.100540, 6.617979,-0.000000;;, + 132;3;-0.100540, 6.617979,-0.000000;;, + 133;3;-0.100540, 6.617979,-0.000000;;, + 134;3;-0.100540, 6.617979,-0.000000;;, + 135;3;-0.100540, 6.617979,-0.000000;;, + 136;3;-0.100540, 6.617979,-0.000000;;, + 137;3;-0.100540, 6.617979,-0.000000;;, + 138;3;-0.100540, 6.617979,-0.000000;;, + 139;3;-0.100540, 6.617979,-0.000000;;, + 140;3;-0.100540, 6.617979,-0.000000;;, + 141;3;-0.100540, 6.617979,-0.000000;;, + 142;3;-0.100540, 6.617979,-0.000000;;, + 143;3;-0.100540, 6.617979,-0.000000;;, + 144;3;-0.100540, 6.617979,-0.000000;;, + 145;3;-0.100540, 6.617979,-0.000000;;; + } + } + Animation { + {Skeleton_Rig_Hand_L} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 1;4;-0.701061,-0.713101,-0.000000, 0.000000;;, + 2;4;-0.703295,-0.710898,-0.000000, 0.000000;;, + 3;4;-0.706495,-0.707718,-0.000000, 0.000000;;, + 4;4;-0.709680,-0.704524,-0.000000, 0.000000;;, + 5;4;-0.711887,-0.702294,-0.000000, 0.000000;;, + 6;4;-0.712644,-0.701526,-0.000000, 0.000000;;, + 7;4;-0.711894,-0.702287,-0.000000, 0.000000;;, + 8;4;-0.709628,-0.704576,-0.000000, 0.000000;;, + 9;4;-0.706308,-0.707905,-0.000000, 0.000000;;, + 10;4;-0.702926,-0.711263,-0.000000, 0.000000;;, + 11;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 12;4;-0.698014,-0.716085,-0.000000, 0.000000;;, + 13;4;-0.695520,-0.718507,-0.000000, 0.000000;;, + 14;4;-0.693003,-0.720935,-0.000000, 0.000000;;, + 15;4;-0.690754,-0.723090,-0.000000, 0.000000;;, + 16;4;-0.689052,-0.724712,-0.000000, 0.000000;;, + 17;4;-0.688045,-0.725668,-0.000000, 0.000000;;, + 18;4;-0.687727,-0.725969,-0.000000, 0.000000;;, + 19;4;-0.688509,-0.725228,-0.000000, 0.000000;;, + 20;4;-0.690781,-0.723064,-0.000000, 0.000000;;, + 21;4;-0.694036,-0.719940,-0.000000, 0.000000;;, + 22;4;-0.697276,-0.716802,-0.000000, 0.000000;;, + 23;4;-0.699522,-0.714611,-0.000000, 0.000000;;, + 24;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 25;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 26;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 27;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 28;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 29;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 30;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 31;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 32;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 33;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 34;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 35;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 36;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 37;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 38;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 39;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 40;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 41;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 42;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 43;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 44;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 45;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 46;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 47;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 48;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 49;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 50;4;-0.702512,-0.711669, 0.001937,-0.000754;;, + 51;4;-0.709079,-0.705077, 0.008222,-0.002513;;, + 52;4;-0.719220,-0.694501, 0.019356,-0.004066;;, + 53;4;-0.731200,-0.681242, 0.035253,-0.003664;;, + 54;4;-0.742631,-0.667437, 0.055020, 0.000540;;, + 55;4;-0.751291,-0.655368, 0.077184, 0.009819;;, + 56;4;-0.755774,-0.646648, 0.100255, 0.024523;;, + 57;4;-0.755530,-0.641917, 0.123114, 0.044275;;, + 58;4;-0.745531,-0.640382, 0.164121, 0.084611;;, + 59;4;-0.731959,-0.644199, 0.191210, 0.112619;;, + 60;4;-0.725785,-0.655609, 0.178957, 0.106712;;, + 61;4;-0.720525,-0.672562, 0.144688, 0.087003;;, + 62;4;-0.714649,-0.690560, 0.095296, 0.057639;;, + 63;4;-0.707879,-0.704293, 0.045857, 0.027850;;, + 64;4;-0.702340,-0.711711, 0.011671, 0.007108;;, + 65;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 66;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 67;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 68;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 69;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 70;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 71;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 72;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 73;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 74;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 75;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 76;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 77;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 78;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 79;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 80;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 81;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 82;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 83;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 84;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 85;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 86;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 87;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 88;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 89;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 90;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 91;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 92;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 93;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 94;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 95;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 96;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 97;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 98;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 99;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 100;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 101;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 102;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 103;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 104;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 105;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 106;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 107;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 108;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 109;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 110;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 111;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 112;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 113;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 114;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 115;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 116;4;-0.700292,-0.713856,-0.000000, 0.000000;;, + 117;4;-0.700258,-0.713821, 0.006880, 0.007119;;, + 118;4;-0.699723,-0.713276, 0.028017, 0.028989;;, + 119;4;-0.697308,-0.710814, 0.064091, 0.066314;;, + 120;4;-0.690632,-0.704009, 0.115031, 0.119023;;, + 121;4;-0.676707,-0.689814, 0.178836, 0.185044;;, + 122;4;-0.653192,-0.665843, 0.250557, 0.259256;;, + 123;4;-0.620221,-0.632234, 0.322685, 0.333888;;, + 124;4;-0.581300,-0.592559, 0.387528, 0.400982;;, + 125;4;-0.542038,-0.552537, 0.440014, 0.455286;;, + 126;4;-0.507748,-0.517583, 0.478605, 0.495213;;, + 127;4;-0.481935,-0.491270, 0.504206, 0.521698;;, + 128;4;-0.466229,-0.475260, 0.518546, 0.536534;;, + 129;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 130;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 131;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 132;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 133;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 134;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 135;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 136;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 137;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 138;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 139;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 140;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 141;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 142;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 143;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 144;4;-0.461025,-0.469954, 0.523110, 0.541254;;, + 145;4;-0.461025,-0.469954, 0.523110, 0.541254;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-3.271756, 4.607169, 0.050271;;, + 1;3;-3.271756, 4.607169, 0.050271;;, + 2;3;-3.271756, 4.607169, 0.050271;;, + 3;3;-3.271756, 4.607169, 0.050271;;, + 4;3;-3.271756, 4.607169, 0.050271;;, + 5;3;-3.271756, 4.607169, 0.050271;;, + 6;3;-3.271756, 4.607169, 0.050271;;, + 7;3;-3.271756, 4.607169, 0.050271;;, + 8;3;-3.271756, 4.607169, 0.050271;;, + 9;3;-3.271756, 4.607169, 0.050271;;, + 10;3;-3.271756, 4.607169, 0.050271;;, + 11;3;-3.271756, 4.607169, 0.050271;;, + 12;3;-3.271756, 4.607169, 0.050271;;, + 13;3;-3.271756, 4.607169, 0.050271;;, + 14;3;-3.271756, 4.607169, 0.050271;;, + 15;3;-3.271756, 4.607169, 0.050271;;, + 16;3;-3.271756, 4.607169, 0.050271;;, + 17;3;-3.271756, 4.607169, 0.050271;;, + 18;3;-3.271756, 4.607169, 0.050271;;, + 19;3;-3.271756, 4.607169, 0.050271;;, + 20;3;-3.271756, 4.607169, 0.050271;;, + 21;3;-3.271756, 4.607169, 0.050271;;, + 22;3;-3.271756, 4.607169, 0.050271;;, + 23;3;-3.271756, 4.607169, 0.050271;;, + 24;3;-3.271756, 4.607169, 0.050271;;, + 25;3;-3.271756, 4.607169, 0.050271;;, + 26;3;-3.271756, 4.607169, 0.050271;;, + 27;3;-3.271756, 4.607169, 0.050271;;, + 28;3;-3.271756, 4.607169, 0.050271;;, + 29;3;-3.271756, 4.607169, 0.050271;;, + 30;3;-3.271756, 4.607169, 0.050271;;, + 31;3;-3.271756, 4.607169, 0.050271;;, + 32;3;-3.271756, 4.607169, 0.050271;;, + 33;3;-3.271756, 4.607169, 0.050271;;, + 34;3;-3.271756, 4.607169, 0.050271;;, + 35;3;-3.271756, 4.607169, 0.050271;;, + 36;3;-3.271756, 4.607169, 0.050271;;, + 37;3;-3.271756, 4.607169, 0.050271;;, + 38;3;-3.271756, 4.607169, 0.050271;;, + 39;3;-3.271756, 4.607169, 0.050271;;, + 40;3;-3.271756, 4.607169, 0.050271;;, + 41;3;-3.271756, 4.607169, 0.050271;;, + 42;3;-3.271756, 4.607169, 0.050271;;, + 43;3;-3.271756, 4.607169, 0.050271;;, + 44;3;-3.271756, 4.607169, 0.050271;;, + 45;3;-3.271756, 4.607169, 0.050271;;, + 46;3;-3.271756, 4.607169, 0.050271;;, + 47;3;-3.271756, 4.607169, 0.050271;;, + 48;3;-3.271756, 4.607169, 0.050271;;, + 49;3;-3.271756, 4.607169, 0.050271;;, + 50;3;-3.271757, 4.607169, 0.050271;;, + 51;3;-3.271757, 4.607169, 0.050271;;, + 52;3;-3.271757, 4.607169, 0.050271;;, + 53;3;-3.271756, 4.607169, 0.050271;;, + 54;3;-3.271757, 4.607169, 0.050271;;, + 55;3;-3.271757, 4.607169, 0.050271;;, + 56;3;-3.271757, 4.607169, 0.050271;;, + 57;3;-3.271756, 4.607169, 0.050271;;, + 58;3;-3.271757, 4.607169, 0.050271;;, + 59;3;-3.271757, 4.607169, 0.050271;;, + 60;3;-3.271757, 4.607169, 0.050271;;, + 61;3;-3.271757, 4.607169, 0.050271;;, + 62;3;-3.271756, 4.607169, 0.050271;;, + 63;3;-3.271757, 4.607169, 0.050271;;, + 64;3;-3.271757, 4.607169, 0.050271;;, + 65;3;-3.271756, 4.607169, 0.050271;;, + 66;3;-3.271756, 4.607169, 0.050271;;, + 67;3;-3.271756, 4.607169, 0.050271;;, + 68;3;-3.271756, 4.607169, 0.050271;;, + 69;3;-3.271756, 4.607169, 0.050271;;, + 70;3;-3.271756, 4.607169, 0.050271;;, + 71;3;-3.271756, 4.607169, 0.050271;;, + 72;3;-3.271756, 4.607169, 0.050271;;, + 73;3;-3.271756, 4.607169, 0.050271;;, + 74;3;-3.271756, 4.607169, 0.050271;;, + 75;3;-3.271756, 4.607169, 0.050271;;, + 76;3;-3.271756, 4.607169, 0.050271;;, + 77;3;-3.271756, 4.607169, 0.050271;;, + 78;3;-3.271756, 4.607169, 0.050271;;, + 79;3;-3.271756, 4.607169, 0.050271;;, + 80;3;-3.271756, 4.607169, 0.050271;;, + 81;3;-3.271756, 4.607169, 0.050271;;, + 82;3;-3.271756, 4.607169, 0.050271;;, + 83;3;-3.271756, 4.607169, 0.050271;;, + 84;3;-3.271756, 4.607169, 0.050271;;, + 85;3;-3.271757, 4.607169, 0.050271;;, + 86;3;-3.271756, 4.607169, 0.050271;;, + 87;3;-3.271756, 4.607170, 0.050271;;, + 88;3;-3.271756, 4.607169, 0.050271;;, + 89;3;-3.271756, 4.607170, 0.050271;;, + 90;3;-3.271756, 4.607169, 0.050271;;, + 91;3;-3.271756, 4.607168, 0.050271;;, + 92;3;-3.271756, 4.607170, 0.050271;;, + 93;3;-3.271757, 4.607169, 0.050271;;, + 94;3;-3.271756, 4.607169, 0.050271;;, + 95;3;-3.271756, 4.607168, 0.050271;;, + 96;3;-3.271756, 4.607168, 0.050271;;, + 97;3;-3.271756, 4.607169, 0.050271;;, + 98;3;-3.271756, 4.607168, 0.050271;;, + 99;3;-3.271756, 4.607169, 0.050271;;, + 100;3;-3.271756, 4.607170, 0.050271;;, + 101;3;-3.271756, 4.607169, 0.050271;;, + 102;3;-3.271756, 4.607170, 0.050271;;, + 103;3;-3.271756, 4.607169, 0.050271;;, + 104;3;-3.271757, 4.607169, 0.050271;;, + 105;3;-3.271756, 4.607169, 0.050271;;, + 106;3;-3.271756, 4.607169, 0.050271;;, + 107;3;-3.271756, 4.607169, 0.050271;;, + 108;3;-3.271756, 4.607169, 0.050271;;, + 109;3;-3.271756, 4.607169, 0.050271;;, + 110;3;-3.271756, 4.607169, 0.050271;;, + 111;3;-3.271756, 4.607169, 0.050271;;, + 112;3;-3.271756, 4.607169, 0.050271;;, + 113;3;-3.271756, 4.607169, 0.050271;;, + 114;3;-3.271756, 4.607169, 0.050271;;, + 115;3;-3.271756, 4.607169, 0.050271;;, + 116;3;-3.271756, 4.607169, 0.050271;;, + 117;3;-3.271756, 4.607169, 0.050271;;, + 118;3;-3.271756, 4.607169, 0.050271;;, + 119;3;-3.271756, 4.607169, 0.050271;;, + 120;3;-3.271756, 4.607171, 0.050271;;, + 121;3;-3.271756, 4.607170, 0.050271;;, + 122;3;-3.271756, 4.607169, 0.050271;;, + 123;3;-3.271756, 4.607169, 0.050271;;, + 124;3;-3.271756, 4.607170, 0.050271;;, + 125;3;-3.271756, 4.607169, 0.050271;;, + 126;3;-3.271756, 4.607170, 0.050271;;, + 127;3;-3.271756, 4.607169, 0.050271;;, + 128;3;-3.271756, 4.607169, 0.050271;;, + 129;3;-3.271756, 4.607170, 0.050271;;, + 130;3;-3.271756, 4.607170, 0.050271;;, + 131;3;-3.271756, 4.607170, 0.050271;;, + 132;3;-3.271756, 4.607170, 0.050271;;, + 133;3;-3.271756, 4.607170, 0.050271;;, + 134;3;-3.271756, 4.607170, 0.050271;;, + 135;3;-3.271756, 4.607170, 0.050271;;, + 136;3;-3.271756, 4.607170, 0.050271;;, + 137;3;-3.271756, 4.607170, 0.050271;;, + 138;3;-3.271756, 4.607170, 0.050271;;, + 139;3;-3.271756, 4.607170, 0.050271;;, + 140;3;-3.271756, 4.607170, 0.050271;;, + 141;3;-3.271756, 4.607170, 0.050271;;, + 142;3;-3.271756, 4.607170, 0.050271;;, + 143;3;-3.271756, 4.607170, 0.050271;;, + 144;3;-3.271756, 4.607170, 0.050271;;, + 145;3;-3.271756, 4.607170, 0.050271;;; + } + } + Animation { + {Skeleton_Rig_Leg_R} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 2;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 3;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 4;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 5;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 6;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 7;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 8;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 9;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 10;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 11;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 12;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 13;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 14;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 15;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 16;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 17;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 18;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 19;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 20;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 21;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 22;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 23;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 24;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 25;4;-0.005924, 0.999982,-0.000000,-0.000000;;, + 26;4;-0.023467, 0.999725,-0.000000,-0.000000;;, + 27;4;-0.050231, 0.998738,-0.000000,-0.000000;;, + 28;4;-0.080563, 0.996750,-0.000000,-0.000000;;, + 29;4;-0.107224, 0.994235,-0.000000,-0.000000;;, + 30;4;-0.124652, 0.992201,-0.000000,-0.000000;;, + 31;4;-0.130526, 0.991445,-0.000000,-0.000000;;, + 32;4;-0.125451, 0.992100,-0.000000,-0.000000;;, + 33;4;-0.109688, 0.993966,-0.000000,-0.000000;;, + 34;4;-0.084434, 0.996429,-0.000000,-0.000000;;, + 35;4;-0.054183, 0.998531,-0.000000,-0.000000;;, + 36;4;-0.024731, 0.999694,-0.000000,-0.000000;;, + 37;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 38;4; 0.024730, 0.999694,-0.000000,-0.000000;;, + 39;4; 0.054184, 0.998531,-0.000000,-0.000000;;, + 40;4; 0.084433, 0.996429,-0.000000,-0.000000;;, + 41;4; 0.109687, 0.993966,-0.000000,-0.000000;;, + 42;4; 0.125449, 0.992100,-0.000000,-0.000000;;, + 43;4; 0.130526, 0.991445,-0.000000, 0.000000;;, + 44;4; 0.122523, 0.992466,-0.000000, 0.000000;;, + 45;4; 0.099153, 0.995072,-0.000000,-0.000000;;, + 46;4; 0.065404, 0.997859,-0.000000,-0.000000;;, + 47;4; 0.031579, 0.999501,-0.000000,-0.000000;;, + 48;4; 0.008067, 0.999967,-0.000000,-0.000000;;, + 49;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 50;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 51;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 52;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 53;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 54;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 55;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 56;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 57;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 58;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 59;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 60;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 61;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 62;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 63;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 64;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 65;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 66;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 67;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 68;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 69;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 70;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 71;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 72;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 73;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 74;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 75;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 76;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 77;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 78;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 79;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 80;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 81;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 82;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 83;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 84;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 85;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 86;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 87;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 88;4;-0.017155, 0.999853,-0.000001,-0.000000;;, + 89;4;-0.062898, 0.998020,-0.000000,-0.000000;;, + 90;4;-0.111079, 0.993812,-0.000000,-0.000000;;, + 91;4;-0.130526, 0.991445,-0.000000,-0.000000;;, + 92;4;-0.119055, 0.992888,-0.000000,-0.000000;;, + 93;4;-0.084096, 0.996458,-0.000000,-0.000000;;, + 94;4;-0.038280, 0.999267,-0.000000,-0.000000;;, + 95;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 96;4; 0.045301, 0.998973,-0.000001,-0.000000;;, + 97;4; 0.102667, 0.994716,-0.000000,-0.000000;;, + 98;4; 0.130525, 0.991445,-0.000000, 0.000000;;, + 99;4; 0.116260, 0.993219,-0.000001, 0.000000;;, + 100;4; 0.071352, 0.997451,-0.000000,-0.000000;;, + 101;4; 0.019432, 0.999811,-0.000000,-0.000000;;, + 102;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 103;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 104;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 105;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 106;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 107;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 108;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 109;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 110;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 111;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 112;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 113;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 114;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 115;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 116;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 117;4; 0.019244, 0.999815,-0.000000,-0.000000;;, + 118;4; 0.073603, 0.997288,-0.000000,-0.000000;;, + 119;4; 0.143186, 0.989696,-0.000000,-0.000000;;, + 120;4; 0.196863, 0.980431,-0.000000,-0.000000;;, + 121;4; 0.216181, 0.976353,-0.000000,-0.000000;;, + 122;4; 0.209651, 0.976810, 0.042178, 0.010439;;, + 123;4; 0.189108, 0.976242, 0.103701, 0.020891;;, + 124;4; 0.160128, 0.977726, 0.134250, 0.019704;;, + 125;4; 0.119905, 0.979920, 0.158483, 0.016202;;, + 126;4; 0.074592, 0.981713, 0.174791, 0.011149;;, + 127;4; 0.034501, 0.982419, 0.183370, 0.006098;;, + 128;4; 0.008548, 0.982407, 0.186541, 0.002595;;, + 129;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 130;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 131;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 132;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 133;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 134;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 135;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 136;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 137;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 138;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 139;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 140;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 141;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 142;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 143;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 144;4;-0.000000, 0.982338, 0.187109, 0.001395;;, + 145;4;-0.000000, 0.982338, 0.187109, 0.001395;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 1.206486, 0.069941,-0.000000;;, + 1;3; 1.206486, 0.069941,-0.000000;;, + 2;3; 1.206486, 0.069941,-0.000000;;, + 3;3; 1.206486, 0.069941,-0.000000;;, + 4;3; 1.206486, 0.069941,-0.000000;;, + 5;3; 1.206486, 0.069941,-0.000000;;, + 6;3; 1.206486, 0.069941,-0.000000;;, + 7;3; 1.206486, 0.069941,-0.000000;;, + 8;3; 1.206486, 0.069941,-0.000000;;, + 9;3; 1.206486, 0.069941,-0.000000;;, + 10;3; 1.206486, 0.069941,-0.000000;;, + 11;3; 1.206486, 0.069941,-0.000000;;, + 12;3; 1.206486, 0.069941,-0.000000;;, + 13;3; 1.206486, 0.069941,-0.000000;;, + 14;3; 1.206486, 0.069941,-0.000000;;, + 15;3; 1.206486, 0.069941,-0.000000;;, + 16;3; 1.206486, 0.069941,-0.000000;;, + 17;3; 1.206486, 0.069941,-0.000000;;, + 18;3; 1.206486, 0.069941,-0.000000;;, + 19;3; 1.206486, 0.069941,-0.000000;;, + 20;3; 1.206486, 0.069941,-0.000000;;, + 21;3; 1.206486, 0.069941,-0.000000;;, + 22;3; 1.206486, 0.069941,-0.000000;;, + 23;3; 1.206486, 0.069941,-0.000000;;, + 24;3; 1.206486, 0.069941,-0.000000;;, + 25;3; 1.206486, 0.069941,-0.000000;;, + 26;3; 1.206486, 0.069941,-0.000000;;, + 27;3; 1.206486, 0.069941,-0.000000;;, + 28;3; 1.206486, 0.069941,-0.000000;;, + 29;3; 1.206486, 0.069941,-0.000000;;, + 30;3; 1.206486, 0.069941,-0.000000;;, + 31;3; 1.206486, 0.069941,-0.000000;;, + 32;3; 1.206486, 0.069941,-0.000000;;, + 33;3; 1.206486, 0.069941,-0.000000;;, + 34;3; 1.206486, 0.069941,-0.000000;;, + 35;3; 1.206486, 0.069941,-0.000000;;, + 36;3; 1.206486, 0.069941,-0.000000;;, + 37;3; 1.206486, 0.069941,-0.000000;;, + 38;3; 1.206486, 0.069941,-0.000000;;, + 39;3; 1.206486, 0.069941,-0.000000;;, + 40;3; 1.206486, 0.069941,-0.000000;;, + 41;3; 1.206486, 0.069941,-0.000000;;, + 42;3; 1.206486, 0.069941,-0.000000;;, + 43;3; 1.206486, 0.069941,-0.000000;;, + 44;3; 1.206486, 0.069941,-0.000000;;, + 45;3; 1.206486, 0.069941,-0.000000;;, + 46;3; 1.206486, 0.069941,-0.000000;;, + 47;3; 1.206486, 0.069941,-0.000000;;, + 48;3; 1.206486, 0.069941,-0.000000;;, + 49;3; 1.206486, 0.069941,-0.000000;;, + 50;3; 1.206486, 0.069941,-0.000000;;, + 51;3; 1.206486, 0.069941,-0.000000;;, + 52;3; 1.206486, 0.069941,-0.000000;;, + 53;3; 1.206486, 0.069941,-0.000000;;, + 54;3; 1.206486, 0.069941,-0.000000;;, + 55;3; 1.206486, 0.069941,-0.000000;;, + 56;3; 1.206486, 0.069941,-0.000000;;, + 57;3; 1.206486, 0.069941,-0.000000;;, + 58;3; 1.206486, 0.069941,-0.000000;;, + 59;3; 1.206486, 0.069941,-0.000000;;, + 60;3; 1.206486, 0.069941,-0.000000;;, + 61;3; 1.206486, 0.069941,-0.000000;;, + 62;3; 1.206486, 0.069941,-0.000000;;, + 63;3; 1.206486, 0.069941,-0.000000;;, + 64;3; 1.206486, 0.069941,-0.000000;;, + 65;3; 1.206486, 0.069941,-0.000000;;, + 66;3; 1.206486, 0.069941,-0.000000;;, + 67;3; 1.206486, 0.069941,-0.000000;;, + 68;3; 1.206486, 0.069941,-0.000000;;, + 69;3; 1.206486, 0.069941,-0.000000;;, + 70;3; 1.206486, 0.069941,-0.000000;;, + 71;3; 1.206486, 0.069941,-0.000000;;, + 72;3; 1.206486, 0.069941,-0.000000;;, + 73;3; 1.206486, 0.069941,-0.000000;;, + 74;3; 1.206486, 0.069941,-0.000000;;, + 75;3; 1.206486, 0.069941,-0.000000;;, + 76;3; 1.206486, 0.069941,-0.000000;;, + 77;3; 1.206486, 0.069941,-0.000000;;, + 78;3; 1.206486, 0.069941,-0.000000;;, + 79;3; 1.206486, 0.069941,-0.000000;;, + 80;3; 1.206486, 0.069941,-0.000000;;, + 81;3; 1.206486, 0.069941,-0.000000;;, + 82;3; 1.206486, 0.069941,-0.000000;;, + 83;3; 1.206486, 0.069941,-0.000000;;, + 84;3; 1.206486, 0.069941,-0.000000;;, + 85;3; 1.206486, 0.069942,-0.000000;;, + 86;3; 1.206486, 0.069942,-0.000000;;, + 87;3; 1.206486, 0.069942,-0.000000;;, + 88;3; 1.206486, 0.069942,-0.000000;;, + 89;3; 1.206486, 0.069942,-0.000000;;, + 90;3; 1.206486, 0.069941,-0.000000;;, + 91;3; 1.206486, 0.069942,-0.000000;;, + 92;3; 1.206486, 0.069941,-0.000000;;, + 93;3; 1.206486, 0.069942,-0.000000;;, + 94;3; 1.206486, 0.069942,-0.000000;;, + 95;3; 1.206486, 0.069942,-0.000000;;, + 96;3; 1.206486, 0.069941,-0.000000;;, + 97;3; 1.206486, 0.069942,-0.000000;;, + 98;3; 1.206486, 0.069941,-0.000000;;, + 99;3; 1.206486, 0.069942,-0.000000;;, + 100;3; 1.206486, 0.069941,-0.000000;;, + 101;3; 1.206486, 0.069941,-0.000000;;, + 102;3; 1.206486, 0.069942,-0.000000;;, + 103;3; 1.206486, 0.069941,-0.000000;;, + 104;3; 1.206486, 0.069940,-0.000000;;, + 105;3; 1.206486, 0.069941,-0.000000;;, + 106;3; 1.206486, 0.069941,-0.000000;;, + 107;3; 1.206486, 0.069941,-0.000000;;, + 108;3; 1.206486, 0.069941,-0.000000;;, + 109;3; 1.206486, 0.069941,-0.000000;;, + 110;3; 1.206486, 0.069941,-0.000000;;, + 111;3; 1.206486, 0.069941,-0.000000;;, + 112;3; 1.206486, 0.069941,-0.000000;;, + 113;3; 1.206486, 0.069941,-0.000000;;, + 114;3; 1.206486, 0.069941,-0.000000;;, + 115;3; 1.206486, 0.069941,-0.000000;;, + 116;3; 1.206486, 0.069941,-0.000000;;, + 117;3; 1.206486, 0.069942,-0.000000;;, + 118;3; 1.206486, 0.069942,-0.000000;;, + 119;3; 1.206486, 0.069942,-0.000000;;, + 120;3; 1.206486, 0.069941,-0.000000;;, + 121;3; 1.206486, 0.069942,-0.000000;;, + 122;3; 1.206486, 0.069941,-0.000000;;, + 123;3; 1.206486, 0.069942,-0.000000;;, + 124;3; 1.206486, 0.069941,-0.000001;;, + 125;3; 1.206486, 0.069941, 0.000000;;, + 126;3; 1.206486, 0.069941, 0.000000;;, + 127;3; 1.206486, 0.069941,-0.000000;;, + 128;3; 1.206486, 0.069941, 0.000000;;, + 129;3; 1.206486, 0.069941,-0.000000;;, + 130;3; 1.206486, 0.069941,-0.000000;;, + 131;3; 1.206486, 0.069941,-0.000000;;, + 132;3; 1.206486, 0.069941,-0.000000;;, + 133;3; 1.206486, 0.069941,-0.000000;;, + 134;3; 1.206486, 0.069941,-0.000000;;, + 135;3; 1.206486, 0.069941,-0.000000;;, + 136;3; 1.206486, 0.069941,-0.000000;;, + 137;3; 1.206486, 0.069941,-0.000000;;, + 138;3; 1.206486, 0.069941,-0.000000;;, + 139;3; 1.206486, 0.069941,-0.000000;;, + 140;3; 1.206486, 0.069941,-0.000000;;, + 141;3; 1.206486, 0.069941,-0.000000;;, + 142;3; 1.206486, 0.069941,-0.000000;;, + 143;3; 1.206486, 0.069941,-0.000000;;, + 144;3; 1.206486, 0.069941,-0.000000;;, + 145;3; 1.206486, 0.069941,-0.000000;;; + } + } + Animation { + {Skeleton_Rig_Leg_L} + AnimationKey { // Rotation + 0; + 146; + 0;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 2;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 3;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 4;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 5;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 6;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 7;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 8;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 9;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 10;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 11;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 12;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 13;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 14;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 15;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 16;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 17;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 18;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 19;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 20;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 21;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 22;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 23;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 24;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 25;4; 0.005923, 0.999982,-0.000000,-0.000000;;, + 26;4; 0.023468, 0.999725,-0.000000,-0.000000;;, + 27;4; 0.050229, 0.998738,-0.000000,-0.000000;;, + 28;4; 0.080563, 0.996750,-0.000000,-0.000000;;, + 29;4; 0.107223, 0.994235,-0.000000,-0.000000;;, + 30;4; 0.124651, 0.992201,-0.000000,-0.000000;;, + 31;4; 0.130526, 0.991445,-0.000000,-0.000000;;, + 32;4; 0.125449, 0.992100,-0.000000,-0.000000;;, + 33;4; 0.109687, 0.993966,-0.000000,-0.000000;;, + 34;4; 0.084434, 0.996429,-0.000000,-0.000000;;, + 35;4; 0.054184, 0.998531,-0.000000,-0.000000;;, + 36;4; 0.024730, 0.999694,-0.000000,-0.000000;;, + 37;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 38;4;-0.024731, 0.999694,-0.000000,-0.000000;;, + 39;4;-0.054183, 0.998531,-0.000000,-0.000000;;, + 40;4;-0.084435, 0.996429,-0.000000,-0.000000;;, + 41;4;-0.109688, 0.993966,-0.000000,-0.000000;;, + 42;4;-0.125451, 0.992100,-0.000000,-0.000000;;, + 43;4;-0.130526, 0.991445,-0.000000,-0.000000;;, + 44;4;-0.122524, 0.992466,-0.000000,-0.000000;;, + 45;4;-0.099154, 0.995072,-0.000000,-0.000000;;, + 46;4;-0.065405, 0.997859,-0.000000,-0.000000;;, + 47;4;-0.031581, 0.999501,-0.000000,-0.000000;;, + 48;4;-0.008068, 0.999967,-0.000000,-0.000000;;, + 49;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 50;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 51;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 52;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 53;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 54;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 55;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 56;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 57;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 58;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 59;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 60;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 61;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 62;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 63;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 64;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 65;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 66;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 67;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 68;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 69;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 70;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 71;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 72;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 73;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 74;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 75;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 76;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 77;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 78;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 79;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 80;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 81;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 82;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 83;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 84;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 85;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 86;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 87;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 88;4; 0.017156, 0.999853,-0.000001,-0.000000;;, + 89;4; 0.062897, 0.998020,-0.000001,-0.000000;;, + 90;4; 0.111078, 0.993812,-0.000001,-0.000000;;, + 91;4; 0.130525, 0.991445,-0.000000,-0.000000;;, + 92;4; 0.119054, 0.992888,-0.000000,-0.000000;;, + 93;4; 0.084095, 0.996458,-0.000000,-0.000000;;, + 94;4; 0.038279, 0.999267,-0.000000,-0.000000;;, + 95;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 96;4;-0.045302, 0.998973,-0.000000,-0.000000;;, + 97;4;-0.102668, 0.994716,-0.000000,-0.000000;;, + 98;4;-0.130526, 0.991445,-0.000000,-0.000000;;, + 99;4;-0.116261, 0.993219,-0.000000,-0.000000;;, + 100;4;-0.071353, 0.997451,-0.000000,-0.000000;;, + 101;4;-0.019433, 0.999811,-0.000000,-0.000000;;, + 102;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 103;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 104;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 105;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 106;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 107;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 108;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 109;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 110;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 111;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 112;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 113;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 114;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 115;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 116;4;-0.000001, 1.000000,-0.000000,-0.000000;;, + 117;4; 0.019240, 0.999815,-0.000000,-0.000000;;, + 118;4; 0.073522, 0.997294,-0.000000,-0.000000;;, + 119;4; 0.142940, 0.989731,-0.000000,-0.000000;;, + 120;4; 0.196579, 0.980488,-0.000000,-0.000000;;, + 121;4; 0.216181, 0.976353,-0.000000,-0.000000;;, + 122;4; 0.209766, 0.975973,-0.057219,-0.014162;;, + 123;4; 0.188208, 0.971595,-0.140637,-0.028332;;, + 124;4; 0.158600, 0.970134,-0.181592,-0.026653;;, + 125;4; 0.118336, 0.969396,-0.213983,-0.021877;;, + 126;4; 0.073466, 0.968889,-0.235860,-0.015045;;, + 127;4; 0.033954, 0.968250,-0.247531,-0.008232;;, + 128;4; 0.008410, 0.967690,-0.251979,-0.003506;;, + 129;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 130;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 131;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 132;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 133;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 134;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 135;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 136;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 137;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 138;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 139;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 140;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 141;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 142;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 143;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 144;4;-0.000001, 0.967510,-0.252825,-0.001885;;, + 145;4;-0.000001, 0.967510,-0.252825,-0.001885;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 146; + 0;3;-1.105947, 0.069942, 0.000000;;, + 1;3;-1.105947, 0.069942, 0.000000;;, + 2;3;-1.105947, 0.069942, 0.000000;;, + 3;3;-1.105947, 0.069942, 0.000000;;, + 4;3;-1.105947, 0.069942, 0.000000;;, + 5;3;-1.105947, 0.069942, 0.000000;;, + 6;3;-1.105947, 0.069942, 0.000000;;, + 7;3;-1.105947, 0.069942, 0.000000;;, + 8;3;-1.105947, 0.069942, 0.000000;;, + 9;3;-1.105947, 0.069942, 0.000000;;, + 10;3;-1.105947, 0.069942, 0.000000;;, + 11;3;-1.105947, 0.069942, 0.000000;;, + 12;3;-1.105947, 0.069942, 0.000000;;, + 13;3;-1.105947, 0.069942, 0.000000;;, + 14;3;-1.105947, 0.069942, 0.000000;;, + 15;3;-1.105947, 0.069942, 0.000000;;, + 16;3;-1.105947, 0.069942, 0.000000;;, + 17;3;-1.105947, 0.069942, 0.000000;;, + 18;3;-1.105947, 0.069942, 0.000000;;, + 19;3;-1.105947, 0.069942, 0.000000;;, + 20;3;-1.105947, 0.069942, 0.000000;;, + 21;3;-1.105947, 0.069942, 0.000000;;, + 22;3;-1.105947, 0.069942, 0.000000;;, + 23;3;-1.105947, 0.069942, 0.000000;;, + 24;3;-1.105947, 0.069942, 0.000000;;, + 25;3;-1.105947, 0.069942, 0.000000;;, + 26;3;-1.105947, 0.069942, 0.000000;;, + 27;3;-1.105947, 0.069942, 0.000000;;, + 28;3;-1.105947, 0.069942, 0.000000;;, + 29;3;-1.105947, 0.069942, 0.000000;;, + 30;3;-1.105947, 0.069942, 0.000000;;, + 31;3;-1.105947, 0.069942, 0.000000;;, + 32;3;-1.105947, 0.069942, 0.000000;;, + 33;3;-1.105947, 0.069942, 0.000000;;, + 34;3;-1.105947, 0.069942, 0.000000;;, + 35;3;-1.105947, 0.069942, 0.000000;;, + 36;3;-1.105947, 0.069942, 0.000000;;, + 37;3;-1.105947, 0.069942, 0.000000;;, + 38;3;-1.105947, 0.069942, 0.000000;;, + 39;3;-1.105947, 0.069942, 0.000000;;, + 40;3;-1.105947, 0.069942, 0.000000;;, + 41;3;-1.105947, 0.069942, 0.000000;;, + 42;3;-1.105947, 0.069942, 0.000000;;, + 43;3;-1.105947, 0.069942, 0.000000;;, + 44;3;-1.105947, 0.069942, 0.000000;;, + 45;3;-1.105947, 0.069942, 0.000000;;, + 46;3;-1.105947, 0.069942, 0.000000;;, + 47;3;-1.105947, 0.069942, 0.000000;;, + 48;3;-1.105947, 0.069942, 0.000000;;, + 49;3;-1.105947, 0.069942, 0.000000;;, + 50;3;-1.105947, 0.069942, 0.000000;;, + 51;3;-1.105947, 0.069942, 0.000000;;, + 52;3;-1.105947, 0.069942, 0.000000;;, + 53;3;-1.105947, 0.069942, 0.000000;;, + 54;3;-1.105947, 0.069942, 0.000000;;, + 55;3;-1.105947, 0.069942, 0.000000;;, + 56;3;-1.105947, 0.069942, 0.000000;;, + 57;3;-1.105947, 0.069942, 0.000000;;, + 58;3;-1.105947, 0.069942, 0.000000;;, + 59;3;-1.105947, 0.069942, 0.000000;;, + 60;3;-1.105947, 0.069942, 0.000000;;, + 61;3;-1.105947, 0.069942, 0.000000;;, + 62;3;-1.105947, 0.069942, 0.000000;;, + 63;3;-1.105947, 0.069942, 0.000000;;, + 64;3;-1.105947, 0.069942, 0.000000;;, + 65;3;-1.105947, 0.069942, 0.000000;;, + 66;3;-1.105947, 0.069942, 0.000000;;, + 67;3;-1.105947, 0.069942, 0.000000;;, + 68;3;-1.105947, 0.069942, 0.000000;;, + 69;3;-1.105947, 0.069942, 0.000000;;, + 70;3;-1.105947, 0.069942, 0.000000;;, + 71;3;-1.105947, 0.069942, 0.000000;;, + 72;3;-1.105947, 0.069942, 0.000000;;, + 73;3;-1.105947, 0.069942, 0.000000;;, + 74;3;-1.105947, 0.069942, 0.000000;;, + 75;3;-1.105947, 0.069942, 0.000000;;, + 76;3;-1.105947, 0.069942, 0.000000;;, + 77;3;-1.105947, 0.069942, 0.000000;;, + 78;3;-1.105947, 0.069942, 0.000000;;, + 79;3;-1.105947, 0.069942, 0.000000;;, + 80;3;-1.105947, 0.069942, 0.000000;;, + 81;3;-1.105947, 0.069942, 0.000000;;, + 82;3;-1.105947, 0.069942, 0.000000;;, + 83;3;-1.105947, 0.069942, 0.000000;;, + 84;3;-1.105947, 0.069942, 0.000000;;, + 85;3;-1.105947, 0.069942, 0.000000;;, + 86;3;-1.105947, 0.069943, 0.000000;;, + 87;3;-1.105947, 0.069942, 0.000000;;, + 88;3;-1.105947, 0.069942, 0.000000;;, + 89;3;-1.105947, 0.069942, 0.000000;;, + 90;3;-1.105947, 0.069942, 0.000000;;, + 91;3;-1.105947, 0.069942, 0.000000;;, + 92;3;-1.105947, 0.069942, 0.000000;;, + 93;3;-1.105947, 0.069942, 0.000000;;, + 94;3;-1.105947, 0.069942, 0.000000;;, + 95;3;-1.105947, 0.069942, 0.000000;;, + 96;3;-1.105947, 0.069942, 0.000000;;, + 97;3;-1.105947, 0.069942, 0.000000;;, + 98;3;-1.105947, 0.069942, 0.000000;;, + 99;3;-1.105947, 0.069943, 0.000000;;, + 100;3;-1.105947, 0.069942, 0.000000;;, + 101;3;-1.105947, 0.069942, 0.000000;;, + 102;3;-1.105947, 0.069943, 0.000000;;, + 103;3;-1.105947, 0.069942, 0.000000;;, + 104;3;-1.105947, 0.069941, 0.000000;;, + 105;3;-1.105947, 0.069942, 0.000000;;, + 106;3;-1.105947, 0.069942, 0.000000;;, + 107;3;-1.105947, 0.069942, 0.000000;;, + 108;3;-1.105947, 0.069942, 0.000000;;, + 109;3;-1.105947, 0.069942, 0.000000;;, + 110;3;-1.105947, 0.069942, 0.000000;;, + 111;3;-1.105947, 0.069942, 0.000000;;, + 112;3;-1.105947, 0.069942, 0.000000;;, + 113;3;-1.105947, 0.069942, 0.000000;;, + 114;3;-1.105947, 0.069942, 0.000000;;, + 115;3;-1.105947, 0.069942, 0.000000;;, + 116;3;-1.105947, 0.069942, 0.000000;;, + 117;3;-1.105947, 0.069942, 0.000000;;, + 118;3;-1.105947, 0.069942, 0.000001;;, + 119;3;-1.105947, 0.069942, 0.000001;;, + 120;3;-1.105947, 0.069943, 0.000001;;, + 121;3;-1.105947, 0.069943, 0.000001;;, + 122;3;-1.105947, 0.069942, 0.000001;;, + 123;3;-1.105947, 0.069942, 0.000000;;, + 124;3;-1.105947, 0.069942, 0.000001;;, + 125;3;-1.105947, 0.069942, 0.000001;;, + 126;3;-1.105947, 0.069942, 0.000000;;, + 127;3;-1.105947, 0.069942, 0.000000;;, + 128;3;-1.105947, 0.069942, 0.000001;;, + 129;3;-1.105947, 0.069942, 0.000000;;, + 130;3;-1.105947, 0.069942, 0.000000;;, + 131;3;-1.105947, 0.069942, 0.000000;;, + 132;3;-1.105947, 0.069942, 0.000000;;, + 133;3;-1.105947, 0.069942, 0.000000;;, + 134;3;-1.105947, 0.069942, 0.000000;;, + 135;3;-1.105947, 0.069942, 0.000000;;, + 136;3;-1.105947, 0.069942, 0.000000;;, + 137;3;-1.105947, 0.069942, 0.000000;;, + 138;3;-1.105947, 0.069942, 0.000000;;, + 139;3;-1.105947, 0.069942, 0.000000;;, + 140;3;-1.105947, 0.069942, 0.000000;;, + 141;3;-1.105947, 0.069942, 0.000000;;, + 142;3;-1.105947, 0.069942, 0.000000;;, + 143;3;-1.105947, 0.069942, 0.000000;;, + 144;3;-1.105947, 0.069942, 0.000000;;, + 145;3;-1.105947, 0.069942, 0.000000;;; + } + } +} // End of AnimationSet ArmatureAction +AnimationSet Default_Action { + Animation { + {Cube_001} + AnimationKey { // Rotation + 0; + 146; + 0;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 1;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 2;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 3;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 4;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 5;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 6;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 7;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 8;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 9;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 10;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 11;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 12;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 13;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 14;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 15;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 16;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 17;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 18;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 19;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 20;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 21;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 22;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 23;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 24;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 25;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 26;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 27;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 28;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 29;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 30;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 31;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 32;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 33;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 34;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 35;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 36;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 37;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 38;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 39;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 40;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 41;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 42;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 43;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 44;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 45;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 46;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 47;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 48;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 49;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 50;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 51;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 52;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 53;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 54;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 55;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 56;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 57;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 58;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 59;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 60;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 61;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 62;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 63;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 64;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 65;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 66;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 67;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 68;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 69;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 70;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 71;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 72;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 73;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 74;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 75;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 76;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 77;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 78;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 79;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 80;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 81;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 82;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 83;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 84;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 85;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 86;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 87;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 88;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 89;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 90;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 91;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 92;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 93;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 94;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 95;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 96;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 97;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 98;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 99;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 100;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 101;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 102;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 103;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 104;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 105;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 106;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 107;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 108;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 109;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 110;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 111;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 112;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 113;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 114;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 115;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 116;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 117;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 118;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 119;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 120;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 121;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 122;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 123;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 124;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 125;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 126;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 127;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 128;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 129;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 130;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 131;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 132;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 133;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 134;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 135;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 136;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 137;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 138;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 139;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 140;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 141;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 142;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 143;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 144;4; 0.000001, 0.000000, 0.000000, 1.000000;;, + 145;4; 0.000001, 0.000000, 0.000000, 1.000000;;; + } + AnimationKey { // Scale + 1; + 146; + 0;3; 1.772010, 1.772010, 3.914027;;, + 1;3; 1.772010, 1.772010, 3.914027;;, + 2;3; 1.772010, 1.772010, 3.914027;;, + 3;3; 1.772010, 1.772010, 3.914027;;, + 4;3; 1.772010, 1.772010, 3.914027;;, + 5;3; 1.772010, 1.772010, 3.914027;;, + 6;3; 1.772010, 1.772010, 3.914027;;, + 7;3; 1.772010, 1.772010, 3.914027;;, + 8;3; 1.772010, 1.772010, 3.914027;;, + 9;3; 1.772010, 1.772010, 3.914027;;, + 10;3; 1.772010, 1.772010, 3.914027;;, + 11;3; 1.772010, 1.772010, 3.914027;;, + 12;3; 1.772010, 1.772010, 3.914027;;, + 13;3; 1.772010, 1.772010, 3.914027;;, + 14;3; 1.772010, 1.772010, 3.914027;;, + 15;3; 1.772010, 1.772010, 3.914027;;, + 16;3; 1.772010, 1.772010, 3.914027;;, + 17;3; 1.772010, 1.772010, 3.914027;;, + 18;3; 1.772010, 1.772010, 3.914027;;, + 19;3; 1.772010, 1.772010, 3.914027;;, + 20;3; 1.772010, 1.772010, 3.914027;;, + 21;3; 1.772010, 1.772010, 3.914027;;, + 22;3; 1.772010, 1.772010, 3.914027;;, + 23;3; 1.772010, 1.772010, 3.914027;;, + 24;3; 1.772010, 1.772010, 3.914027;;, + 25;3; 1.772010, 1.772010, 3.914027;;, + 26;3; 1.772010, 1.772010, 3.914027;;, + 27;3; 1.772010, 1.772010, 3.914027;;, + 28;3; 1.772010, 1.772010, 3.914027;;, + 29;3; 1.772010, 1.772010, 3.914027;;, + 30;3; 1.772010, 1.772010, 3.914027;;, + 31;3; 1.772010, 1.772010, 3.914027;;, + 32;3; 1.772010, 1.772010, 3.914027;;, + 33;3; 1.772010, 1.772010, 3.914027;;, + 34;3; 1.772010, 1.772010, 3.914027;;, + 35;3; 1.772010, 1.772010, 3.914027;;, + 36;3; 1.772010, 1.772010, 3.914027;;, + 37;3; 1.772010, 1.772010, 3.914027;;, + 38;3; 1.772010, 1.772010, 3.914027;;, + 39;3; 1.772010, 1.772010, 3.914027;;, + 40;3; 1.772010, 1.772010, 3.914027;;, + 41;3; 1.772010, 1.772010, 3.914027;;, + 42;3; 1.772010, 1.772010, 3.914027;;, + 43;3; 1.772010, 1.772010, 3.914027;;, + 44;3; 1.772010, 1.772010, 3.914027;;, + 45;3; 1.772010, 1.772010, 3.914027;;, + 46;3; 1.772010, 1.772010, 3.914027;;, + 47;3; 1.772010, 1.772010, 3.914027;;, + 48;3; 1.772010, 1.772010, 3.914027;;, + 49;3; 1.772010, 1.772010, 3.914027;;, + 50;3; 1.772010, 1.772010, 3.914027;;, + 51;3; 1.772010, 1.772010, 3.914027;;, + 52;3; 1.772010, 1.772010, 3.914027;;, + 53;3; 1.772010, 1.772010, 3.914027;;, + 54;3; 1.772010, 1.772010, 3.914027;;, + 55;3; 1.772010, 1.772010, 3.914027;;, + 56;3; 1.772010, 1.772010, 3.914027;;, + 57;3; 1.772010, 1.772010, 3.914027;;, + 58;3; 1.772010, 1.772010, 3.914027;;, + 59;3; 1.772010, 1.772010, 3.914027;;, + 60;3; 1.772010, 1.772010, 3.914027;;, + 61;3; 1.772010, 1.772010, 3.914027;;, + 62;3; 1.772010, 1.772010, 3.914027;;, + 63;3; 1.772010, 1.772010, 3.914027;;, + 64;3; 1.772010, 1.772010, 3.914027;;, + 65;3; 1.772010, 1.772010, 3.914027;;, + 66;3; 1.772010, 1.772010, 3.914027;;, + 67;3; 1.772010, 1.772010, 3.914027;;, + 68;3; 1.772010, 1.772010, 3.914027;;, + 69;3; 1.772010, 1.772010, 3.914027;;, + 70;3; 1.772010, 1.772010, 3.914027;;, + 71;3; 1.772010, 1.772010, 3.914027;;, + 72;3; 1.772010, 1.772010, 3.914027;;, + 73;3; 1.772010, 1.772010, 3.914027;;, + 74;3; 1.772010, 1.772010, 3.914027;;, + 75;3; 1.772010, 1.772010, 3.914027;;, + 76;3; 1.772010, 1.772010, 3.914027;;, + 77;3; 1.772010, 1.772010, 3.914027;;, + 78;3; 1.772010, 1.772010, 3.914027;;, + 79;3; 1.772010, 1.772010, 3.914027;;, + 80;3; 1.772010, 1.772010, 3.914027;;, + 81;3; 1.772010, 1.772010, 3.914027;;, + 82;3; 1.772010, 1.772010, 3.914027;;, + 83;3; 1.772010, 1.772010, 3.914027;;, + 84;3; 1.772010, 1.772010, 3.914027;;, + 85;3; 1.772010, 1.772010, 3.914027;;, + 86;3; 1.772010, 1.772010, 3.914027;;, + 87;3; 1.772010, 1.772010, 3.914027;;, + 88;3; 1.772010, 1.772010, 3.914027;;, + 89;3; 1.772010, 1.772010, 3.914027;;, + 90;3; 1.772010, 1.772010, 3.914027;;, + 91;3; 1.772010, 1.772010, 3.914027;;, + 92;3; 1.772010, 1.772010, 3.914027;;, + 93;3; 1.772010, 1.772010, 3.914027;;, + 94;3; 1.772010, 1.772010, 3.914027;;, + 95;3; 1.772010, 1.772010, 3.914027;;, + 96;3; 1.772010, 1.772010, 3.914027;;, + 97;3; 1.772010, 1.772010, 3.914027;;, + 98;3; 1.772010, 1.772010, 3.914027;;, + 99;3; 1.772010, 1.772010, 3.914027;;, + 100;3; 1.772010, 1.772010, 3.914027;;, + 101;3; 1.772010, 1.772010, 3.914027;;, + 102;3; 1.772010, 1.772010, 3.914027;;, + 103;3; 1.772010, 1.772010, 3.914027;;, + 104;3; 1.772010, 1.772010, 3.914027;;, + 105;3; 1.772010, 1.772010, 3.914027;;, + 106;3; 1.772010, 1.772010, 3.914027;;, + 107;3; 1.772010, 1.772010, 3.914027;;, + 108;3; 1.772010, 1.772010, 3.914027;;, + 109;3; 1.772010, 1.772010, 3.914027;;, + 110;3; 1.772010, 1.772010, 3.914027;;, + 111;3; 1.772010, 1.772010, 3.914027;;, + 112;3; 1.772010, 1.772010, 3.914027;;, + 113;3; 1.772010, 1.772010, 3.914027;;, + 114;3; 1.772010, 1.772010, 3.914027;;, + 115;3; 1.772010, 1.772010, 3.914027;;, + 116;3; 1.772010, 1.772010, 3.914027;;, + 117;3; 1.772010, 1.772010, 3.914027;;, + 118;3; 1.772010, 1.772010, 3.914027;;, + 119;3; 1.772010, 1.772010, 3.914027;;, + 120;3; 1.772010, 1.772010, 3.914027;;, + 121;3; 1.772010, 1.772010, 3.914027;;, + 122;3; 1.772010, 1.772010, 3.914027;;, + 123;3; 1.772010, 1.772010, 3.914027;;, + 124;3; 1.772010, 1.772010, 3.914027;;, + 125;3; 1.772010, 1.772010, 3.914027;;, + 126;3; 1.772010, 1.772010, 3.914027;;, + 127;3; 1.772010, 1.772010, 3.914027;;, + 128;3; 1.772010, 1.772010, 3.914027;;, + 129;3; 1.772010, 1.772010, 3.914027;;, + 130;3; 1.772010, 1.772010, 3.914027;;, + 131;3; 1.772010, 1.772010, 3.914027;;, + 132;3; 1.772010, 1.772010, 3.914027;;, + 133;3; 1.772010, 1.772010, 3.914027;;, + 134;3; 1.772010, 1.772010, 3.914027;;, + 135;3; 1.772010, 1.772010, 3.914027;;, + 136;3; 1.772010, 1.772010, 3.914027;;, + 137;3; 1.772010, 1.772010, 3.914027;;, + 138;3; 1.772010, 1.772010, 3.914027;;, + 139;3; 1.772010, 1.772010, 3.914027;;, + 140;3; 1.772010, 1.772010, 3.914027;;, + 141;3; 1.772010, 1.772010, 3.914027;;, + 142;3; 1.772010, 1.772010, 3.914027;;, + 143;3; 1.772010, 1.772010, 3.914027;;, + 144;3; 1.772010, 1.772010, 3.914027;;, + 145;3; 1.772010, 1.772010, 3.914027;;; + } + AnimationKey { // Position + 2; + 146; + 0;3; 0.000000, 0.000000, 9.947523;;, + 1;3; 0.000000, 0.000000, 9.947523;;, + 2;3; 0.000000, 0.000000, 9.947523;;, + 3;3; 0.000000, 0.000000, 9.947523;;, + 4;3; 0.000000, 0.000000, 9.947523;;, + 5;3; 0.000000, 0.000000, 9.947523;;, + 6;3; 0.000000, 0.000000, 9.947523;;, + 7;3; 0.000000, 0.000000, 9.947523;;, + 8;3; 0.000000, 0.000000, 9.947523;;, + 9;3; 0.000000, 0.000000, 9.947523;;, + 10;3; 0.000000, 0.000000, 9.947523;;, + 11;3; 0.000000, 0.000000, 9.947523;;, + 12;3; 0.000000, 0.000000, 9.947523;;, + 13;3; 0.000000, 0.000000, 9.947523;;, + 14;3; 0.000000, 0.000000, 9.947523;;, + 15;3; 0.000000, 0.000000, 9.947523;;, + 16;3; 0.000000, 0.000000, 9.947523;;, + 17;3; 0.000000, 0.000000, 9.947523;;, + 18;3; 0.000000, 0.000000, 9.947523;;, + 19;3; 0.000000, 0.000000, 9.947523;;, + 20;3; 0.000000, 0.000000, 9.947523;;, + 21;3; 0.000000, 0.000000, 9.947523;;, + 22;3; 0.000000, 0.000000, 9.947523;;, + 23;3; 0.000000, 0.000000, 9.947523;;, + 24;3; 0.000000, 0.000000, 9.947523;;, + 25;3; 0.000000, 0.000000, 9.947523;;, + 26;3; 0.000000, 0.000000, 9.947523;;, + 27;3; 0.000000, 0.000000, 9.947523;;, + 28;3; 0.000000, 0.000000, 9.947523;;, + 29;3; 0.000000, 0.000000, 9.947523;;, + 30;3; 0.000000, 0.000000, 9.947523;;, + 31;3; 0.000000, 0.000000, 9.947523;;, + 32;3; 0.000000, 0.000000, 9.947523;;, + 33;3; 0.000000, 0.000000, 9.947523;;, + 34;3; 0.000000, 0.000000, 9.947523;;, + 35;3; 0.000000, 0.000000, 9.947523;;, + 36;3; 0.000000, 0.000000, 9.947523;;, + 37;3; 0.000000, 0.000000, 9.947523;;, + 38;3; 0.000000, 0.000000, 9.947523;;, + 39;3; 0.000000, 0.000000, 9.947523;;, + 40;3; 0.000000, 0.000000, 9.947523;;, + 41;3; 0.000000, 0.000000, 9.947523;;, + 42;3; 0.000000, 0.000000, 9.947523;;, + 43;3; 0.000000, 0.000000, 9.947523;;, + 44;3; 0.000000, 0.000000, 9.947523;;, + 45;3; 0.000000, 0.000000, 9.947523;;, + 46;3; 0.000000, 0.000000, 9.947523;;, + 47;3; 0.000000, 0.000000, 9.947523;;, + 48;3; 0.000000, 0.000000, 9.947523;;, + 49;3; 0.000000, 0.000000, 9.947523;;, + 50;3; 0.000000, 0.000000, 9.947523;;, + 51;3; 0.000000, 0.000000, 9.947523;;, + 52;3; 0.000000, 0.000000, 9.947523;;, + 53;3; 0.000000, 0.000000, 9.947523;;, + 54;3; 0.000000, 0.000000, 9.947523;;, + 55;3; 0.000000, 0.000000, 9.947523;;, + 56;3; 0.000000, 0.000000, 9.947523;;, + 57;3; 0.000000, 0.000000, 9.947523;;, + 58;3; 0.000000, 0.000000, 9.947523;;, + 59;3; 0.000000, 0.000000, 9.947523;;, + 60;3; 0.000000, 0.000000, 9.947523;;, + 61;3; 0.000000, 0.000000, 9.947523;;, + 62;3; 0.000000, 0.000000, 9.947523;;, + 63;3; 0.000000, 0.000000, 9.947523;;, + 64;3; 0.000000, 0.000000, 9.947523;;, + 65;3; 0.000000, 0.000000, 9.947523;;, + 66;3; 0.000000, 0.000000, 9.947523;;, + 67;3; 0.000000, 0.000000, 9.947523;;, + 68;3; 0.000000, 0.000000, 9.947523;;, + 69;3; 0.000000, 0.000000, 9.947523;;, + 70;3; 0.000000, 0.000000, 9.947523;;, + 71;3; 0.000000, 0.000000, 9.947523;;, + 72;3; 0.000000, 0.000000, 9.947523;;, + 73;3; 0.000000, 0.000000, 9.947523;;, + 74;3; 0.000000, 0.000000, 9.947523;;, + 75;3; 0.000000, 0.000000, 9.947523;;, + 76;3; 0.000000, 0.000000, 9.947523;;, + 77;3; 0.000000, 0.000000, 9.947523;;, + 78;3; 0.000000, 0.000000, 9.947523;;, + 79;3; 0.000000, 0.000000, 9.947523;;, + 80;3; 0.000000, 0.000000, 9.947523;;, + 81;3; 0.000000, 0.000000, 9.947523;;, + 82;3; 0.000000, 0.000000, 9.947523;;, + 83;3; 0.000000, 0.000000, 9.947523;;, + 84;3; 0.000000, 0.000000, 9.947523;;, + 85;3; 0.000000, 0.000000, 9.947523;;, + 86;3; 0.000000, 0.000000, 9.947523;;, + 87;3; 0.000000, 0.000000, 9.947523;;, + 88;3; 0.000000, 0.000000, 9.947523;;, + 89;3; 0.000000, 0.000000, 9.947523;;, + 90;3; 0.000000, 0.000000, 9.947523;;, + 91;3; 0.000000, 0.000000, 9.947523;;, + 92;3; 0.000000, 0.000000, 9.947523;;, + 93;3; 0.000000, 0.000000, 9.947523;;, + 94;3; 0.000000, 0.000000, 9.947523;;, + 95;3; 0.000000, 0.000000, 9.947523;;, + 96;3; 0.000000, 0.000000, 9.947523;;, + 97;3; 0.000000, 0.000000, 9.947523;;, + 98;3; 0.000000, 0.000000, 9.947523;;, + 99;3; 0.000000, 0.000000, 9.947523;;, + 100;3; 0.000000, 0.000000, 9.947523;;, + 101;3; 0.000000, 0.000000, 9.947523;;, + 102;3; 0.000000, 0.000000, 9.947523;;, + 103;3; 0.000000, 0.000000, 9.947523;;, + 104;3; 0.000000, 0.000000, 9.947523;;, + 105;3; 0.000000, 0.000000, 9.947523;;, + 106;3; 0.000000, 0.000000, 9.947523;;, + 107;3; 0.000000, 0.000000, 9.947523;;, + 108;3; 0.000000, 0.000000, 9.947523;;, + 109;3; 0.000000, 0.000000, 9.947523;;, + 110;3; 0.000000, 0.000000, 9.947523;;, + 111;3; 0.000000, 0.000000, 9.947523;;, + 112;3; 0.000000, 0.000000, 9.947523;;, + 113;3; 0.000000, 0.000000, 9.947523;;, + 114;3; 0.000000, 0.000000, 9.947523;;, + 115;3; 0.000000, 0.000000, 9.947523;;, + 116;3; 0.000000, 0.000000, 9.947523;;, + 117;3; 0.000000, 0.000000, 9.947523;;, + 118;3; 0.000000, 0.000000, 9.947523;;, + 119;3; 0.000000, 0.000000, 9.947523;;, + 120;3; 0.000000, 0.000000, 9.947523;;, + 121;3; 0.000000, 0.000000, 9.947523;;, + 122;3; 0.000000, 0.000000, 9.947523;;, + 123;3; 0.000000, 0.000000, 9.947523;;, + 124;3; 0.000000, 0.000000, 9.947523;;, + 125;3; 0.000000, 0.000000, 9.947523;;, + 126;3; 0.000000, 0.000000, 9.947523;;, + 127;3; 0.000000, 0.000000, 9.947523;;, + 128;3; 0.000000, 0.000000, 9.947523;;, + 129;3; 0.000000, 0.000000, 9.947523;;, + 130;3; 0.000000, 0.000000, 9.947523;;, + 131;3; 0.000000, 0.000000, 9.947523;;, + 132;3; 0.000000, 0.000000, 9.947523;;, + 133;3; 0.000000, 0.000000, 9.947523;;, + 134;3; 0.000000, 0.000000, 9.947523;;, + 135;3; 0.000000, 0.000000, 9.947523;;, + 136;3; 0.000000, 0.000000, 9.947523;;, + 137;3; 0.000000, 0.000000, 9.947523;;, + 138;3; 0.000000, 0.000000, 9.947523;;, + 139;3; 0.000000, 0.000000, 9.947523;;, + 140;3; 0.000000, 0.000000, 9.947523;;, + 141;3; 0.000000, 0.000000, 9.947523;;, + 142;3; 0.000000, 0.000000, 9.947523;;, + 143;3; 0.000000, 0.000000, 9.947523;;, + 144;3; 0.000000, 0.000000, 9.947523;;, + 145;3; 0.000000, 0.000000, 9.947523;;; + } + } +} // End of AnimationSet Default_Action diff --git a/mods/mobs_mc/models/mobs_wolf.x b/mods/mobs_mc/models/mobs_wolf.x new file mode 100644 index 000000000..f94399466 --- /dev/null +++ b/mods/mobs_mc/models/mobs_wolf.x @@ -0,0 +1,7420 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Armature { + FrameTransformMatrix { + 2.153459, 0.000000, 0.000000, 0.000000, + 0.000000, 2.153459, 0.000000, 0.000000, + 0.000000, 0.000000, 2.153459, 0.000000, + -11.632589, 0.094256, 0.169731, 1.000000;; + } + Frame Armature_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529, 0.083252, 0.000000, + 0.000000,-0.083252, 0.996529, 0.000000, + 5.378092,-1.647068, 2.876912, 1.000000;; + } + Frame Armature_noga3 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.618225, 0.037596,-0.622362, 1.000000;; + } + } //End of Armature_noga3 + Frame Armature_noga1 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + 0.618225, 3.072911,-0.875938, 1.000000;; + } + } //End of Armature_noga1 + Frame Armature_noga4 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.648382, 0.037596,-0.622362, 1.000000;; + } + } //End of Armature_noga4 + Frame Armature_noga2 { + FrameTransformMatrix { + 0.000000,-0.996529, 0.083252, 0.000000, + -0.000000,-0.083252,-0.996529, 0.000000, + 1.000000, 0.000000,-0.000000, 0.000000, + -0.648382, 3.072911,-0.875938, 1.000000;; + } + } //End of Armature_noga2 + Frame Armature_hvost { + FrameTransformMatrix { + 1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.522249,-0.852793, 0.000000, + -0.000000, 0.852793,-0.522249, 0.000000, + 0.000000,-0.295864,-0.017687, 1.000000;; + } + } //End of Armature_hvost + Frame Armature_sheya { + FrameTransformMatrix { + 0.997121, 0.074946,-0.011510, 0.000000, + -0.075824, 0.985074,-0.154533, 0.000000, + -0.000243, 0.154961, 0.987921, 0.000000, + 0.000000, 3.260104, 0.242284, 1.000000;; + } + Frame Armature_head { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075813, 0.996898, 0.021119, 0.000000, + -0.001359,-0.021076, 0.999777, 0.000000, + 0.068728, 0.903770, 0.009841, 1.000000;; + } + } //End of Armature_head + Frame Armature_zubi { + FrameTransformMatrix { + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075658, 0.994708, 0.069515, 0.000000, + -0.005029,-0.069333, 0.997581, 0.000000, + 0.205805, 1.974131,-0.481359, 1.000000;; + } + } //End of Armature_zubi + } //End of Armature_sheya + } //End of Armature_Body + } //End of Armature + Frame Cube { + FrameTransformMatrix { + 2.153459, 0.000000, 0.000000, 0.000000, + 0.000000, 2.153459, 0.000000, 0.000000, + 0.000000, 0.000000, 2.153459, 0.000000, + -0.137034,-0.235439, 6.856374, 1.000000;; + } + Mesh { //Mesh Mesh + 344; + -1.000000; 0.155088;-0.615504;, + -1.000000; 2.052689;-0.915563;, + -1.000000; 2.052689; 0.915563;, + -1.000000; 0.155088; 0.615504;, + -1.000000; 2.052689;-0.915563;, + 1.000000; 2.052689;-0.915563;, + 1.000000; 2.052689; 0.915563;, + -1.000000; 2.052689; 0.915563;, + 1.000000; 0.155088;-0.615504;, + 1.000000;-1.728900;-0.764941;, + 1.000000;-1.728900; 0.565265;, + 1.000000; 0.155088; 0.615504;, + 1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900; 0.565265;, + 1.000000;-1.728900; 0.565265;, + 1.000000; 0.155088;-0.615504;, + 1.000000; 2.052689;-0.915563;, + -1.000000; 2.052689;-0.915563;, + -1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088; 0.615504;, + -1.000000; 2.052689; 0.915563;, + 1.000000; 2.052689; 0.915563;, + 1.000000; 0.155088; 0.615504;, + -1.000000;-1.728900;-0.764941;, + -1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088; 0.615504;, + -1.000000;-1.728900; 0.565265;, + 1.000000; 2.052689;-0.915563;, + 1.000000; 0.155088;-0.615504;, + 1.000000; 0.155088; 0.615504;, + 1.000000; 2.052689; 0.915563;, + 1.000000;-1.728900;-0.764941;, + 1.000000; 0.155088;-0.615504;, + -1.000000; 0.155088;-0.615504;, + -1.000000;-1.728900;-0.764941;, + -1.000000;-1.728900; 0.565265;, + -1.000000; 0.155088; 0.615504;, + 1.000000; 0.155088; 0.615504;, + 1.000000;-1.728900; 0.565265;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 2.777568;-0.242289;, + -0.478282; 2.571347; 0.688789;, + -0.478282; 1.421201; 0.434048;, + -0.478282; 2.777568;-0.242289;, + 0.646717; 2.777568;-0.242289;, + 0.646717; 2.571347; 0.688789;, + -0.478282; 2.571347; 0.688789;, + 0.646717; 2.777568;-0.242289;, + 0.646717; 1.627421;-0.497030;, + 0.646717; 1.421201; 0.434048;, + 0.646717; 2.571347; 0.688789;, + 0.646717; 1.627421;-0.497030;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 1.421201; 0.434048;, + 0.646717; 1.421201; 0.434048;, + 0.646717; 1.627421;-0.497030;, + 0.646717; 2.777568;-0.242289;, + -0.478282; 2.777568;-0.242289;, + -0.478282; 1.627421;-0.497030;, + -0.478282; 1.421201; 0.434048;, + -0.478282; 2.571347; 0.688789;, + 0.646717; 2.571347; 0.688789;, + 0.646717; 1.421201; 0.434048;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 3.191954;-0.382663;, + -0.671784; 3.191954; 0.728308;, + -0.671784; 2.547537; 0.728308;, + 0.512005; 3.820444;-0.294064;, + -0.394370; 3.820444;-0.294064;, + -0.671784; 3.191954;-0.382663;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 2.547537;-0.382663;, + 0.789419; 2.547537; 0.728308;, + 0.789419; 3.191954; 0.728308;, + 0.789419; 2.547537;-0.382663;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 2.547537; 0.728308;, + 0.789419; 2.547537; 0.728308;, + 0.789419; 2.547537;-0.382663;, + 0.789419; 3.191954;-0.382663;, + -0.671784; 3.191954;-0.382663;, + -0.671784; 2.547537;-0.382663;, + -0.671784; 2.547537; 0.728308;, + -0.671784; 3.191954; 0.728308;, + 0.789419; 3.191954; 0.728308;, + 0.789419; 2.547537; 0.728308;, + 0.512005; 4.671586;-0.294064;, + -0.394370; 4.671586;-0.294064;, + -0.394370; 3.820444;-0.294064;, + 0.512005; 3.820444;-0.294064;, + -0.394370; 3.820444; 0.345902;, + 0.512005; 3.820444; 0.345902;, + 0.789419; 3.191954; 0.728308;, + -0.671784; 3.191954; 0.728308;, + 0.512005; 3.820444; 0.345902;, + 0.512005; 3.820444;-0.294064;, + 0.789419; 3.191954;-0.382663;, + 0.789419; 3.191954; 0.728308;, + -0.671784; 3.191954; 0.728308;, + -0.671784; 3.191954;-0.382663;, + -0.394370; 3.820444;-0.294064;, + -0.394370; 3.820444; 0.345902;, + -0.394370; 4.671586;-0.294064;, + 0.512005; 4.671586;-0.294064;, + 0.512005; 4.671586; 0.345902;, + -0.394370; 4.671586; 0.345902;, + -0.394370; 3.820444; 0.345902;, + -0.394370; 3.820444;-0.294064;, + -0.394370; 4.671586;-0.294064;, + -0.394370; 4.671586; 0.345902;, + -0.394370; 4.671586; 0.345902;, + 0.512005; 4.671586; 0.345902;, + 0.512005; 3.820444; 0.345902;, + -0.394370; 3.820444; 0.345902;, + 0.512005; 4.671586; 0.345902;, + 0.512005; 4.671586;-0.294064;, + 0.512005; 3.820444;-0.294064;, + 0.512005; 3.820444; 0.345902;, + 0.278519; 2.361271; 0.644022;, + 0.278519; 2.654585; 0.644022;, + 0.520551; 2.654585; 1.302632;, + 0.520551; 2.361271; 1.302632;, + 0.278519; 2.654585; 0.644022;, + 0.787799; 2.696650; 0.644022;, + 0.798712; 2.696650; 1.302632;, + 0.520551; 2.654585; 1.302632;, + 0.787799; 2.696650; 0.644022;, + 0.787799; 2.403336; 0.644022;, + 0.798712; 2.403336; 1.302632;, + 0.798712; 2.696650; 1.302632;, + 0.787799; 2.403336; 0.644022;, + 0.278519; 2.361271; 0.644022;, + 0.520551; 2.361271; 1.302632;, + 0.798712; 2.403336; 1.302632;, + 0.787799; 2.403336; 0.644022;, + 0.787799; 2.696650; 0.644022;, + 0.278519; 2.654585; 0.644022;, + 0.278519; 2.361271; 0.644022;, + 0.520551; 2.361271; 1.302632;, + 0.520551; 2.654585; 1.302632;, + 0.798712; 2.696650; 1.302632;, + 0.798712; 2.403336; 1.302632;, + -0.681576; 2.380263; 0.632819;, + -0.681576; 2.673577; 0.632819;, + -0.646066; 2.673577; 1.291429;, + -0.646066; 2.380263; 1.291429;, + -0.681576; 2.673577; 0.632819;, + -0.172296; 2.673577; 0.632819;, + -0.391654; 2.673577; 1.291429;, + -0.646066; 2.673577; 1.291429;, + -0.172296; 2.673577; 0.632819;, + -0.172296; 2.380263; 0.632819;, + -0.391654; 2.380263; 1.291429;, + -0.391654; 2.673577; 1.291429;, + -0.172296; 2.380263; 0.632819;, + -0.681576; 2.380263; 0.632819;, + -0.646066; 2.380263; 1.291429;, + -0.391654; 2.380263; 1.291429;, + -0.172296; 2.380263; 0.632819;, + -0.172296; 2.673577; 0.632819;, + -0.681576; 2.673577; 0.632819;, + -0.681576; 2.380263; 0.632819;, + -0.646066; 2.380263; 1.291429;, + -0.646066; 2.673577; 1.291429;, + -0.391654; 2.673577; 1.291429;, + -0.391654; 2.380263; 1.291429;, + -0.120377;-2.912002;-1.784416;, + -0.120377;-2.476886;-2.017185;, + -0.255799;-2.099858;-1.559360;, + -0.255799;-2.740405;-1.216694;, + -0.120377;-2.476886;-2.017185;, + 0.335223;-2.476886;-2.017185;, + 0.470645;-2.099858;-1.559360;, + -0.255799;-2.099858;-1.559360;, + 0.335223;-2.476886;-2.017185;, + 0.335223;-2.912002;-1.784416;, + 0.470645;-2.740405;-1.216694;, + 0.470645;-2.099858;-1.559360;, + 0.335223;-2.912002;-1.784416;, + -0.120377;-2.912002;-1.784416;, + -0.255799;-2.740405;-1.216694;, + 0.470645;-2.740405;-1.216694;, + 0.335223;-2.912002;-1.784416;, + 0.335223;-2.476886;-2.017185;, + -0.120377;-2.476886;-2.017185;, + -0.120377;-2.912002;-1.784416;, + -0.154317;-1.667699; 0.122275;, + -0.154317;-1.356034;-0.044453;, + 0.369163;-1.356034;-0.044453;, + 0.369163;-1.667699; 0.122275;, + -0.255799;-2.255081;-0.309479;, + -0.255799;-1.614535;-0.652145;, + -0.154317;-1.356034;-0.044453;, + -0.154317;-1.667699; 0.122275;, + -0.255799;-1.614535;-0.652145;, + 0.470645;-1.614535;-0.652145;, + 0.369163;-1.356034;-0.044453;, + -0.154317;-1.356034;-0.044453;, + 0.470645;-1.614535;-0.652145;, + 0.470645;-2.255081;-0.309479;, + 0.369163;-1.667699; 0.122275;, + 0.369163;-1.356034;-0.044453;, + 0.470645;-2.255081;-0.309479;, + -0.255799;-2.255081;-0.309479;, + -0.154317;-1.667699; 0.122275;, + 0.369163;-1.667699; 0.122275;, + 0.470645;-2.099858;-1.559360;, + 0.470645;-2.740405;-1.216694;, + 0.470645;-2.255081;-0.309479;, + 0.470645;-1.614535;-0.652145;, + 0.470645;-2.740405;-1.216694;, + -0.255799;-2.740405;-1.216694;, + -0.255799;-2.255081;-0.309479;, + 0.470645;-2.255081;-0.309479;, + -0.792844; 1.496758;-3.209955;, + -0.792844; 1.849385;-3.209955;, + -0.884154; 1.982406;-0.866022;, + -0.884154; 1.363736;-0.866022;, + 0.819857; 1.496758;-3.209955;, + 0.819857; 1.849385;-3.209955;, + 0.440400; 1.849385;-3.209955;, + 0.440400; 1.496758;-3.209955;, + -0.255799;-2.099858;-1.559360;, + 0.470645;-2.099858;-1.559360;, + 0.470645;-1.614535;-0.652145;, + -0.255799;-1.614535;-0.652145;, + 0.440400; 1.496758;-3.209955;, + 0.440400; 1.849385;-3.209955;, + 0.349091; 1.982406;-0.866022;, + 0.349091; 1.363736;-0.866022;, + -0.255799;-2.740405;-1.216694;, + -0.255799;-2.099858;-1.559360;, + -0.255799;-1.614535;-0.652145;, + -0.255799;-2.255081;-0.309479;, + 0.349091; 1.363736;-0.866022;, + 0.349091; 1.982406;-0.866022;, + 0.911166; 1.982406;-0.866022;, + 0.911166; 1.363736;-0.866022;, + 0.440400; 1.849385;-3.209955;, + 0.819857; 1.849385;-3.209955;, + 0.911166; 1.982406;-0.866022;, + 0.349091; 1.982406;-0.866022;, + -0.413388; 1.496758;-3.209955;, + -0.413388; 1.849385;-3.209955;, + -0.792844; 1.849385;-3.209955;, + -0.792844; 1.496758;-3.209955;, + 0.819857; 1.496758;-3.209955;, + 0.440400; 1.496758;-3.209955;, + 0.349091; 1.363736;-0.866022;, + 0.911166; 1.363736;-0.866022;, + 0.819857; 1.849385;-3.209955;, + 0.819857; 1.496758;-3.209955;, + 0.911166; 1.363736;-0.866022;, + 0.911166; 1.982406;-0.866022;, + -0.884154; 1.363736;-0.866022;, + -0.884154; 1.982406;-0.866022;, + -0.322078; 1.982406;-0.866022;, + -0.322078; 1.363736;-0.866022;, + -0.792844; 1.849385;-3.209955;, + -0.413388; 1.849385;-3.209955;, + -0.322078; 1.982406;-0.866022;, + -0.884154; 1.982406;-0.866022;, + -0.413388; 1.496758;-3.209955;, + -0.792844; 1.496758;-3.209955;, + -0.884154; 1.363736;-0.866022;, + -0.322078; 1.363736;-0.866022;, + -0.413388; 1.849385;-3.209955;, + -0.413388; 1.496758;-3.209955;, + -0.322078; 1.363736;-0.866022;, + -0.322078; 1.982406;-0.866022;, + -0.792844;-1.578270;-3.209955;, + -0.792844;-1.225643;-3.209955;, + -0.884154;-1.092621;-0.866022;, + -0.884154;-1.711292;-0.866022;, + -0.413388;-1.578270;-3.209955;, + -0.413388;-1.225643;-3.209955;, + -0.792844;-1.225643;-3.209955;, + -0.792844;-1.578270;-3.209955;, + -0.884154;-1.711292;-0.866022;, + -0.884154;-1.092621;-0.866022;, + -0.322078;-1.092621;-0.866022;, + -0.322078;-1.711292;-0.866022;, + -0.792844;-1.225643;-3.209955;, + -0.413388;-1.225643;-3.209955;, + -0.322078;-1.092621;-0.866022;, + -0.884154;-1.092621;-0.866022;, + -0.413388;-1.578270;-3.209955;, + -0.792844;-1.578270;-3.209955;, + -0.884154;-1.711292;-0.866022;, + -0.322078;-1.711292;-0.866022;, + -0.413388;-1.225643;-3.209955;, + -0.413388;-1.578270;-3.209955;, + -0.322078;-1.711292;-0.866022;, + -0.322078;-1.092621;-0.866022;, + 0.483946;-1.578270;-3.209955;, + 0.483946;-1.225643;-3.209955;, + 0.392636;-1.092621;-0.866022;, + 0.392636;-1.711292;-0.866022;, + 0.863402;-1.578270;-3.209955;, + 0.863402;-1.225643;-3.209955;, + 0.483946;-1.225643;-3.209955;, + 0.483946;-1.578270;-3.209955;, + 0.392636;-1.711292;-0.866022;, + 0.392636;-1.092621;-0.866022;, + 0.954712;-1.092621;-0.866022;, + 0.954712;-1.711292;-0.866022;, + 0.483946;-1.225643;-3.209955;, + 0.863402;-1.225643;-3.209955;, + 0.954712;-1.092621;-0.866022;, + 0.392636;-1.092621;-0.866022;, + 0.863402;-1.578270;-3.209955;, + 0.483946;-1.578270;-3.209955;, + 0.392636;-1.711292;-0.866022;, + 0.954712;-1.711292;-0.866022;, + 0.863402;-1.225643;-3.209955;, + 0.863402;-1.578270;-3.209955;, + 0.954712;-1.711292;-0.866022;, + 0.954712;-1.092621;-0.866022;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 4.656346;-0.368337;, + -0.256903; 4.656346;-0.315211;, + -0.256903; 3.727607;-0.315211;, + -0.256903; 4.656346;-0.368337;, + 0.410987; 4.656346;-0.368337;, + 0.410987; 4.656346;-0.315211;, + -0.256903; 4.656346;-0.315211;, + 0.410987; 4.656346;-0.368337;, + 0.410987; 3.727607;-0.368337;, + 0.410987; 3.727607;-0.315211;, + 0.410987; 4.656346;-0.315211;, + 0.410987; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.315211;, + 0.410987; 3.727607;-0.315211;, + 0.410987; 3.727607;-0.368337;, + 0.410987; 4.656346;-0.368337;, + -0.256903; 4.656346;-0.368337;, + -0.256903; 3.727607;-0.368337;, + -0.256903; 3.727607;-0.315211;, + -0.256903; 4.656346;-0.315211;, + 0.410987; 4.656346;-0.315211;, + 0.410987; 3.727607;-0.315211;; + 86; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;; + MeshNormals { //Mesh Normals + 344; + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + 0.000000;-0.156185;-0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -0.000000;-0.156185; 0.987728;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000; 0.079071;-0.996869;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + 0.000000;-0.026657; 0.999645;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 0.000000; 0.976339; 0.216245;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000;-0.976339;-0.216245;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000; 0.216245;-0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + 0.000000;-0.216245; 0.976339;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 0.000000; 0.139591;-0.990209;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.000000; 0.519795; 0.854291;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + 0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + -0.914843; 0.403810; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.938627; 0.000000; 0.344935;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + -0.106213; 0.994134; 0.020396;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.999863; 0.000000;-0.016567;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + 0.106213;-0.994134;-0.020396;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + -0.998550; 0.000000; 0.053839;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.948761; 0.000000; 0.315995;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + -0.973941;-0.106983;-0.199983;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.000000; 0.771934;-0.635703;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.973941;-0.106983;-0.199983;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.957230; 0.289329;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000;-0.471704;-0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + 0.000000; 0.471704; 0.881757;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + -0.988307; 0.071924; 0.134447;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.000000; 0.920205;-0.391438;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.988307; 0.071924; 0.134447;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 0.000000;-0.592261; 0.805746;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + 0.000000;-0.881757; 0.471704;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + 0.000000; 0.881757;-0.471704;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.999242; 0.000000;-0.038926;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000; 0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.000000;-0.998394;-0.056660;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + 0.999242; 0.000000;-0.038926;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000;-1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;, + -0.000000; 0.000000; 1.000000;; + 86; + 4;0;1;2;3;, + 4;4;5;6;7;, + 4;8;9;10;11;, + 4;12;13;14;15;, + 4;16;17;18;19;, + 4;20;21;22;23;, + 4;24;25;26;27;, + 4;28;29;30;31;, + 4;32;33;34;35;, + 4;36;37;38;39;, + 4;40;41;42;43;, + 4;44;45;46;47;, + 4;48;49;50;51;, + 4;52;53;54;55;, + 4;56;57;58;59;, + 4;60;61;62;63;, + 4;64;65;66;67;, + 4;68;69;70;71;, + 4;72;73;74;75;, + 4;76;77;78;79;, + 4;80;81;82;83;, + 4;84;85;86;87;, + 4;88;89;90;91;, + 4;92;93;94;95;, + 4;96;97;98;99;, + 4;100;101;102;103;, + 4;104;105;106;107;, + 4;108;109;110;111;, + 4;112;113;114;115;, + 4;116;117;118;119;, + 4;120;121;122;123;, + 4;124;125;126;127;, + 4;128;129;130;131;, + 4;132;133;134;135;, + 4;136;137;138;139;, + 4;140;141;142;143;, + 4;144;145;146;147;, + 4;148;149;150;151;, + 4;152;153;154;155;, + 4;156;157;158;159;, + 4;160;161;162;163;, + 4;164;165;166;167;, + 4;168;169;170;171;, + 4;172;173;174;175;, + 4;176;177;178;179;, + 4;180;181;182;183;, + 4;184;185;186;187;, + 4;188;189;190;191;, + 4;192;193;194;195;, + 4;196;197;198;199;, + 4;200;201;202;203;, + 4;204;205;206;207;, + 4;208;209;210;211;, + 4;212;213;214;215;, + 4;216;217;218;219;, + 4;220;221;222;223;, + 4;224;225;226;227;, + 4;228;229;230;231;, + 4;232;233;234;235;, + 4;236;237;238;239;, + 4;240;241;242;243;, + 4;244;245;246;247;, + 4;248;249;250;251;, + 4;252;253;254;255;, + 4;256;257;258;259;, + 4;260;261;262;263;, + 4;264;265;266;267;, + 4;268;269;270;271;, + 4;272;273;274;275;, + 4;276;277;278;279;, + 4;280;281;282;283;, + 4;284;285;286;287;, + 4;288;289;290;291;, + 4;292;293;294;295;, + 4;296;297;298;299;, + 4;300;301;302;303;, + 4;304;305;306;307;, + 4;308;309;310;311;, + 4;312;313;314;315;, + 4;316;317;318;319;, + 4;320;321;322;323;, + 4;324;325;326;327;, + 4;328;329;330;331;, + 4;332;333;334;335;, + 4;336;337;338;339;, + 4;340;341;342;343;; + } //End of Mesh Normals + MeshMaterialList { //Mesh Material List + 1; + 1; + 0;; + Material Default_Material { + 0.800000; 0.800000; 0.800000; 0.800000;; + 96.078431; + 0.500000; 0.500000; 0.500000;; + 0.000000; 0.000000; 0.000000;; + } + } //End of Mesh Material List + MeshTextureCoords { //Mesh UV Coordinates + 344; + 0.444664; 0.882740;, + 0.453010; 0.994603;, + 0.352139; 0.990704;, + 0.370352; 0.882084;, + 0.699615; 0.826957;, + 0.888198; 0.826957;, + 0.888198; 0.999617;, + 0.699615; 0.999617;, + 0.566940; 0.877116;, + 0.559308; 0.768256;, + 0.664340; 0.764336;, + 0.671138; 0.868138;, + 0.999617; 0.397190;, + 0.811034; 0.397190;, + 0.811034; 0.271762;, + 0.999617; 0.271762;, + 0.566940; 0.877116;, + 0.565483; 0.991269;, + 0.453010; 0.994603;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.352139; 0.990704;, + 0.243744; 0.976452;, + 0.255729; 0.872295;, + 0.447331; 0.770867;, + 0.444664; 0.882740;, + 0.370352; 0.882084;, + 0.373731; 0.773298;, + 0.565483; 0.991269;, + 0.566940; 0.877116;, + 0.671138; 0.868138;, + 0.670488; 0.977139;, + 0.559308; 0.768256;, + 0.566940; 0.877116;, + 0.444664; 0.882740;, + 0.447331; 0.770867;, + 0.373731; 0.773298;, + 0.370352; 0.882084;, + 0.255729; 0.872295;, + 0.261819; 0.766836;, + 0.694945; 0.168323;, + 0.694945; 0.057246;, + 0.784866; 0.057246;, + 0.784866; 0.168323;, + 0.978885; 0.802852;, + 0.978885; 0.908930;, + 0.888965; 0.908930;, + 0.888965; 0.802852;, + 0.980864; 0.057246;, + 0.980864; 0.168323;, + 0.890944; 0.168323;, + 0.890944; 0.057246;, + 0.995043; 0.999617;, + 0.888965; 0.999617;, + 0.888965; 0.909696;, + 0.995043; 0.909696;, + 0.588867; 0.168323;, + 0.588867; 0.057246;, + 0.694945; 0.057246;, + 0.694945; 0.168323;, + 0.784866; 0.168323;, + 0.784866; 0.057246;, + 0.890944; 0.057246;, + 0.890944; 0.168323;, + 0.581893; 0.381313;, + 0.525981; 0.490259;, + 0.379618; 0.402841;, + 0.398054; 0.301018;, + 0.815523; 0.662938;, + 0.815524; 0.728486;, + 0.769623; 0.748548;, + 0.769623; 0.642876;, + 0.048873; 0.480128;, + 0.006488; 0.386718;, + 0.167529; 0.313647;, + 0.194276; 0.403737;, + 0.988636; 0.730470;, + 0.896211; 0.730470;, + 0.896211; 0.660198;, + 0.988636; 0.660198;, + 0.723019; 0.642876;, + 0.769623; 0.642876;, + 0.769623; 0.748548;, + 0.723019; 0.748548;, + 0.398054; 0.301018;, + 0.379618; 0.402841;, + 0.194276; 0.403737;, + 0.167529; 0.313647;, + 0.877077; 0.662938;, + 0.877077; 0.728486;, + 0.815524; 0.728486;, + 0.815523; 0.662938;, + 0.357048; 0.517540;, + 0.216152; 0.507657;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.216152; 0.507657;, + 0.120216; 0.568830;, + 0.048873; 0.480128;, + 0.194276; 0.403737;, + 0.379618; 0.402841;, + 0.525981; 0.490259;, + 0.444034; 0.577428;, + 0.357048; 0.517540;, + 0.362490; 0.686881;, + 0.215162; 0.682739;, + 0.251936; 0.612341;, + 0.315469; 0.601729;, + 0.357048; 0.517540;, + 0.444034; 0.577428;, + 0.362490; 0.686881;, + 0.315469; 0.601729;, + 0.315469; 0.601729;, + 0.251936; 0.612341;, + 0.216152; 0.507657;, + 0.357048; 0.517540;, + 0.251936; 0.612341;, + 0.215162; 0.682739;, + 0.120216; 0.568830;, + 0.216152; 0.507657;, + 0.882221; 0.248633;, + 0.854668; 0.246226;, + 0.860426; 0.180315;, + 0.887978; 0.182722;, + 0.854668; 0.246226;, + 0.811034; 0.225788;, + 0.836391; 0.169090;, + 0.860426; 0.180315;, + 0.955560; 0.229325;, + 0.928738; 0.236069;, + 0.913594; 0.175833;, + 0.940417; 0.169090;, + 0.928738; 0.236069;, + 0.882221; 0.248633;, + 0.887978; 0.182722;, + 0.913594; 0.175833;, + 0.568666; 0.188259;, + 0.570943; 0.215822;, + 0.522758; 0.215822;, + 0.520482; 0.188259;, + 0.557028; 0.187492;, + 0.557028; 0.159835;, + 0.583256; 0.155869;, + 0.583256; 0.183526;, + 0.831256; 0.582510;, + 0.811034; 0.563643;, + 0.853460; 0.518170;, + 0.873682; 0.537037;, + 0.941763; 0.626056;, + 0.893812; 0.623471;, + 0.917809; 0.562573;, + 0.941763; 0.563864;, + 0.893812; 0.623471;, + 0.868081; 0.613331;, + 0.892078; 0.552433;, + 0.917809; 0.562573;, + 0.868081; 0.613331;, + 0.831256; 0.582510;, + 0.873682; 0.537037;, + 0.892078; 0.552433;, + 0.680049; 0.227106;, + 0.680049; 0.254763;, + 0.632028; 0.254763;, + 0.632028; 0.227106;, + 0.631262; 0.227106;, + 0.631262; 0.254763;, + 0.607273; 0.254763;, + 0.607273; 0.227106;, + 0.151813; 0.952191;, + 0.112345; 0.947279;, + 0.113514; 0.904716;, + 0.158003; 0.906790;, + 0.112345; 0.947279;, + 0.077106; 0.948022;, + 0.069721; 0.907057;, + 0.113514; 0.904716;, + 0.077106; 0.948022;, + 0.041465; 0.957980;, + 0.021003; 0.917204;, + 0.069721; 0.907057;, + 0.189475; 0.963315;, + 0.151813; 0.952191;, + 0.158003; 0.906790;, + 0.212875; 0.914749;, + 0.563441; 0.216588;, + 0.563441; 0.263118;, + 0.520482; 0.263118;, + 0.520482; 0.216588;, + 0.758717; 0.826190;, + 0.758717; 0.792862;, + 0.808077; 0.792862;, + 0.808077; 0.826190;, + 0.160570; 0.844684;, + 0.116458; 0.842962;, + 0.117818; 0.795850;, + 0.145830; 0.795143;, + 0.116458; 0.842962;, + 0.069466; 0.841189;, + 0.076449; 0.791324;, + 0.117818; 0.795850;, + 0.069466; 0.841189;, + 0.014746; 0.837740;, + 0.047872; 0.785711;, + 0.076449; 0.791324;, + 0.209296; 0.833892;, + 0.160570; 0.844684;, + 0.145830; 0.795143;, + 0.184389; 0.782622;, + 0.069721; 0.907057;, + 0.021003; 0.917204;, + 0.014746; 0.837740;, + 0.069466; 0.841189;, + 0.212875; 0.914749;, + 0.158003; 0.906790;, + 0.160570; 0.844684;, + 0.209296; 0.833892;, + 0.696701; 0.623144;, + 0.663486; 0.624673;, + 0.640785; 0.404303;, + 0.699058; 0.401620;, + 0.556261; 0.154243;, + 0.556261; 0.187492;, + 0.520482; 0.187492;, + 0.520482; 0.154243;, + 0.113514; 0.904716;, + 0.069721; 0.907057;, + 0.069466; 0.841189;, + 0.116458; 0.842962;, + 0.696269; 0.621054;, + 0.663054; 0.622583;, + 0.640352; 0.402213;, + 0.698626; 0.399530;, + 0.158003; 0.906790;, + 0.113514; 0.904716;, + 0.116458; 0.842962;, + 0.160570; 0.844684;, + 0.621714; 0.314631;, + 0.680049; 0.314631;, + 0.680049; 0.367630;, + 0.621714; 0.367630;, + 0.663054; 0.622583;, + 0.627632; 0.627630;, + 0.587883; 0.409689;, + 0.640352; 0.402213;, + 0.844623; 0.792862;, + 0.844623; 0.826112;, + 0.808843; 0.826112;, + 0.808843; 0.792862;, + 0.732005; 0.622825;, + 0.696269; 0.621054;, + 0.698626; 0.399530;, + 0.751560; 0.402153;, + 0.764905; 0.627630;, + 0.732005; 0.622825;, + 0.751560; 0.402153;, + 0.809283; 0.410584;, + 0.699615; 0.773191;, + 0.757950; 0.773191;, + 0.757950; 0.826190;, + 0.699615; 0.826190;, + 0.663486; 0.624673;, + 0.628065; 0.629720;, + 0.588315; 0.411779;, + 0.640785; 0.404303;, + 0.732437; 0.624915;, + 0.696701; 0.623144;, + 0.699058; 0.401620;, + 0.751992; 0.404243;, + 0.765338; 0.629720;, + 0.732437; 0.624915;, + 0.751992; 0.404243;, + 0.809715; 0.412674;, + 0.697254; 0.619480;, + 0.664039; 0.621009;, + 0.641336; 0.400639;, + 0.699610; 0.397956;, + 0.680049; 0.193089;, + 0.680049; 0.226339;, + 0.644269; 0.226339;, + 0.644269; 0.193089;, + 0.680049; 0.255529;, + 0.680049; 0.313865;, + 0.627050; 0.313865;, + 0.627050; 0.255529;, + 0.664039; 0.621009;, + 0.628617; 0.626056;, + 0.588867; 0.408115;, + 0.641336; 0.400639;, + 0.732989; 0.621251;, + 0.697254; 0.619480;, + 0.699610; 0.397956;, + 0.752544; 0.400579;, + 0.765890; 0.626056;, + 0.732989; 0.621251;, + 0.752544; 0.400579;, + 0.810267; 0.409010;, + 0.697253; 0.620613;, + 0.664039; 0.622143;, + 0.641336; 0.401773;, + 0.699610; 0.399090;, + 0.643503; 0.193089;, + 0.643503; 0.226339;, + 0.607723; 0.226339;, + 0.607723; 0.193089;, + 0.573481; 0.263885;, + 0.573481; 0.322220;, + 0.520482; 0.322220;, + 0.520482; 0.263885;, + 0.664039; 0.622143;, + 0.628617; 0.627190;, + 0.588867; 0.409249;, + 0.641336; 0.401773;, + 0.732989; 0.622384;, + 0.697253; 0.620613;, + 0.699610; 0.399090;, + 0.752544; 0.401713;, + 0.765890; 0.627190;, + 0.732989; 0.622384;, + 0.752544; 0.401713;, + 0.810267; 0.410144;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;, + 0.000000; 1.000000;; + } //End of Mesh UV Coordinates + XSkinMeshHeader { + 1; + 3; + 9; + } + SkinWeights { + "Armature_Body"; + 40; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.996529,-0.083252, 0.000000, + 0.000000, 0.083252, 0.996529, 0.000000, + -0.039910, 1.507776, 0.102992, 1.000000;; + } //End of Armature_Body Skin Weights + SkinWeights { + "Armature_zubi"; + 24; + 320, + 321, + 322, + 323, + 324, + 325, + 326, + 327, + 328, + 329, + 330, + 331, + 332, + 333, + 334, + 335, + 336, + 337, + 338, + 339, + 340, + 341, + 342, + 343; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 0.999497, 0.031712, 0.000000, + -0.000000,-0.031712, 0.999497, 0.000000, + -0.095553,-3.687672, 0.221770, 1.000000;; + } //End of Armature_zubi Skin Weights + SkinWeights { + "Armature_hvost"; + 56; + 168, + 169, + 170, + 171, + 172, + 173, + 174, + 175, + 176, + 177, + 178, + 179, + 180, + 181, + 182, + 183, + 184, + 185, + 186, + 187, + 188, + 189, + 190, + 191, + 192, + 193, + 194, + 195, + 196, + 197, + 198, + 199, + 200, + 201, + 202, + 203, + 204, + 205, + 206, + 207, + 208, + 209, + 210, + 211, + 212, + 213, + 214, + 215, + 224, + 225, + 226, + 227, + 232, + 233, + 234, + 235; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000,-0.449440, 0.893311, 0.000000, + -0.000000,-0.893311,-0.449440, 0.000000, + -0.039909,-1.044864, 1.475107, 1.000000;; + } //End of Armature_hvost Skin Weights + SkinWeights { + "Armature_head"; + 104; + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71, + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143, + 144, + 145, + 146, + 147, + 148, + 149, + 150, + 151, + 152, + 153, + 154, + 155, + 156, + 157, + 158, + 159, + 160, + 161, + 162, + 163, + 164, + 165, + 166, + 167; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000, 0.000000, 0.000000, + -0.000000, 0.998694, 0.051097, 0.000000, + -0.000000,-0.051097, 0.998694, 0.000000, + -0.039910,-2.624220,-0.363653, 1.000000;; + } //End of Armature_head Skin Weights + SkinWeights { + "Armature_noga2"; + 24; + 216, + 217, + 218, + 219, + 244, + 245, + 246, + 247, + 256, + 257, + 258, + 259, + 260, + 261, + 262, + 263, + 264, + 265, + 266, + 267, + 268, + 269, + 270, + 271; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-0.845231, 0.608472, 1.000000;; + } //End of Armature_noga2 Skin Weights + SkinWeights { + "Armature_noga1"; + 24; + 220, + 221, + 222, + 223, + 228, + 229, + 230, + 231, + 236, + 237, + 238, + 239, + 240, + 241, + 242, + 243, + 248, + 249, + 250, + 251, + 252, + 253, + 254, + 255; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + 1.641199,-0.845231,-0.658136, 1.000000;; + } //End of Armature_noga1 Skin Weights + SkinWeights { + "Armature_sheya"; + 24; + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.997121,-0.075824,-0.000243, 0.000000, + 0.075644, 0.994519, 0.072177, 0.000000, + -0.005231,-0.071988, 0.997392, 0.000000, + -0.169522,-1.701621,-0.409142, 1.000000;; + } //End of Armature_sheya Skin Weights + SkinWeights { + "Armature_noga4"; + 24; + 272, + 273, + 274, + 275, + 276, + 277, + 278, + 279, + 280, + 281, + 282, + 283, + 284, + 285, + 286, + 287, + 288, + 289, + 290, + 291, + 292, + 293, + 294, + 295; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-0.845231, 0.608472, 1.000000;; + } //End of Armature_noga4 Skin Weights + SkinWeights { + "Armature_noga3"; + 24; + 296, + 297, + 298, + 299, + 300, + 301, + 302, + 303, + 304, + 305, + 306, + 307, + 308, + 309, + 310, + 311, + 312, + 313, + 314, + 315, + 316, + 317, + 318, + 319; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 0.000000,-0.000000, 1.000000, 0.000000, + -1.000000,-0.000000, 0.000000, 0.000000, + -0.000000,-1.000000,-0.000000, 0.000000, + -1.404690,-0.845231,-0.658136, 1.000000;; + } //End of Armature_noga3 Skin Weights + } //End of Mesh Mesh + } //End of Cube +} //End of Root Frame +AnimationSet { + Animation { + {Armature} + AnimationKey { //Position + 2; + 156; + 0;3; -11.632589, 0.094256, 0.169731;;, + 1;3; -11.632589, 0.094256, 0.169731;;, + 2;3; -11.632589, 0.094256, 0.169731;;, + 3;3; -11.632589, 0.094256, 0.169731;;, + 4;3; -11.632589, 0.094256, 0.169731;;, + 5;3; -11.632589, 0.094256, 0.169731;;, + 6;3; -11.632589, 0.094256, 0.169731;;, + 7;3; -11.632589, 0.094256, 0.169731;;, + 8;3; -11.632589, 0.094256, 0.169731;;, + 9;3; -11.632589, 0.094256, 0.169731;;, + 10;3; -11.632589, 0.094256, 0.169731;;, + 11;3; -11.632589, 0.094256, 0.169731;;, + 12;3; -11.632589, 0.094256, 0.169731;;, + 13;3; -11.632589, 0.094256, 0.169731;;, + 14;3; -11.632589, 0.094256, 0.169731;;, + 15;3; -11.632589, 0.094256, 0.169731;;, + 16;3; -11.632589, 0.094256, 0.169731;;, + 17;3; -11.632589, 0.094256, 0.169731;;, + 18;3; -11.632589, 0.094256, 0.169731;;, + 19;3; -11.632589, 0.094256, 0.169731;;, + 20;3; -11.632589, 0.094256, 0.169731;;, + 21;3; -11.632589, 0.094256, 0.169731;;, + 22;3; -11.632589, 0.094256, 0.169731;;, + 23;3; -11.632589, 0.094256, 0.169731;;, + 24;3; -11.632589, 0.094256, 0.169731;;, + 25;3; -11.632589, 0.094256, 0.169731;;, + 26;3; -11.632589, 0.094256, 0.169731;;, + 27;3; -11.632589, 0.094256, 0.169731;;, + 28;3; -11.632589, 0.094256, 0.169731;;, + 29;3; -11.632589, 0.094256, 0.169731;;, + 30;3; -11.632589, 0.094256, 0.169731;;, + 31;3; -11.632589, 0.094256, 0.169731;;, + 32;3; -11.632589, 0.094256, 0.169731;;, + 33;3; -11.632589, 0.094256, 0.169731;;, + 34;3; -11.632589, 0.094256, 0.169731;;, + 35;3; -11.632589, 0.094256, 0.169731;;, + 36;3; -11.632589, 0.094256, 0.169731;;, + 37;3; -11.632589, 0.094256, 0.169731;;, + 38;3; -11.632589, 0.094256, 0.169731;;, + 39;3; -11.632589, 0.094256, 0.169731;;, + 40;3; -11.632589, 0.094256, 0.169731;;, + 41;3; -11.632589, 0.094256, 0.169731;;, + 42;3; -11.632589, 0.094256, 0.169731;;, + 43;3; -11.632589, 0.094256, 0.169731;;, + 44;3; -11.632589, 0.094256, 0.169731;;, + 45;3; -11.632589, 0.094256, 0.169731;;, + 46;3; -11.632589, 0.094256, 0.169731;;, + 47;3; -11.632589, 0.094256, 0.169731;;, + 48;3; -11.632589, 0.094256, 0.169731;;, + 49;3; -11.632589, 0.094256, 0.169731;;, + 50;3; -11.632589, 0.094256, 0.169731;;, + 51;3; -11.632589, 0.094256, 0.169731;;, + 52;3; -11.632589, 0.094256, 0.169731;;, + 53;3; -11.632589, 0.094256, 0.169731;;, + 54;3; -11.632589, 0.094256, 0.169731;;, + 55;3; -11.632589, 0.094256, 0.169731;;, + 56;3; -11.632589, 0.094256, 0.169731;;, + 57;3; -11.632589, 0.094256, 0.169731;;, + 58;3; -11.632589, 0.094256, 0.169731;;, + 59;3; -11.632589, 0.094256, 0.169731;;, + 60;3; -11.632589, 0.094256, 0.169731;;, + 61;3; -11.632589, 0.094256, 0.169731;;, + 62;3; -11.632589, 0.094256, 0.169731;;, + 63;3; -11.632589, 0.094256, 0.169731;;, + 64;3; -11.632589, 0.094256, 0.169731;;, + 65;3; -11.632589, 0.094256, 0.169731;;, + 66;3; -11.632589, 0.094256, 0.169731;;, + 67;3; -11.632589, 0.094256, 0.169731;;, + 68;3; -11.632589, 0.094256, 0.169731;;, + 69;3; -11.632589, 0.094256, 0.169731;;, + 70;3; -11.632589, 0.094256, 0.169731;;, + 71;3; -11.632589, 0.094256, 0.169731;;, + 72;3; -11.632589, 0.094256, 0.169731;;, + 73;3; -11.632589, 0.094256, 0.169731;;, + 74;3; -11.632589, 0.094256, 0.169731;;, + 75;3; -11.632589, 0.094256, 0.169731;;, + 76;3; -11.632589, 0.094256, 0.169731;;, + 77;3; -11.632589, 0.094256, 0.169731;;, + 78;3; -11.632589, 0.094256, 0.169731;;, + 79;3; -11.632589, 0.094256, 0.169731;;, + 80;3; -11.632589, 0.094256, 0.169731;;, + 81;3; -11.632589, 0.094256, 0.169731;;, + 82;3; -11.632589, 0.094256, 0.169731;;, + 83;3; -11.632589, 0.094256, 0.169731;;, + 84;3; -11.632589, 0.094256, 0.169731;;, + 85;3; -11.632589, 0.094256, 0.169731;;, + 86;3; -11.632589, 0.094256, 0.169731;;, + 87;3; -11.632589, 0.094256, 0.169731;;, + 88;3; -11.632589, 0.094256, 0.169731;;, + 89;3; -11.632589, 0.094256, 0.169731;;, + 90;3; -11.632589, 0.094256, 0.169731;;, + 91;3; -11.632589, 0.094256, 0.169731;;, + 92;3; -11.632589, 0.094256, 0.169731;;, + 93;3; -11.632589, 0.094256, 0.169731;;, + 94;3; -11.632589, 0.094256, 0.169731;;, + 95;3; -11.632589, 0.094256, 0.169731;;, + 96;3; -11.632589, 0.094256, 0.169731;;, + 97;3; -11.632589, 0.094256, 0.169731;;, + 98;3; -11.632589, 0.094256, 0.169731;;, + 99;3; -11.632589, 0.094256, 0.169731;;, + 100;3; -11.632589, 0.094256, 0.169731;;, + 101;3; -11.632589, 0.094256, 0.169731;;, + 102;3; -11.632589, 0.094256, 0.169731;;, + 103;3; -11.632589, 0.094256, 0.169731;;, + 104;3; -11.632589, 0.094256, 0.169731;;, + 105;3; -11.632589, 0.094256, 0.169731;;, + 106;3; -11.632589, 0.094256, 0.169731;;, + 107;3; -11.632589, 0.094256, 0.169731;;, + 108;3; -11.632589, 0.094256, 0.169731;;, + 109;3; -11.632589, 0.094256, 0.169731;;, + 110;3; -11.632589, 0.094256, 0.169731;;, + 111;3; -11.632589, 0.094256, 0.169731;;, + 112;3; -11.632589, 0.094256, 0.169731;;, + 113;3; -11.632589, 0.094256, 0.169731;;, + 114;3; -11.632589, 0.094256, 0.169731;;, + 115;3; -11.632589, 0.094256, 0.169731;;, + 116;3; -11.632589, 0.094256, 0.169731;;, + 117;3; -11.632589, 0.094256, 0.169731;;, + 118;3; -11.632589, 0.094256, 0.169731;;, + 119;3; -11.632589, 0.094256, 0.169731;;, + 120;3; -11.632589, 0.094256, 0.169731;;, + 121;3; -11.632589, 0.094256, 0.169731;;, + 122;3; -11.632589, 0.094256, 0.169731;;, + 123;3; -11.632589, 0.094256, 0.169731;;, + 124;3; -11.632589, 0.094256, 0.169731;;, + 125;3; -11.632589, 0.094256, 0.169731;;, + 126;3; -11.632589, 0.094256, 0.169731;;, + 127;3; -11.632589, 0.094256, 0.169731;;, + 128;3; -11.632589, 0.094256, 0.169731;;, + 129;3; -11.632589, 0.094256, 0.169731;;, + 130;3; -11.632589, 0.094256, 0.169731;;, + 131;3; -11.632589, 0.094256, 0.169731;;, + 132;3; -11.632589, 0.094256, 0.169731;;, + 133;3; -11.632589, 0.094256, 0.169731;;, + 134;3; -11.632589, 0.094256, 0.169731;;, + 135;3; -11.632589, 0.094256, 0.169731;;, + 136;3; -11.632589, 0.094256, 0.169731;;, + 137;3; -11.632589, 0.094256, 0.169731;;, + 138;3; -11.632589, 0.094256, 0.169731;;, + 139;3; -11.632589, 0.094256, 0.169731;;, + 140;3; -11.632589, 0.094256, 0.169731;;, + 141;3; -11.632589, 0.094256, 0.169731;;, + 142;3; -11.632589, 0.094256, 0.169731;;, + 143;3; -11.632589, 0.094256, 0.169731;;, + 144;3; -11.632589, 0.094256, 0.169731;;, + 145;3; -11.632589, 0.094256, 0.169731;;, + 146;3; -11.632589, 0.094256, 0.169731;;, + 147;3; -11.632589, 0.094256, 0.169731;;, + 148;3; -11.632589, 0.094256, 0.169731;;, + 149;3; -11.632589, 0.094256, 0.169731;;, + 150;3; -11.632589, 0.094256, 0.169731;;, + 151;3; -11.632589, 0.094256, 0.169731;;, + 152;3; -11.632589, 0.094256, 0.169731;;, + 153;3; -11.632589, 0.094256, 0.169731;;, + 154;3; -11.632589, 0.094256, 0.169731;;, + 155;3; -11.632589, 0.094256, 0.169731;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 2.153459, 2.153459, 2.153459;;, + 1;3; 2.153459, 2.153459, 2.153459;;, + 2;3; 2.153459, 2.153459, 2.153459;;, + 3;3; 2.153459, 2.153459, 2.153459;;, + 4;3; 2.153459, 2.153459, 2.153459;;, + 5;3; 2.153459, 2.153459, 2.153459;;, + 6;3; 2.153459, 2.153459, 2.153459;;, + 7;3; 2.153459, 2.153459, 2.153459;;, + 8;3; 2.153459, 2.153459, 2.153459;;, + 9;3; 2.153459, 2.153459, 2.153459;;, + 10;3; 2.153459, 2.153459, 2.153459;;, + 11;3; 2.153459, 2.153459, 2.153459;;, + 12;3; 2.153459, 2.153459, 2.153459;;, + 13;3; 2.153459, 2.153459, 2.153459;;, + 14;3; 2.153459, 2.153459, 2.153459;;, + 15;3; 2.153459, 2.153459, 2.153459;;, + 16;3; 2.153459, 2.153459, 2.153459;;, + 17;3; 2.153459, 2.153459, 2.153459;;, + 18;3; 2.153459, 2.153459, 2.153459;;, + 19;3; 2.153459, 2.153459, 2.153459;;, + 20;3; 2.153459, 2.153459, 2.153459;;, + 21;3; 2.153459, 2.153459, 2.153459;;, + 22;3; 2.153459, 2.153459, 2.153459;;, + 23;3; 2.153459, 2.153459, 2.153459;;, + 24;3; 2.153459, 2.153459, 2.153459;;, + 25;3; 2.153459, 2.153459, 2.153459;;, + 26;3; 2.153459, 2.153459, 2.153459;;, + 27;3; 2.153459, 2.153459, 2.153459;;, + 28;3; 2.153459, 2.153459, 2.153459;;, + 29;3; 2.153459, 2.153459, 2.153459;;, + 30;3; 2.153459, 2.153459, 2.153459;;, + 31;3; 2.153459, 2.153459, 2.153459;;, + 32;3; 2.153459, 2.153459, 2.153459;;, + 33;3; 2.153459, 2.153459, 2.153459;;, + 34;3; 2.153459, 2.153459, 2.153459;;, + 35;3; 2.153459, 2.153459, 2.153459;;, + 36;3; 2.153459, 2.153459, 2.153459;;, + 37;3; 2.153459, 2.153459, 2.153459;;, + 38;3; 2.153459, 2.153459, 2.153459;;, + 39;3; 2.153459, 2.153459, 2.153459;;, + 40;3; 2.153459, 2.153459, 2.153459;;, + 41;3; 2.153459, 2.153459, 2.153459;;, + 42;3; 2.153459, 2.153459, 2.153459;;, + 43;3; 2.153459, 2.153459, 2.153459;;, + 44;3; 2.153459, 2.153459, 2.153459;;, + 45;3; 2.153459, 2.153459, 2.153459;;, + 46;3; 2.153459, 2.153459, 2.153459;;, + 47;3; 2.153459, 2.153459, 2.153459;;, + 48;3; 2.153459, 2.153459, 2.153459;;, + 49;3; 2.153459, 2.153459, 2.153459;;, + 50;3; 2.153459, 2.153459, 2.153459;;, + 51;3; 2.153459, 2.153459, 2.153459;;, + 52;3; 2.153459, 2.153459, 2.153459;;, + 53;3; 2.153459, 2.153459, 2.153459;;, + 54;3; 2.153459, 2.153459, 2.153459;;, + 55;3; 2.153459, 2.153459, 2.153459;;, + 56;3; 2.153459, 2.153459, 2.153459;;, + 57;3; 2.153459, 2.153459, 2.153459;;, + 58;3; 2.153459, 2.153459, 2.153459;;, + 59;3; 2.153459, 2.153459, 2.153459;;, + 60;3; 2.153459, 2.153459, 2.153459;;, + 61;3; 2.153459, 2.153459, 2.153459;;, + 62;3; 2.153459, 2.153459, 2.153459;;, + 63;3; 2.153459, 2.153459, 2.153459;;, + 64;3; 2.153459, 2.153459, 2.153459;;, + 65;3; 2.153459, 2.153459, 2.153459;;, + 66;3; 2.153459, 2.153459, 2.153459;;, + 67;3; 2.153459, 2.153459, 2.153459;;, + 68;3; 2.153459, 2.153459, 2.153459;;, + 69;3; 2.153459, 2.153459, 2.153459;;, + 70;3; 2.153459, 2.153459, 2.153459;;, + 71;3; 2.153459, 2.153459, 2.153459;;, + 72;3; 2.153459, 2.153459, 2.153459;;, + 73;3; 2.153459, 2.153459, 2.153459;;, + 74;3; 2.153459, 2.153459, 2.153459;;, + 75;3; 2.153459, 2.153459, 2.153459;;, + 76;3; 2.153459, 2.153459, 2.153459;;, + 77;3; 2.153459, 2.153459, 2.153459;;, + 78;3; 2.153459, 2.153459, 2.153459;;, + 79;3; 2.153459, 2.153459, 2.153459;;, + 80;3; 2.153459, 2.153459, 2.153459;;, + 81;3; 2.153459, 2.153459, 2.153459;;, + 82;3; 2.153459, 2.153459, 2.153459;;, + 83;3; 2.153459, 2.153459, 2.153459;;, + 84;3; 2.153459, 2.153459, 2.153459;;, + 85;3; 2.153459, 2.153459, 2.153459;;, + 86;3; 2.153459, 2.153459, 2.153459;;, + 87;3; 2.153459, 2.153459, 2.153459;;, + 88;3; 2.153459, 2.153459, 2.153459;;, + 89;3; 2.153459, 2.153459, 2.153459;;, + 90;3; 2.153459, 2.153459, 2.153459;;, + 91;3; 2.153459, 2.153459, 2.153459;;, + 92;3; 2.153459, 2.153459, 2.153459;;, + 93;3; 2.153459, 2.153459, 2.153459;;, + 94;3; 2.153459, 2.153459, 2.153459;;, + 95;3; 2.153459, 2.153459, 2.153459;;, + 96;3; 2.153459, 2.153459, 2.153459;;, + 97;3; 2.153459, 2.153459, 2.153459;;, + 98;3; 2.153459, 2.153459, 2.153459;;, + 99;3; 2.153459, 2.153459, 2.153459;;, + 100;3; 2.153459, 2.153459, 2.153459;;, + 101;3; 2.153459, 2.153459, 2.153459;;, + 102;3; 2.153459, 2.153459, 2.153459;;, + 103;3; 2.153459, 2.153459, 2.153459;;, + 104;3; 2.153459, 2.153459, 2.153459;;, + 105;3; 2.153459, 2.153459, 2.153459;;, + 106;3; 2.153459, 2.153459, 2.153459;;, + 107;3; 2.153459, 2.153459, 2.153459;;, + 108;3; 2.153459, 2.153459, 2.153459;;, + 109;3; 2.153459, 2.153459, 2.153459;;, + 110;3; 2.153459, 2.153459, 2.153459;;, + 111;3; 2.153459, 2.153459, 2.153459;;, + 112;3; 2.153459, 2.153459, 2.153459;;, + 113;3; 2.153459, 2.153459, 2.153459;;, + 114;3; 2.153459, 2.153459, 2.153459;;, + 115;3; 2.153459, 2.153459, 2.153459;;, + 116;3; 2.153459, 2.153459, 2.153459;;, + 117;3; 2.153459, 2.153459, 2.153459;;, + 118;3; 2.153459, 2.153459, 2.153459;;, + 119;3; 2.153459, 2.153459, 2.153459;;, + 120;3; 2.153459, 2.153459, 2.153459;;, + 121;3; 2.153459, 2.153459, 2.153459;;, + 122;3; 2.153459, 2.153459, 2.153459;;, + 123;3; 2.153459, 2.153459, 2.153459;;, + 124;3; 2.153459, 2.153459, 2.153459;;, + 125;3; 2.153459, 2.153459, 2.153459;;, + 126;3; 2.153459, 2.153459, 2.153459;;, + 127;3; 2.153459, 2.153459, 2.153459;;, + 128;3; 2.153459, 2.153459, 2.153459;;, + 129;3; 2.153459, 2.153459, 2.153459;;, + 130;3; 2.153459, 2.153459, 2.153459;;, + 131;3; 2.153459, 2.153459, 2.153459;;, + 132;3; 2.153459, 2.153459, 2.153459;;, + 133;3; 2.153459, 2.153459, 2.153459;;, + 134;3; 2.153459, 2.153459, 2.153459;;, + 135;3; 2.153459, 2.153459, 2.153459;;, + 136;3; 2.153459, 2.153459, 2.153459;;, + 137;3; 2.153459, 2.153459, 2.153459;;, + 138;3; 2.153459, 2.153459, 2.153459;;, + 139;3; 2.153459, 2.153459, 2.153459;;, + 140;3; 2.153459, 2.153459, 2.153459;;, + 141;3; 2.153459, 2.153459, 2.153459;;, + 142;3; 2.153459, 2.153459, 2.153459;;, + 143;3; 2.153459, 2.153459, 2.153459;;, + 144;3; 2.153459, 2.153459, 2.153459;;, + 145;3; 2.153459, 2.153459, 2.153459;;, + 146;3; 2.153459, 2.153459, 2.153459;;, + 147;3; 2.153459, 2.153459, 2.153459;;, + 148;3; 2.153459, 2.153459, 2.153459;;, + 149;3; 2.153459, 2.153459, 2.153459;;, + 150;3; 2.153459, 2.153459, 2.153459;;, + 151;3; 2.153459, 2.153459, 2.153459;;, + 152;3; 2.153459, 2.153459, 2.153459;;, + 153;3; 2.153459, 2.153459, 2.153459;;, + 154;3; 2.153459, 2.153459, 2.153459;;, + 155;3; 2.153459, 2.153459, 2.153459;;; + } + } + Animation { + {Armature_Body} + AnimationKey { //Position + 2; + 156; + 0;3; 5.378092,-1.647068, 2.876912;;, + 1;3; 5.378092,-1.647068, 2.876912;;, + 2;3; 5.378092,-1.647068, 2.876912;;, + 3;3; 5.378092,-1.647068, 2.876912;;, + 4;3; 5.378092,-1.647068, 2.876912;;, + 5;3; 5.378092,-1.647068, 2.876912;;, + 6;3; 5.378092,-1.647068, 2.876912;;, + 7;3; 5.378092,-1.647068, 2.876912;;, + 8;3; 5.378092,-1.647068, 2.876912;;, + 9;3; 5.378092,-1.647068, 2.876912;;, + 10;3; 5.378092,-1.647068, 2.876912;;, + 11;3; 5.378092,-1.647068, 2.876912;;, + 12;3; 5.378092,-1.647068, 2.876912;;, + 13;3; 5.378092,-1.647068, 2.876912;;, + 14;3; 5.378092,-1.647068, 2.876912;;, + 15;3; 5.378092,-1.647068, 2.876912;;, + 16;3; 5.378092,-1.647068, 2.876912;;, + 17;3; 5.378092,-1.647068, 2.876912;;, + 18;3; 5.378092,-1.647068, 2.876912;;, + 19;3; 5.378092,-1.647068, 2.876912;;, + 20;3; 5.378092,-1.647068, 2.876912;;, + 21;3; 5.378092,-1.647068, 2.876912;;, + 22;3; 5.378092,-1.647068, 2.876912;;, + 23;3; 5.378092,-1.647068, 2.876912;;, + 24;3; 5.378092,-1.647068, 2.876912;;, + 25;3; 5.378092,-1.647068, 2.876912;;, + 26;3; 5.378092,-1.647068, 2.876912;;, + 27;3; 5.378092,-1.647068, 2.876912;;, + 28;3; 5.378092,-1.647068, 2.876912;;, + 29;3; 5.378092,-1.647068, 2.876912;;, + 30;3; 5.378092,-1.647068, 2.876912;;, + 31;3; 5.378092,-1.647068, 2.876912;;, + 32;3; 5.378092,-1.647068, 2.876912;;, + 33;3; 5.378092,-1.647068, 2.876912;;, + 34;3; 5.378092,-1.647068, 2.876912;;, + 35;3; 5.378092,-1.647068, 2.876912;;, + 36;3; 5.378092,-1.647068, 2.876912;;, + 37;3; 5.378092,-1.647068, 2.876912;;, + 38;3; 5.378092,-1.647068, 2.876912;;, + 39;3; 5.378092,-1.647068, 2.876912;;, + 40;3; 5.378092,-1.647068, 2.876912;;, + 41;3; 5.378092,-1.647068, 2.876912;;, + 42;3; 5.378092,-1.647068, 2.876912;;, + 43;3; 5.378092,-1.647068, 2.876912;;, + 44;3; 5.378092,-1.647068, 2.876912;;, + 45;3; 5.378092,-1.647068, 2.876912;;, + 46;3; 5.378092,-1.647068, 2.876912;;, + 47;3; 5.378092,-1.647068, 2.876912;;, + 48;3; 5.378092,-1.647068, 2.876912;;, + 49;3; 5.378092,-1.647068, 2.876912;;, + 50;3; 5.378092,-1.647068, 2.876912;;, + 51;3; 5.378092,-1.647068, 2.876912;;, + 52;3; 5.378092,-1.647068, 2.876912;;, + 53;3; 5.378092,-1.647068, 2.876912;;, + 54;3; 5.378092,-1.647068, 2.876912;;, + 55;3; 5.378092,-1.647068, 2.876912;;, + 56;3; 5.378092,-1.647068, 2.876912;;, + 57;3; 5.378092,-1.647068, 2.876912;;, + 58;3; 5.378092,-1.647068, 2.876912;;, + 59;3; 5.378092,-1.647068, 2.876912;;, + 60;3; 5.378092,-1.647068, 2.876912;;, + 61;3; 5.378092,-1.647068, 2.876912;;, + 62;3; 5.378092,-1.647068, 2.876912;;, + 63;3; 5.378092,-1.647068, 2.876912;;, + 64;3; 5.378092,-1.647068, 2.876912;;, + 65;3; 5.378092,-1.647068, 2.876912;;, + 66;3; 5.378092,-1.647068, 2.876912;;, + 67;3; 5.378092,-1.647068, 2.876912;;, + 68;3; 5.378092,-1.647068, 2.876912;;, + 69;3; 5.378092,-1.647068, 2.876912;;, + 70;3; 5.378092,-1.647068, 2.876912;;, + 71;3; 5.378092,-1.647068, 2.876912;;, + 72;3; 5.378092,-1.647068, 2.876912;;, + 73;3; 5.378092,-1.647068, 2.876912;;, + 74;3; 5.378092,-1.647068, 2.876912;;, + 75;3; 5.378092,-1.647068, 2.876912;;, + 76;3; 5.378092,-1.647068, 2.876912;;, + 77;3; 5.378092,-1.647068, 2.876912;;, + 78;3; 5.378092,-1.647068, 2.876912;;, + 79;3; 5.378092,-1.647068, 2.876912;;, + 80;3; 5.378092,-1.647068, 2.876912;;, + 81;3; 5.378092,-1.647068, 2.876912;;, + 82;3; 5.378092,-1.647068, 2.876912;;, + 83;3; 5.378092,-1.647068, 2.876912;;, + 84;3; 5.378092,-1.647068, 2.876912;;, + 85;3; 5.378092,-1.647068, 2.876912;;, + 86;3; 5.378092,-1.647068, 2.876912;;, + 87;3; 5.378092,-1.647068, 2.876912;;, + 88;3; 5.378092,-1.647068, 2.876912;;, + 89;3; 5.378092,-1.647068, 2.876912;;, + 90;3; 5.378092,-1.647068, 2.876912;;, + 91;3; 5.378092,-1.647068, 2.876912;;, + 92;3; 5.378092,-1.647068, 2.876912;;, + 93;3; 5.378092,-1.647068, 2.876912;;, + 94;3; 5.378092,-1.647068, 2.876912;;, + 95;3; 5.378092,-1.647068, 2.876912;;, + 96;3; 5.378092,-1.647068, 2.876912;;, + 97;3; 5.378092,-1.647068, 2.876912;;, + 98;3; 5.378092,-1.647068, 2.876912;;, + 99;3; 5.378092,-1.647068, 2.876912;;, + 100;3; 5.378092,-1.647068, 2.876912;;, + 101;3; 5.378092,-1.647068, 2.876912;;, + 102;3; 5.378092,-1.647068, 2.876912;;, + 103;3; 5.378092,-1.647068, 2.876912;;, + 104;3; 5.378092,-1.647068, 2.876912;;, + 105;3; 5.378092,-1.647068, 2.876912;;, + 106;3; 5.378092,-1.647068, 2.876912;;, + 107;3; 5.378092,-1.647068, 2.876912;;, + 108;3; 5.378092,-1.647068, 2.876912;;, + 109;3; 5.378092,-1.647068, 2.876912;;, + 110;3; 5.378092,-1.647068, 2.876912;;, + 111;3; 5.378092,-1.647068, 2.876912;;, + 112;3; 5.378092,-1.647068, 2.876912;;, + 113;3; 5.378092,-1.647068, 2.876912;;, + 114;3; 5.378092,-1.647068, 2.876912;;, + 115;3; 5.378092,-1.647068, 2.876912;;, + 116;3; 5.378092,-1.647068, 2.876912;;, + 117;3; 5.378092,-1.647068, 2.876912;;, + 118;3; 5.378092,-1.647068, 2.876912;;, + 119;3; 5.378092,-1.647068, 2.876912;;, + 120;3; 5.378092,-1.647068, 2.876912;;, + 121;3; 5.378092,-1.647068, 2.876912;;, + 122;3; 5.378092,-1.647068, 2.876912;;, + 123;3; 5.378092,-1.647068, 2.876912;;, + 124;3; 5.378092,-1.647068, 2.876912;;, + 125;3; 5.378092,-1.647068, 2.876912;;, + 126;3; 5.378092,-1.647068, 2.876912;;, + 127;3; 5.378092,-1.647068, 2.876912;;, + 128;3; 5.378092,-1.647068, 2.876912;;, + 129;3; 5.378092,-1.647068, 2.876912;;, + 130;3; 5.378092,-1.647068, 2.876912;;, + 131;3; 5.378092,-1.647068, 2.876912;;, + 132;3; 5.378092,-1.647068, 2.876912;;, + 133;3; 5.378092,-1.647068, 2.876912;;, + 134;3; 5.378092,-1.647068, 2.876912;;, + 135;3; 5.378092,-1.647068, 2.876912;;, + 136;3; 5.378092,-1.187825, 2.736182;;, + 137;3; 5.378092,-0.728790, 2.595572;;, + 138;3; 5.378092,-0.729070, 2.598489;;, + 139;3; 5.378092,-0.730037, 2.606928;;, + 140;3; 5.378092,-0.731865, 2.620276;;, + 141;3; 5.378092,-0.734711, 2.637750;;, + 142;3; 5.378092,-0.738697, 2.658450;;, + 143;3; 5.378092,-0.743910, 2.681418;;, + 144;3; 5.378092,-0.750400, 2.705708;;, + 145;3; 5.378092,-0.758182, 2.730444;;, + 146;3; 5.378092,-0.767245, 2.754857;;, + 147;3; 5.378092,-0.777552, 2.778308;;, + 148;3; 5.378092,-0.789052, 2.800292;;, + 149;3; 5.378092,-0.801685, 2.820429;;, + 150;3; 5.378092,-0.863997, 2.838559;;, + 151;3; 5.378092,-1.019046, 2.853992;;, + 152;3; 5.378092,-1.234415, 2.865585;;, + 153;3; 5.378092,-1.447600, 2.872756;;, + 154;3; 5.378092,-1.595927, 2.876091;;, + 155;3; 5.378092,-1.647068, 2.876912;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 1;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 2;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 3;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 4;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 5;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 6;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 7;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 8;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 9;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 10;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 11;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 12;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 13;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 14;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 15;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 16;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 17;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 18;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 19;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 20;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 21;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 22;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 23;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 24;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 25;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 26;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 27;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 28;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 29;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 30;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 31;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 32;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 33;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 34;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 35;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 36;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 37;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 38;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 39;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 40;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 41;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 42;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 43;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 44;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 45;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 46;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 47;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 48;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 49;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 50;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 51;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 52;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 53;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 54;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 55;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 56;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 57;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 58;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 59;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 60;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 61;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 62;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 63;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 64;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 65;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 66;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 67;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 68;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 69;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 70;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 71;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 72;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 73;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 74;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 75;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 76;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 77;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 78;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 79;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 80;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 81;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 82;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 83;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 84;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 85;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 86;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 87;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 88;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 89;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 90;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 91;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 92;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 93;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 94;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 95;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 96;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 97;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 98;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 99;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 100;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 101;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 102;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 103;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 104;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 105;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 106;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 107;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 108;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 109;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 110;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 111;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 112;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 113;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 114;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 115;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 116;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 117;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 118;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 119;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 120;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 121;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 122;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 123;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 124;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 125;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 126;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 127;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 128;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 129;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 130;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 131;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 132;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 133;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 134;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 135;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 136;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 137;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 138;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 139;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 140;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 141;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 142;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 143;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 144;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 145;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 146;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 147;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 148;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 149;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 150;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 151;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 152;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 153;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 154;4; -0.999132, 0.041662, 0.000000, 0.000000;;, + 155;4; -0.999132, 0.041662, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga3} + AnimationKey { //Position + 2; + 156; + 0;3; 0.618225, 0.037596,-0.622362;;, + 1;3; 0.618225, 0.037596,-0.622362;;, + 2;3; 0.618225, 0.037596,-0.622362;;, + 3;3; 0.618225, 0.037596,-0.622362;;, + 4;3; 0.618225, 0.037596,-0.622362;;, + 5;3; 0.618225, 0.037596,-0.622362;;, + 6;3; 0.618225, 0.037596,-0.622362;;, + 7;3; 0.618225, 0.037596,-0.622362;;, + 8;3; 0.618225, 0.037596,-0.622362;;, + 9;3; 0.618225, 0.037596,-0.622362;;, + 10;3; 0.618225, 0.037596,-0.622362;;, + 11;3; 0.618225, 0.037596,-0.622362;;, + 12;3; 0.618225, 0.037596,-0.622362;;, + 13;3; 0.618225, 0.037596,-0.622362;;, + 14;3; 0.618225, 0.037596,-0.622362;;, + 15;3; 0.618225, 0.037596,-0.622362;;, + 16;3; 0.618225, 0.037596,-0.622362;;, + 17;3; 0.618225, 0.037596,-0.622362;;, + 18;3; 0.618225, 0.037596,-0.622362;;, + 19;3; 0.618225, 0.037596,-0.622362;;, + 20;3; 0.618225, 0.037596,-0.622362;;, + 21;3; 0.618225, 0.037596,-0.622362;;, + 22;3; 0.618225, 0.037596,-0.622362;;, + 23;3; 0.618225, 0.037596,-0.622362;;, + 24;3; 0.618225, 0.037596,-0.622362;;, + 25;3; 0.618225, 0.037596,-0.622362;;, + 26;3; 0.618225, 0.037596,-0.622362;;, + 27;3; 0.618225, 0.037596,-0.622362;;, + 28;3; 0.618225, 0.037596,-0.622362;;, + 29;3; 0.618225, 0.037596,-0.622362;;, + 30;3; 0.618225, 0.037596,-0.622362;;, + 31;3; 0.618225, 0.037596,-0.622362;;, + 32;3; 0.618225, 0.037596,-0.622362;;, + 33;3; 0.618225, 0.037596,-0.622362;;, + 34;3; 0.618225, 0.037596,-0.622362;;, + 35;3; 0.618225, 0.037596,-0.622362;;, + 36;3; 0.618225, 0.037596,-0.622362;;, + 37;3; 0.618225, 0.037596,-0.622362;;, + 38;3; 0.618225, 0.037596,-0.622362;;, + 39;3; 0.618225, 0.037596,-0.622362;;, + 40;3; 0.618225, 0.037596,-0.622362;;, + 41;3; 0.618225, 0.037596,-0.622362;;, + 42;3; 0.618225, 0.037596,-0.622362;;, + 43;3; 0.618225, 0.037596,-0.622362;;, + 44;3; 0.618225, 0.037596,-0.622362;;, + 45;3; 0.618225, 0.037596,-0.622362;;, + 46;3; 0.618225, 0.037596,-0.622362;;, + 47;3; 0.618225, 0.037596,-0.622362;;, + 48;3; 0.618225, 0.037596,-0.622362;;, + 49;3; 0.618225, 0.037596,-0.622362;;, + 50;3; 0.618225, 0.037596,-0.622362;;, + 51;3; 0.618225, 0.037596,-0.622362;;, + 52;3; 0.618225, 0.037596,-0.622362;;, + 53;3; 0.618225, 0.037596,-0.622362;;, + 54;3; 0.618225, 0.037596,-0.622362;;, + 55;3; 0.618225, 0.037596,-0.622362;;, + 56;3; 0.618225, 0.037596,-0.622362;;, + 57;3; 0.618225, 0.037596,-0.622362;;, + 58;3; 0.618225, 0.037596,-0.622362;;, + 59;3; 0.618225, 0.037596,-0.622362;;, + 60;3; 0.618225, 0.037596,-0.622362;;, + 61;3; 0.618225, 0.037596,-0.622362;;, + 62;3; 0.618225, 0.037596,-0.622362;;, + 63;3; 0.618225, 0.037596,-0.622362;;, + 64;3; 0.618225, 0.037596,-0.622362;;, + 65;3; 0.618225, 0.037596,-0.622362;;, + 66;3; 0.618225, 0.037596,-0.622362;;, + 67;3; 0.618225, 0.037596,-0.622362;;, + 68;3; 0.618225, 0.037596,-0.622362;;, + 69;3; 0.618225, 0.037596,-0.622362;;, + 70;3; 0.618225, 0.037596,-0.622362;;, + 71;3; 0.618225, 0.037596,-0.622362;;, + 72;3; 0.618225, 0.037596,-0.622362;;, + 73;3; 0.618225, 0.037596,-0.622362;;, + 74;3; 0.618225, 0.037596,-0.622362;;, + 75;3; 0.618225, 0.037596,-0.622362;;, + 76;3; 0.618225, 0.037596,-0.622362;;, + 77;3; 0.618225, 0.037596,-0.622362;;, + 78;3; 0.618225, 0.037596,-0.622362;;, + 79;3; 0.618225, 0.037596,-0.622362;;, + 80;3; 0.618225, 0.037596,-0.622362;;, + 81;3; 0.618225, 0.037596,-0.622362;;, + 82;3; 0.618225, 0.037596,-0.622362;;, + 83;3; 0.618225, 0.037596,-0.622362;;, + 84;3; 0.618225, 0.037596,-0.622362;;, + 85;3; 0.618225, 0.037596,-0.622362;;, + 86;3; 0.618225, 0.037596,-0.622362;;, + 87;3; 0.618225, 0.037596,-0.622362;;, + 88;3; 0.618225, 0.037596,-0.622362;;, + 89;3; 0.618225, 0.037596,-0.622362;;, + 90;3; 0.618225, 0.037596,-0.622362;;, + 91;3; 0.618225, 0.037596,-0.622362;;, + 92;3; 0.618225, 0.037596,-0.622362;;, + 93;3; 0.618225, 0.037596,-0.622362;;, + 94;3; 0.618225, 0.037596,-0.622362;;, + 95;3; 0.618225, 0.037596,-0.622362;;, + 96;3; 0.618225, 0.037596,-0.622362;;, + 97;3; 0.618225, 0.037596,-0.622362;;, + 98;3; 0.618225, 0.037596,-0.622362;;, + 99;3; 0.618225, 0.037596,-0.622362;;, + 100;3; 0.618225, 0.037596,-0.622362;;, + 101;3; 0.618225, 0.037596,-0.622362;;, + 102;3; 0.618225, 0.037596,-0.622362;;, + 103;3; 0.618225, 0.037596,-0.622362;;, + 104;3; 0.618225, 0.037596,-0.622362;;, + 105;3; 0.618225, 0.037596,-0.622362;;, + 106;3; 0.618225, 0.037596,-0.622362;;, + 107;3; 0.618225, 0.037596,-0.622362;;, + 108;3; 0.618225, 0.037596,-0.622362;;, + 109;3; 0.618225, 0.037596,-0.622362;;, + 110;3; 0.618225, 0.037596,-0.622362;;, + 111;3; 0.618225, 0.037596,-0.622362;;, + 112;3; 0.618225, 0.037596,-0.622362;;, + 113;3; 0.618225, 0.037596,-0.622362;;, + 114;3; 0.618225, 0.037596,-0.622362;;, + 115;3; 0.618225, 0.037596,-0.622362;;, + 116;3; 0.618225, 0.037596,-0.622362;;, + 117;3; 0.618225, 0.037596,-0.622362;;, + 118;3; 0.618225, 0.037596,-0.622362;;, + 119;3; 0.618225, 0.037596,-0.622362;;, + 120;3; 0.618225, 0.037596,-0.622362;;, + 121;3; 0.618225, 0.037596,-0.622362;;, + 122;3; 0.618225, 0.037596,-0.622362;;, + 123;3; 0.618225, 0.037596,-0.622362;;, + 124;3; 0.618225, 0.037596,-0.622362;;, + 125;3; 0.618225, 0.037596,-0.622362;;, + 126;3; 0.618225, 0.037596,-0.622362;;, + 127;3; 0.618225, 0.037596,-0.622362;;, + 128;3; 0.618225, 0.037596,-0.622362;;, + 129;3; 0.618225, 0.037596,-0.622362;;, + 130;3; 0.618225, 0.037596,-0.622362;;, + 131;3; 0.618225, 0.037596,-0.622362;;, + 132;3; 0.618225, 0.037596,-0.622362;;, + 133;3; 0.618225, 0.037596,-0.622362;;, + 134;3; 0.618225, 0.037596,-0.622362;;, + 135;3; 0.618225, 0.037596,-0.622362;;, + 136;3; 0.618225, 0.037596,-0.622363;;, + 137;3; 0.618225, 0.037596,-0.622363;;, + 138;3; 0.618225, 0.037596,-0.622362;;, + 139;3; 0.618225, 0.037596,-0.622363;;, + 140;3; 0.618225, 0.037596,-0.622362;;, + 141;3; 0.618225, 0.037596,-0.622362;;, + 142;3; 0.618225, 0.037596,-0.622363;;, + 143;3; 0.618225, 0.037596,-0.622363;;, + 144;3; 0.618225, 0.037596,-0.622362;;, + 145;3; 0.618225, 0.037596,-0.622362;;, + 146;3; 0.618225, 0.037596,-0.622362;;, + 147;3; 0.618225, 0.037596,-0.622363;;, + 148;3; 0.618225, 0.037596,-0.622363;;, + 149;3; 0.618225, 0.037596,-0.622363;;, + 150;3; 0.618225, 0.037596,-0.622363;;, + 151;3; 0.618225, 0.037596,-0.622362;;, + 152;3; 0.618225, 0.037596,-0.622363;;, + 153;3; 0.618225, 0.037596,-0.622362;;, + 154;3; 0.618225, 0.037596,-0.622363;;, + 155;3; 0.618225, 0.037596,-0.622362;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 78;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 79;4; -0.442723,-0.549415, 0.442723,-0.549415;;, + 80;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 81;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 82;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 83;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 84;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 85;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 86;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 87;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 90;4; -0.509750,-0.483645, 0.509750,-0.483645;;, + 91;4; -0.523779,-0.470739, 0.523779,-0.470739;;, + 92;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 93;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 94;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 95;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 96;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 97;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 98;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 99;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.490465,-0.502499, 0.490465,-0.502499;;, + 108;4; -0.524578,-0.450433, 0.524578,-0.450433;;, + 109;4; -0.573580,-0.375622, 0.573580,-0.375622;;, + 110;4; -0.622557,-0.300834, 0.622557,-0.300834;;, + 111;4; -0.656625,-0.248811, 0.656625,-0.248810;;, + 112;4; -0.668334,-0.230932, 0.668334,-0.230932;;, + 113;4; -0.661874,-0.237181, 0.661874,-0.237181;;, + 114;4; -0.642405,-0.256080, 0.642405,-0.256080;;, + 115;4; -0.610375,-0.287321, 0.610375,-0.287321;;, + 116;4; -0.567273,-0.329627, 0.567273,-0.329627;;, + 117;4; -0.515861,-0.380508, 0.515861,-0.380508;;, + 118;4; -0.460128,-0.436291, 0.460128,-0.436291;;, + 119;4; -0.404820,-0.492536, 0.404820,-0.492536;;, + 120;4; -0.354654,-0.544771, 0.354654,-0.544771;;, + 121;4; -0.313535,-0.589233, 0.313535,-0.589233;;, + 122;4; -0.284114,-0.623311, 0.284114,-0.623311;;, + 123;4; -0.267759,-0.645594, 0.267759,-0.645594;;, + 124;4; -0.264803,-0.655652, 0.264803,-0.655652;;, + 125;4; -0.280825,-0.650350, 0.280825,-0.650350;;, + 126;4; -0.320283,-0.627132, 0.320283,-0.627132;;, + 127;4; -0.374971,-0.591542, 0.374971,-0.591542;;, + 128;4; -0.428834,-0.555035, 0.428834,-0.555035;;, + 129;4; -0.466013,-0.529303, 0.466013,-0.529303;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.421019,-0.563519, 0.421019,-0.563519;;, + 137;4; -0.363310,-0.606635, 0.363310,-0.606635;;, + 138;4; -0.364209,-0.605990, 0.364209,-0.605990;;, + 139;4; -0.366735,-0.604180, 0.366735,-0.604180;;, + 140;4; -0.370579,-0.601425, 0.370579,-0.601425;;, + 141;4; -0.375380,-0.597985, 0.375380,-0.597985;;, + 142;4; -0.380746,-0.594141, 0.380746,-0.594141;;, + 143;4; -0.386282,-0.590175, 0.386282,-0.590175;;, + 144;4; -0.391619,-0.586352, 0.391619,-0.586352;;, + 145;4; -0.396433,-0.582903, 0.396433,-0.582903;;, + 146;4; -0.400456,-0.580021, 0.400456,-0.580021;;, + 147;4; -0.403482,-0.577853, 0.403482,-0.577853;;, + 148;4; -0.405364,-0.576505, 0.405364,-0.576505;;, + 149;4; -0.406005,-0.576046, 0.406005,-0.576046;;, + 150;4; -0.398008,-0.581360, 0.398008,-0.581360;;, + 151;4; -0.380894,-0.592732, 0.380894,-0.592732;;, + 152;4; -0.372894,-0.598048, 0.372894,-0.598048;;, + 153;4; -0.398445,-0.579305, 0.398445,-0.579305;;, + 154;4; -0.453128,-0.539191, 0.453128,-0.539191;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga1} + AnimationKey { //Position + 2; + 156; + 0;3; 0.618225, 3.072911,-0.875938;;, + 1;3; 0.618225, 3.072911,-0.875938;;, + 2;3; 0.618225, 3.072911,-0.875938;;, + 3;3; 0.618225, 3.072911,-0.875938;;, + 4;3; 0.618225, 3.072911,-0.875938;;, + 5;3; 0.618225, 3.072911,-0.875938;;, + 6;3; 0.618225, 3.072911,-0.875938;;, + 7;3; 0.618225, 3.072911,-0.875938;;, + 8;3; 0.618225, 3.072911,-0.875938;;, + 9;3; 0.618225, 3.072911,-0.875938;;, + 10;3; 0.618225, 3.072911,-0.875938;;, + 11;3; 0.618225, 3.072911,-0.875938;;, + 12;3; 0.618225, 3.072911,-0.875938;;, + 13;3; 0.618225, 3.072911,-0.875938;;, + 14;3; 0.618225, 3.072911,-0.875938;;, + 15;3; 0.618225, 3.072911,-0.875938;;, + 16;3; 0.618225, 3.072911,-0.875938;;, + 17;3; 0.618225, 3.072911,-0.875938;;, + 18;3; 0.618225, 3.072911,-0.875938;;, + 19;3; 0.618225, 3.072911,-0.875938;;, + 20;3; 0.618225, 3.072911,-0.875938;;, + 21;3; 0.618225, 3.072911,-0.875938;;, + 22;3; 0.618225, 3.072911,-0.875938;;, + 23;3; 0.618225, 3.072911,-0.875938;;, + 24;3; 0.618225, 3.072911,-0.875938;;, + 25;3; 0.618225, 3.072911,-0.875938;;, + 26;3; 0.618225, 3.072911,-0.875938;;, + 27;3; 0.618225, 3.072911,-0.875938;;, + 28;3; 0.618225, 3.072911,-0.875938;;, + 29;3; 0.618225, 3.072911,-0.875938;;, + 30;3; 0.618225, 3.072911,-0.875938;;, + 31;3; 0.618225, 3.072911,-0.875938;;, + 32;3; 0.618225, 3.072911,-0.875938;;, + 33;3; 0.618225, 3.072911,-0.875938;;, + 34;3; 0.618225, 3.072911,-0.875938;;, + 35;3; 0.618225, 3.072911,-0.875938;;, + 36;3; 0.618225, 3.072911,-0.875938;;, + 37;3; 0.618225, 3.072911,-0.875938;;, + 38;3; 0.618225, 3.072911,-0.875938;;, + 39;3; 0.618225, 3.072911,-0.875938;;, + 40;3; 0.618225, 3.072911,-0.875938;;, + 41;3; 0.618225, 3.072911,-0.875938;;, + 42;3; 0.618225, 3.072911,-0.875938;;, + 43;3; 0.618225, 3.072911,-0.875938;;, + 44;3; 0.618225, 3.072911,-0.875938;;, + 45;3; 0.618225, 3.072911,-0.875938;;, + 46;3; 0.618225, 3.072911,-0.875938;;, + 47;3; 0.618225, 3.072911,-0.875938;;, + 48;3; 0.618225, 3.072911,-0.875938;;, + 49;3; 0.618225, 3.072911,-0.875938;;, + 50;3; 0.618225, 3.072911,-0.875938;;, + 51;3; 0.618225, 3.072911,-0.875938;;, + 52;3; 0.618225, 3.072911,-0.875938;;, + 53;3; 0.618225, 3.072911,-0.875938;;, + 54;3; 0.618225, 3.072911,-0.875938;;, + 55;3; 0.618225, 3.072911,-0.875938;;, + 56;3; 0.618225, 3.072911,-0.875938;;, + 57;3; 0.618225, 3.072911,-0.875938;;, + 58;3; 0.618225, 3.072911,-0.875938;;, + 59;3; 0.618225, 3.072911,-0.875938;;, + 60;3; 0.618225, 3.072911,-0.875938;;, + 61;3; 0.618225, 3.072911,-0.875938;;, + 62;3; 0.618225, 3.072911,-0.875938;;, + 63;3; 0.618225, 3.072911,-0.875938;;, + 64;3; 0.618225, 3.072911,-0.875938;;, + 65;3; 0.618225, 3.072911,-0.875938;;, + 66;3; 0.618225, 3.072911,-0.875938;;, + 67;3; 0.618225, 3.072911,-0.875938;;, + 68;3; 0.618225, 3.072911,-0.875938;;, + 69;3; 0.618225, 3.072911,-0.875938;;, + 70;3; 0.618225, 3.072911,-0.875938;;, + 71;3; 0.618225, 3.072911,-0.875938;;, + 72;3; 0.618225, 3.072911,-0.875938;;, + 73;3; 0.618225, 3.072911,-0.875938;;, + 74;3; 0.618225, 3.072911,-0.875938;;, + 75;3; 0.618225, 3.072911,-0.875938;;, + 76;3; 0.618225, 3.072911,-0.875938;;, + 77;3; 0.618225, 3.072911,-0.875938;;, + 78;3; 0.618225, 3.072911,-0.875938;;, + 79;3; 0.618225, 3.072911,-0.875938;;, + 80;3; 0.618225, 3.072911,-0.875938;;, + 81;3; 0.618225, 3.072911,-0.875938;;, + 82;3; 0.618225, 3.072911,-0.875938;;, + 83;3; 0.618225, 3.072911,-0.875938;;, + 84;3; 0.618225, 3.072911,-0.875938;;, + 85;3; 0.618225, 3.072911,-0.875938;;, + 86;3; 0.618225, 3.072911,-0.875938;;, + 87;3; 0.618225, 3.072911,-0.875938;;, + 88;3; 0.618225, 3.072911,-0.875938;;, + 89;3; 0.618225, 3.072911,-0.875938;;, + 90;3; 0.618225, 3.072911,-0.875938;;, + 91;3; 0.618225, 3.072911,-0.875938;;, + 92;3; 0.618225, 3.072911,-0.875938;;, + 93;3; 0.618225, 3.072911,-0.875938;;, + 94;3; 0.618225, 3.072911,-0.875938;;, + 95;3; 0.618225, 3.072911,-0.875938;;, + 96;3; 0.618225, 3.072911,-0.875938;;, + 97;3; 0.618225, 3.072911,-0.875938;;, + 98;3; 0.618225, 3.072911,-0.875938;;, + 99;3; 0.618225, 3.072911,-0.875938;;, + 100;3; 0.618225, 3.072911,-0.875938;;, + 101;3; 0.618225, 3.072911,-0.875938;;, + 102;3; 0.618225, 3.072911,-0.875938;;, + 103;3; 0.618225, 3.072911,-0.875938;;, + 104;3; 0.618225, 3.072911,-0.875938;;, + 105;3; 0.618225, 3.072911,-0.875938;;, + 106;3; 0.618225, 3.072911,-0.875938;;, + 107;3; 0.618225, 3.072911,-0.875938;;, + 108;3; 0.618225, 3.072911,-0.875938;;, + 109;3; 0.618225, 3.072911,-0.875938;;, + 110;3; 0.618225, 3.072911,-0.875938;;, + 111;3; 0.618225, 3.072911,-0.875938;;, + 112;3; 0.618225, 3.072911,-0.875938;;, + 113;3; 0.618225, 3.072911,-0.875938;;, + 114;3; 0.618225, 3.072911,-0.875938;;, + 115;3; 0.618225, 3.072911,-0.875938;;, + 116;3; 0.618225, 3.072911,-0.875938;;, + 117;3; 0.618225, 3.072911,-0.875938;;, + 118;3; 0.618225, 3.072911,-0.875938;;, + 119;3; 0.618225, 3.072911,-0.875938;;, + 120;3; 0.618225, 3.072911,-0.875938;;, + 121;3; 0.618225, 3.072911,-0.875938;;, + 122;3; 0.618225, 3.072911,-0.875938;;, + 123;3; 0.618225, 3.072911,-0.875938;;, + 124;3; 0.618225, 3.072911,-0.875938;;, + 125;3; 0.618225, 3.072911,-0.875938;;, + 126;3; 0.618225, 3.072911,-0.875938;;, + 127;3; 0.618225, 3.072911,-0.875938;;, + 128;3; 0.618225, 3.072911,-0.875938;;, + 129;3; 0.618225, 3.072911,-0.875938;;, + 130;3; 0.618225, 3.072911,-0.875938;;, + 131;3; 0.618225, 3.072911,-0.875938;;, + 132;3; 0.618225, 3.072911,-0.875938;;, + 133;3; 0.618225, 3.072911,-0.875938;;, + 134;3; 0.618225, 3.072911,-0.875938;;, + 135;3; 0.618225, 3.072911,-0.875938;;, + 136;3; 0.618225, 3.072911,-0.875938;;, + 137;3; 0.618225, 3.072911,-0.875938;;, + 138;3; 0.618225, 3.072911,-0.875938;;, + 139;3; 0.618225, 3.072911,-0.875938;;, + 140;3; 0.618225, 3.072911,-0.875938;;, + 141;3; 0.618225, 3.072911,-0.875938;;, + 142;3; 0.618225, 3.072911,-0.875938;;, + 143;3; 0.618225, 3.072911,-0.875938;;, + 144;3; 0.618225, 3.072911,-0.875938;;, + 145;3; 0.618225, 3.072911,-0.875938;;, + 146;3; 0.618225, 3.072911,-0.875938;;, + 147;3; 0.618225, 3.072911,-0.875938;;, + 148;3; 0.618225, 3.072911,-0.875938;;, + 149;3; 0.618225, 3.072911,-0.875938;;, + 150;3; 0.618225, 3.072911,-0.875938;;, + 151;3; 0.618225, 3.072911,-0.875938;;, + 152;3; 0.618225, 3.072911,-0.875938;;, + 153;3; 0.618225, 3.072911,-0.875938;;, + 154;3; 0.618225, 3.072911,-0.875938;;, + 155;3; 0.618225, 3.072911,-0.875938;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 78;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 79;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 80;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 81;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 82;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 83;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 84;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 85;4; -0.523779,-0.470740, 0.523779,-0.470740;;, + 86;4; -0.509749,-0.483646, 0.509749,-0.483645;;, + 87;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 90;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 91;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 92;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 93;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 94;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 95;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 96;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 97;4; -0.442723,-0.549416, 0.442723,-0.549415;;, + 98;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 99;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.491310,-0.499783, 0.491310,-0.499783;;, + 108;4; -0.527875,-0.439824, 0.527875,-0.439824;;, + 109;4; -0.580385,-0.353680, 0.580385,-0.353680;;, + 110;4; -0.632861,-0.267568, 0.632861,-0.267568;;, + 111;4; -0.669363,-0.207667, 0.669363,-0.207667;;, + 112;4; -0.681910,-0.187081, 0.681910,-0.187081;;, + 113;4; -0.675079,-0.193992, 0.675079,-0.193992;;, + 114;4; -0.654499,-0.214898, 0.654499,-0.214898;;, + 115;4; -0.620650,-0.249464, 0.620650,-0.249464;;, + 116;4; -0.575119,-0.296284, 0.575119,-0.296284;;, + 117;4; -0.520839,-0.352614, 0.520839,-0.352614;;, + 118;4; -0.462040,-0.414402, 0.462040,-0.414402;;, + 119;4; -0.403751,-0.476744, 0.403751,-0.476744;;, + 120;4; -0.350964,-0.534697, 0.350964,-0.534697;;, + 121;4; -0.307811,-0.584103, 0.307811,-0.584103;;, + 122;4; -0.277091,-0.622069, 0.277091,-0.622069;;, + 123;4; -0.260242,-0.647032, 0.260242,-0.647032;;, + 124;4; -0.257613,-0.658510, 0.257613,-0.658510;;, + 125;4; -0.274638,-0.653639, 0.274638,-0.653639;;, + 126;4; -0.315588,-0.630125, 0.315588,-0.630124;;, + 127;4; -0.372016,-0.593669, 0.372016,-0.593669;;, + 128;4; -0.427452,-0.556114, 0.427452,-0.556114;;, + 129;4; -0.465668,-0.529588, 0.465668,-0.529588;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.532148,-0.458394, 0.532148,-0.458394;;, + 137;4; -0.585542,-0.396409, 0.585542,-0.396409;;, + 138;4; -0.585686,-0.396666, 0.585686,-0.396666;;, + 139;4; -0.585870,-0.397588, 0.585870,-0.397588;;, + 140;4; -0.585704,-0.399404, 0.585704,-0.399404;;, + 141;4; -0.584786,-0.402326, 0.584786,-0.402326;;, + 142;4; -0.582734,-0.406537, 0.582734,-0.406537;;, + 143;4; -0.579209,-0.412177, 0.579209,-0.412177;;, + 144;4; -0.573938,-0.419337, 0.573938,-0.419337;;, + 145;4; -0.566723,-0.428060, 0.566723,-0.428060;;, + 146;4; -0.557438,-0.438344, 0.557438,-0.438344;;, + 147;4; -0.546028,-0.450151, 0.546028,-0.450151;;, + 148;4; -0.532491,-0.463419, 0.532491,-0.463419;;, + 149;4; -0.516871,-0.478066, 0.516871,-0.478066;;, + 150;4; -0.479547,-0.511265, 0.479547,-0.511265;;, + 151;4; -0.422801,-0.561035, 0.422801,-0.561035;;, + 152;4; -0.398209,-0.582521, 0.398209,-0.582521;;, + 153;4; -0.417653,-0.567522, 0.417653,-0.567522;;, + 154;4; -0.459264,-0.535421, 0.459264,-0.535421;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga4} + AnimationKey { //Position + 2; + 156; + 0;3; -0.648382, 0.037596,-0.622362;;, + 1;3; -0.648382, 0.037596,-0.622362;;, + 2;3; -0.648382, 0.037596,-0.622362;;, + 3;3; -0.648382, 0.037596,-0.622362;;, + 4;3; -0.648382, 0.037596,-0.622362;;, + 5;3; -0.648382, 0.037596,-0.622362;;, + 6;3; -0.648382, 0.037596,-0.622362;;, + 7;3; -0.648382, 0.037596,-0.622362;;, + 8;3; -0.648382, 0.037596,-0.622362;;, + 9;3; -0.648382, 0.037596,-0.622362;;, + 10;3; -0.648382, 0.037596,-0.622362;;, + 11;3; -0.648382, 0.037596,-0.622362;;, + 12;3; -0.648382, 0.037596,-0.622362;;, + 13;3; -0.648382, 0.037596,-0.622362;;, + 14;3; -0.648382, 0.037596,-0.622362;;, + 15;3; -0.648382, 0.037596,-0.622362;;, + 16;3; -0.648382, 0.037596,-0.622362;;, + 17;3; -0.648382, 0.037596,-0.622362;;, + 18;3; -0.648382, 0.037596,-0.622362;;, + 19;3; -0.648382, 0.037596,-0.622362;;, + 20;3; -0.648382, 0.037596,-0.622362;;, + 21;3; -0.648382, 0.037596,-0.622362;;, + 22;3; -0.648382, 0.037596,-0.622362;;, + 23;3; -0.648382, 0.037596,-0.622362;;, + 24;3; -0.648382, 0.037596,-0.622362;;, + 25;3; -0.648382, 0.037596,-0.622362;;, + 26;3; -0.648382, 0.037596,-0.622362;;, + 27;3; -0.648382, 0.037596,-0.622362;;, + 28;3; -0.648382, 0.037596,-0.622362;;, + 29;3; -0.648382, 0.037596,-0.622362;;, + 30;3; -0.648382, 0.037596,-0.622362;;, + 31;3; -0.648382, 0.037596,-0.622362;;, + 32;3; -0.648382, 0.037596,-0.622362;;, + 33;3; -0.648382, 0.037596,-0.622362;;, + 34;3; -0.648382, 0.037596,-0.622362;;, + 35;3; -0.648382, 0.037596,-0.622362;;, + 36;3; -0.648382, 0.037596,-0.622362;;, + 37;3; -0.648382, 0.037596,-0.622362;;, + 38;3; -0.648382, 0.037596,-0.622362;;, + 39;3; -0.648382, 0.037596,-0.622362;;, + 40;3; -0.648382, 0.037596,-0.622362;;, + 41;3; -0.648382, 0.037596,-0.622362;;, + 42;3; -0.648382, 0.037596,-0.622362;;, + 43;3; -0.648382, 0.037596,-0.622362;;, + 44;3; -0.648382, 0.037596,-0.622362;;, + 45;3; -0.648382, 0.037596,-0.622362;;, + 46;3; -0.648382, 0.037596,-0.622362;;, + 47;3; -0.648382, 0.037596,-0.622362;;, + 48;3; -0.648382, 0.037596,-0.622362;;, + 49;3; -0.648382, 0.037596,-0.622362;;, + 50;3; -0.648382, 0.037596,-0.622362;;, + 51;3; -0.648382, 0.037596,-0.622362;;, + 52;3; -0.648382, 0.037596,-0.622362;;, + 53;3; -0.648382, 0.037596,-0.622362;;, + 54;3; -0.648382, 0.037596,-0.622362;;, + 55;3; -0.648382, 0.037596,-0.622362;;, + 56;3; -0.648382, 0.037596,-0.622362;;, + 57;3; -0.648382, 0.037596,-0.622362;;, + 58;3; -0.648382, 0.037596,-0.622362;;, + 59;3; -0.648382, 0.037596,-0.622362;;, + 60;3; -0.648382, 0.037596,-0.622362;;, + 61;3; -0.648382, 0.037596,-0.622362;;, + 62;3; -0.648382, 0.037596,-0.622362;;, + 63;3; -0.648382, 0.037596,-0.622362;;, + 64;3; -0.648382, 0.037596,-0.622362;;, + 65;3; -0.648382, 0.037596,-0.622362;;, + 66;3; -0.648382, 0.037596,-0.622362;;, + 67;3; -0.648382, 0.037596,-0.622362;;, + 68;3; -0.648382, 0.037596,-0.622362;;, + 69;3; -0.648382, 0.037596,-0.622362;;, + 70;3; -0.648382, 0.037596,-0.622362;;, + 71;3; -0.648382, 0.037596,-0.622362;;, + 72;3; -0.648382, 0.037596,-0.622362;;, + 73;3; -0.648382, 0.037596,-0.622362;;, + 74;3; -0.648382, 0.037596,-0.622362;;, + 75;3; -0.648382, 0.037596,-0.622362;;, + 76;3; -0.648382, 0.037596,-0.622362;;, + 77;3; -0.648382, 0.037596,-0.622362;;, + 78;3; -0.648382, 0.037596,-0.622362;;, + 79;3; -0.648382, 0.037596,-0.622362;;, + 80;3; -0.648382, 0.037596,-0.622362;;, + 81;3; -0.648382, 0.037596,-0.622362;;, + 82;3; -0.648382, 0.037596,-0.622362;;, + 83;3; -0.648382, 0.037596,-0.622362;;, + 84;3; -0.648382, 0.037596,-0.622362;;, + 85;3; -0.648382, 0.037596,-0.622362;;, + 86;3; -0.648382, 0.037596,-0.622362;;, + 87;3; -0.648382, 0.037596,-0.622362;;, + 88;3; -0.648382, 0.037596,-0.622362;;, + 89;3; -0.648382, 0.037596,-0.622362;;, + 90;3; -0.648382, 0.037596,-0.622362;;, + 91;3; -0.648382, 0.037596,-0.622362;;, + 92;3; -0.648382, 0.037596,-0.622362;;, + 93;3; -0.648382, 0.037596,-0.622362;;, + 94;3; -0.648382, 0.037596,-0.622362;;, + 95;3; -0.648382, 0.037596,-0.622362;;, + 96;3; -0.648382, 0.037596,-0.622362;;, + 97;3; -0.648382, 0.037596,-0.622362;;, + 98;3; -0.648382, 0.037596,-0.622362;;, + 99;3; -0.648382, 0.037596,-0.622362;;, + 100;3; -0.648382, 0.037596,-0.622362;;, + 101;3; -0.648382, 0.037596,-0.622362;;, + 102;3; -0.648382, 0.037596,-0.622362;;, + 103;3; -0.648382, 0.037596,-0.622362;;, + 104;3; -0.648382, 0.037596,-0.622362;;, + 105;3; -0.648382, 0.037596,-0.622362;;, + 106;3; -0.648382, 0.037596,-0.622362;;, + 107;3; -0.648382, 0.037596,-0.622362;;, + 108;3; -0.648382, 0.037596,-0.622362;;, + 109;3; -0.648382, 0.037596,-0.622362;;, + 110;3; -0.648382, 0.037596,-0.622362;;, + 111;3; -0.648382, 0.037596,-0.622362;;, + 112;3; -0.648382, 0.037596,-0.622362;;, + 113;3; -0.648382, 0.037596,-0.622362;;, + 114;3; -0.648382, 0.037596,-0.622362;;, + 115;3; -0.648382, 0.037596,-0.622362;;, + 116;3; -0.648382, 0.037596,-0.622362;;, + 117;3; -0.648382, 0.037596,-0.622362;;, + 118;3; -0.648382, 0.037596,-0.622362;;, + 119;3; -0.648382, 0.037596,-0.622362;;, + 120;3; -0.648382, 0.037596,-0.622362;;, + 121;3; -0.648382, 0.037596,-0.622362;;, + 122;3; -0.648382, 0.037596,-0.622362;;, + 123;3; -0.648382, 0.037596,-0.622362;;, + 124;3; -0.648382, 0.037596,-0.622362;;, + 125;3; -0.648382, 0.037596,-0.622362;;, + 126;3; -0.648382, 0.037596,-0.622362;;, + 127;3; -0.648382, 0.037596,-0.622362;;, + 128;3; -0.648382, 0.037596,-0.622362;;, + 129;3; -0.648382, 0.037596,-0.622362;;, + 130;3; -0.648382, 0.037596,-0.622362;;, + 131;3; -0.648382, 0.037596,-0.622362;;, + 132;3; -0.648382, 0.037596,-0.622362;;, + 133;3; -0.648382, 0.037596,-0.622362;;, + 134;3; -0.648382, 0.037596,-0.622362;;, + 135;3; -0.648382, 0.037596,-0.622362;;, + 136;3; -0.648382, 0.037596,-0.622363;;, + 137;3; -0.648382, 0.037596,-0.622363;;, + 138;3; -0.648382, 0.037596,-0.622362;;, + 139;3; -0.648382, 0.037596,-0.622363;;, + 140;3; -0.648382, 0.037596,-0.622362;;, + 141;3; -0.648382, 0.037596,-0.622362;;, + 142;3; -0.648382, 0.037596,-0.622363;;, + 143;3; -0.648382, 0.037596,-0.622363;;, + 144;3; -0.648382, 0.037596,-0.622362;;, + 145;3; -0.648382, 0.037596,-0.622362;;, + 146;3; -0.648382, 0.037596,-0.622362;;, + 147;3; -0.648382, 0.037596,-0.622363;;, + 148;3; -0.648382, 0.037596,-0.622363;;, + 149;3; -0.648382, 0.037596,-0.622363;;, + 150;3; -0.648382, 0.037596,-0.622363;;, + 151;3; -0.648382, 0.037596,-0.622362;;, + 152;3; -0.648382, 0.037596,-0.622363;;, + 153;3; -0.648382, 0.037596,-0.622362;;, + 154;3; -0.648382, 0.037596,-0.622363;;, + 155;3; -0.648382, 0.037596,-0.622362;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 78;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 79;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 80;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 81;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 82;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 83;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 84;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 85;4; -0.523779,-0.470740, 0.523779,-0.470740;;, + 86;4; -0.509749,-0.483646, 0.509749,-0.483645;;, + 87;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 90;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 91;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 92;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 93;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 94;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 95;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 96;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 97;4; -0.442723,-0.549416, 0.442723,-0.549415;;, + 98;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 99;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.463086,-0.529658, 0.463086,-0.529658;;, + 108;4; -0.417557,-0.556598, 0.417557,-0.556598;;, + 109;4; -0.352132,-0.595304, 0.352132,-0.595304;;, + 110;4; -0.286723,-0.633995, 0.286723,-0.633995;;, + 111;4; -0.241223,-0.660908, 0.241223,-0.660908;;, + 112;4; -0.225588,-0.670157, 0.225588,-0.670157;;, + 113;4; -0.231994,-0.664266, 0.231994,-0.664266;;, + 114;4; -0.251338,-0.646487, 0.251338,-0.646487;;, + 115;4; -0.283247,-0.617183, 0.283247,-0.617183;;, + 116;4; -0.326335,-0.577654, 0.326335,-0.577654;;, + 117;4; -0.377964,-0.530352, 0.377964,-0.530352;;, + 118;4; -0.434283,-0.478850, 0.434283,-0.478850;;, + 119;4; -0.490670,-0.427420, 0.490670,-0.427420;;, + 120;4; -0.542496,-0.380332, 0.542496,-0.380332;;, + 121;4; -0.585897,-0.341144, 0.585897,-0.341144;;, + 122;4; -0.618218,-0.312288, 0.618218,-0.312288;;, + 123;4; -0.638054,-0.295043, 0.638054,-0.295043;;, + 124;4; -0.645014,-0.289754, 0.645014,-0.289754;;, + 125;4; -0.635188,-0.304482, 0.635188,-0.304482;;, + 126;4; -0.605463,-0.346110, 0.605463,-0.346110;;, + 127;4; -0.562409,-0.405604, 0.562409,-0.405604;;, + 128;4; -0.519210,-0.464968, 0.519210,-0.464968;;, + 129;4; -0.489096,-0.506226, 0.489096,-0.506226;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.423044,-0.562297, 0.423044,-0.562297;;, + 137;4; -0.367362,-0.604190, 0.367362,-0.604190;;, + 138;4; -0.367425,-0.604203, 0.367425,-0.604203;;, + 139;4; -0.367732,-0.604136, 0.367732,-0.604136;;, + 140;4; -0.368467,-0.603827, 0.368467,-0.603826;;, + 141;4; -0.369808,-0.603107, 0.369808,-0.603107;;, + 142;4; -0.371920,-0.601824, 0.371920,-0.601824;;, + 143;4; -0.374937,-0.599842, 0.374937,-0.599842;;, + 144;4; -0.378962,-0.597057, 0.378962,-0.597057;;, + 145;4; -0.384059,-0.593396, 0.384059,-0.593396;;, + 146;4; -0.390257,-0.588817, 0.390257,-0.588817;;, + 147;4; -0.397555,-0.583306, 0.397556,-0.583306;;, + 148;4; -0.405929,-0.576873, 0.405929,-0.576872;;, + 149;4; -0.415336,-0.569543, 0.415336,-0.569543;;, + 150;4; -0.440564,-0.548042, 0.440564,-0.548042;;, + 151;4; -0.480982,-0.513021, 0.480982,-0.513021;;, + 152;4; -0.499219,-0.498090, 0.499219,-0.498090;;, + 153;4; -0.494667,-0.503910, 0.494667,-0.503910;;, + 154;4; -0.483869,-0.515211, 0.483869,-0.515211;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_noga2} + AnimationKey { //Position + 2; + 156; + 0;3; -0.648382, 3.072911,-0.875938;;, + 1;3; -0.648382, 3.072911,-0.875938;;, + 2;3; -0.648382, 3.072911,-0.875938;;, + 3;3; -0.648382, 3.072911,-0.875938;;, + 4;3; -0.648382, 3.072911,-0.875938;;, + 5;3; -0.648382, 3.072911,-0.875938;;, + 6;3; -0.648382, 3.072911,-0.875938;;, + 7;3; -0.648382, 3.072911,-0.875938;;, + 8;3; -0.648382, 3.072911,-0.875938;;, + 9;3; -0.648382, 3.072911,-0.875938;;, + 10;3; -0.648382, 3.072911,-0.875938;;, + 11;3; -0.648382, 3.072911,-0.875938;;, + 12;3; -0.648382, 3.072911,-0.875938;;, + 13;3; -0.648382, 3.072911,-0.875938;;, + 14;3; -0.648382, 3.072911,-0.875938;;, + 15;3; -0.648382, 3.072911,-0.875938;;, + 16;3; -0.648382, 3.072911,-0.875938;;, + 17;3; -0.648382, 3.072911,-0.875938;;, + 18;3; -0.648382, 3.072911,-0.875938;;, + 19;3; -0.648382, 3.072911,-0.875938;;, + 20;3; -0.648382, 3.072911,-0.875938;;, + 21;3; -0.648382, 3.072911,-0.875938;;, + 22;3; -0.648382, 3.072911,-0.875938;;, + 23;3; -0.648382, 3.072911,-0.875938;;, + 24;3; -0.648382, 3.072911,-0.875938;;, + 25;3; -0.648382, 3.072911,-0.875938;;, + 26;3; -0.648382, 3.072911,-0.875938;;, + 27;3; -0.648382, 3.072911,-0.875938;;, + 28;3; -0.648382, 3.072911,-0.875938;;, + 29;3; -0.648382, 3.072911,-0.875938;;, + 30;3; -0.648382, 3.072911,-0.875938;;, + 31;3; -0.648382, 3.072911,-0.875938;;, + 32;3; -0.648382, 3.072911,-0.875938;;, + 33;3; -0.648382, 3.072911,-0.875938;;, + 34;3; -0.648382, 3.072911,-0.875938;;, + 35;3; -0.648382, 3.072911,-0.875938;;, + 36;3; -0.648382, 3.072911,-0.875938;;, + 37;3; -0.648382, 3.072911,-0.875938;;, + 38;3; -0.648382, 3.072911,-0.875938;;, + 39;3; -0.648382, 3.072911,-0.875938;;, + 40;3; -0.648382, 3.072911,-0.875938;;, + 41;3; -0.648382, 3.072911,-0.875938;;, + 42;3; -0.648382, 3.072911,-0.875938;;, + 43;3; -0.648382, 3.072911,-0.875938;;, + 44;3; -0.648382, 3.072911,-0.875938;;, + 45;3; -0.648382, 3.072911,-0.875938;;, + 46;3; -0.648382, 3.072911,-0.875938;;, + 47;3; -0.648382, 3.072911,-0.875938;;, + 48;3; -0.648382, 3.072911,-0.875938;;, + 49;3; -0.648382, 3.072911,-0.875938;;, + 50;3; -0.648382, 3.072911,-0.875938;;, + 51;3; -0.648382, 3.072911,-0.875938;;, + 52;3; -0.648382, 3.072911,-0.875938;;, + 53;3; -0.648382, 3.072911,-0.875938;;, + 54;3; -0.648382, 3.072911,-0.875938;;, + 55;3; -0.648382, 3.072911,-0.875938;;, + 56;3; -0.648382, 3.072911,-0.875938;;, + 57;3; -0.648382, 3.072911,-0.875938;;, + 58;3; -0.648382, 3.072911,-0.875938;;, + 59;3; -0.648382, 3.072911,-0.875938;;, + 60;3; -0.648382, 3.072911,-0.875938;;, + 61;3; -0.648382, 3.072911,-0.875938;;, + 62;3; -0.648382, 3.072911,-0.875938;;, + 63;3; -0.648382, 3.072911,-0.875938;;, + 64;3; -0.648382, 3.072911,-0.875938;;, + 65;3; -0.648382, 3.072911,-0.875938;;, + 66;3; -0.648382, 3.072911,-0.875938;;, + 67;3; -0.648382, 3.072911,-0.875938;;, + 68;3; -0.648382, 3.072911,-0.875938;;, + 69;3; -0.648382, 3.072911,-0.875938;;, + 70;3; -0.648382, 3.072911,-0.875938;;, + 71;3; -0.648382, 3.072911,-0.875938;;, + 72;3; -0.648382, 3.072911,-0.875938;;, + 73;3; -0.648382, 3.072911,-0.875938;;, + 74;3; -0.648382, 3.072911,-0.875938;;, + 75;3; -0.648382, 3.072911,-0.875938;;, + 76;3; -0.648382, 3.072911,-0.875938;;, + 77;3; -0.648382, 3.072911,-0.875938;;, + 78;3; -0.648382, 3.072911,-0.875938;;, + 79;3; -0.648382, 3.072911,-0.875938;;, + 80;3; -0.648382, 3.072911,-0.875938;;, + 81;3; -0.648382, 3.072911,-0.875938;;, + 82;3; -0.648382, 3.072911,-0.875938;;, + 83;3; -0.648382, 3.072911,-0.875938;;, + 84;3; -0.648382, 3.072911,-0.875938;;, + 85;3; -0.648382, 3.072911,-0.875938;;, + 86;3; -0.648382, 3.072911,-0.875938;;, + 87;3; -0.648382, 3.072911,-0.875938;;, + 88;3; -0.648382, 3.072911,-0.875938;;, + 89;3; -0.648382, 3.072911,-0.875938;;, + 90;3; -0.648382, 3.072911,-0.875938;;, + 91;3; -0.648382, 3.072911,-0.875938;;, + 92;3; -0.648382, 3.072911,-0.875938;;, + 93;3; -0.648382, 3.072911,-0.875938;;, + 94;3; -0.648382, 3.072911,-0.875938;;, + 95;3; -0.648382, 3.072911,-0.875938;;, + 96;3; -0.648382, 3.072911,-0.875938;;, + 97;3; -0.648382, 3.072911,-0.875938;;, + 98;3; -0.648382, 3.072911,-0.875938;;, + 99;3; -0.648382, 3.072911,-0.875938;;, + 100;3; -0.648382, 3.072911,-0.875938;;, + 101;3; -0.648382, 3.072911,-0.875938;;, + 102;3; -0.648382, 3.072911,-0.875938;;, + 103;3; -0.648382, 3.072911,-0.875938;;, + 104;3; -0.648382, 3.072911,-0.875938;;, + 105;3; -0.648382, 3.072911,-0.875938;;, + 106;3; -0.648382, 3.072911,-0.875938;;, + 107;3; -0.648382, 3.072911,-0.875938;;, + 108;3; -0.648382, 3.072911,-0.875938;;, + 109;3; -0.648382, 3.072911,-0.875938;;, + 110;3; -0.648382, 3.072911,-0.875938;;, + 111;3; -0.648382, 3.072911,-0.875938;;, + 112;3; -0.648382, 3.072911,-0.875938;;, + 113;3; -0.648382, 3.072911,-0.875938;;, + 114;3; -0.648382, 3.072911,-0.875938;;, + 115;3; -0.648382, 3.072911,-0.875938;;, + 116;3; -0.648382, 3.072911,-0.875938;;, + 117;3; -0.648382, 3.072911,-0.875938;;, + 118;3; -0.648382, 3.072911,-0.875938;;, + 119;3; -0.648382, 3.072911,-0.875938;;, + 120;3; -0.648382, 3.072911,-0.875938;;, + 121;3; -0.648382, 3.072911,-0.875938;;, + 122;3; -0.648382, 3.072911,-0.875938;;, + 123;3; -0.648382, 3.072911,-0.875938;;, + 124;3; -0.648382, 3.072911,-0.875938;;, + 125;3; -0.648382, 3.072911,-0.875938;;, + 126;3; -0.648382, 3.072911,-0.875938;;, + 127;3; -0.648382, 3.072911,-0.875938;;, + 128;3; -0.648382, 3.072911,-0.875938;;, + 129;3; -0.648382, 3.072911,-0.875938;;, + 130;3; -0.648382, 3.072911,-0.875938;;, + 131;3; -0.648382, 3.072911,-0.875938;;, + 132;3; -0.648382, 3.072911,-0.875938;;, + 133;3; -0.648382, 3.072911,-0.875938;;, + 134;3; -0.648382, 3.072911,-0.875938;;, + 135;3; -0.648382, 3.072911,-0.875938;;, + 136;3; -0.648382, 3.072911,-0.875938;;, + 137;3; -0.648382, 3.072911,-0.875938;;, + 138;3; -0.648382, 3.072911,-0.875938;;, + 139;3; -0.648382, 3.072911,-0.875938;;, + 140;3; -0.648382, 3.072911,-0.875938;;, + 141;3; -0.648382, 3.072911,-0.875938;;, + 142;3; -0.648382, 3.072911,-0.875938;;, + 143;3; -0.648382, 3.072911,-0.875938;;, + 144;3; -0.648382, 3.072911,-0.875938;;, + 145;3; -0.648382, 3.072911,-0.875938;;, + 146;3; -0.648382, 3.072911,-0.875938;;, + 147;3; -0.648382, 3.072911,-0.875938;;, + 148;3; -0.648382, 3.072911,-0.875938;;, + 149;3; -0.648382, 3.072911,-0.875938;;, + 150;3; -0.648382, 3.072911,-0.875938;;, + 151;3; -0.648382, 3.072911,-0.875938;;, + 152;3; -0.648382, 3.072911,-0.875938;;, + 153;3; -0.648382, 3.072911,-0.875938;;, + 154;3; -0.648382, 3.072911,-0.875938;;, + 155;3; -0.648382, 3.072911,-0.875938;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 36;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 37;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 38;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 39;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 40;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 41;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 42;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 43;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 44;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 45;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 46;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 47;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 48;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 49;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 50;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 51;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 52;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 53;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 54;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 55;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 56;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 57;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 58;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 59;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 60;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 61;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 62;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 63;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 64;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 77;4; -0.474286,-0.523982, 0.474286,-0.523982;;, + 78;4; -0.461337,-0.534416, 0.461337,-0.534416;;, + 79;4; -0.442723,-0.549415, 0.442723,-0.549415;;, + 80;4; -0.424110,-0.564414, 0.424110,-0.564414;;, + 81;4; -0.411163,-0.574847, 0.411163,-0.574847;;, + 82;4; -0.406714,-0.578432, 0.406714,-0.578432;;, + 83;4; -0.408802,-0.576511, 0.408802,-0.576511;;, + 84;4; -0.415106,-0.570712, 0.415106,-0.570712;;, + 85;4; -0.425500,-0.561150, 0.425500,-0.561150;;, + 86;4; -0.439529,-0.548244, 0.439529,-0.548244;;, + 87;4; -0.456329,-0.532789, 0.456329,-0.532789;;, + 88;4; -0.474639,-0.515945, 0.474639,-0.515945;;, + 89;4; -0.492950,-0.499100, 0.492950,-0.499100;;, + 90;4; -0.509750,-0.483645, 0.509750,-0.483645;;, + 91;4; -0.523779,-0.470739, 0.523779,-0.470739;;, + 92;4; -0.534173,-0.461177, 0.534173,-0.461177;;, + 93;4; -0.540477,-0.455378, 0.540477,-0.455378;;, + 94;4; -0.542565,-0.453457, 0.542565,-0.453457;;, + 95;4; -0.538622,-0.457592, 0.538622,-0.457592;;, + 96;4; -0.527147,-0.469626, 0.527147,-0.469626;;, + 97;4; -0.510651,-0.486926, 0.510651,-0.486926;;, + 98;4; -0.494154,-0.504227, 0.494154,-0.504227;;, + 99;4; -0.482678,-0.516262, 0.482678,-0.516262;;, + 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 106;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 107;4; -0.459849,-0.531450, 0.459849,-0.531450;;, + 108;4; -0.404704,-0.563369, 0.404704,-0.563369;;, + 109;4; -0.324936,-0.608630, 0.324936,-0.608630;;, + 110;4; -0.244150,-0.652732, 0.244150,-0.652732;;, + 111;4; -0.186185,-0.681484, 0.186185,-0.681484;;, + 112;4; -0.163186,-0.688019, 0.163186,-0.688019;;, + 113;4; -0.167199,-0.675519, 0.167199,-0.675519;;, + 114;4; -0.188605,-0.647883, 0.188605,-0.647883;;, + 115;4; -0.226968,-0.605645, 0.226968,-0.605645;;, + 116;4; -0.280509,-0.550553, 0.280509,-0.550553;;, + 117;4; -0.345782,-0.485840, 0.345782,-0.485840;;, + 118;4; -0.417713,-0.416166, 0.417713,-0.416166;;, + 119;4; -0.490176,-0.347070, 0.490176,-0.347070;;, + 120;4; -0.557006,-0.284050, 0.557006,-0.284050;;, + 121;4; -0.613026,-0.231653, 0.613026,-0.231653;;, + 122;4; -0.654651,-0.192961, 0.654651,-0.192961;;, + 123;4; -0.679949,-0.169555, 0.679949,-0.169555;;, + 124;4; -0.688343,-0.161817, 0.688343,-0.161817;;, + 125;4; -0.675400,-0.183963, 0.675400,-0.183963;;, + 126;4; -0.637747,-0.248401, 0.637747,-0.248401;;, + 127;4; -0.583614,-0.341036, 0.583614,-0.341036;;, + 128;4; -0.529441,-0.433709, 0.529441,-0.433709;;, + 129;4; -0.491712,-0.498218, 0.491712,-0.498218;;, + 130;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 131;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 132;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 133;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 134;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;, + 136;4; -0.536290,-0.452136, 0.536290,-0.452136;;, + 137;4; -0.593818,-0.383901, 0.593818,-0.383901;;, + 138;4; -0.592025,-0.386049, 0.592025,-0.386049;;, + 139;4; -0.586989,-0.392082, 0.586989,-0.392082;;, + 140;4; -0.579326,-0.401264, 0.579326,-0.401264;;, + 141;4; -0.569759,-0.412729, 0.569759,-0.412729;;, + 142;4; -0.559069,-0.425541, 0.559069,-0.425541;;, + 143;4; -0.548041,-0.438760, 0.548041,-0.438760;;, + 144;4; -0.537411,-0.451504, 0.537411,-0.451504;;, + 145;4; -0.527823,-0.462997, 0.527823,-0.462997;;, + 146;4; -0.519810,-0.472602, 0.519810,-0.472602;;, + 147;4; -0.513782,-0.479828, 0.513782,-0.479828;;, + 148;4; -0.510034,-0.484321, 0.510034,-0.484321;;, + 149;4; -0.508756,-0.485852, 0.508756,-0.485852;;, + 150;4; -0.520938,-0.472488, 0.520938,-0.472488;;, + 151;4; -0.547004,-0.443890, 0.547004,-0.443890;;, + 152;4; -0.559186,-0.430525, 0.559186,-0.430525;;, + 153;4; -0.539768,-0.452220, 0.539768,-0.452220;;, + 154;4; -0.498201,-0.498658, 0.498201,-0.498657;;, + 155;4; -0.478735,-0.520397, 0.478735,-0.520397;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_hvost} + AnimationKey { //Position + 2; + 156; + 0;3; 0.000000,-0.295864,-0.017687;;, + 1;3; 0.000000,-0.295864,-0.017687;;, + 2;3; 0.000000,-0.295864,-0.017687;;, + 3;3; 0.000000,-0.295864,-0.017687;;, + 4;3; 0.000000,-0.295864,-0.017687;;, + 5;3; 0.000000,-0.295864,-0.017687;;, + 6;3; 0.000000,-0.295864,-0.017687;;, + 7;3; 0.000000,-0.295864,-0.017687;;, + 8;3; 0.000000,-0.295864,-0.017687;;, + 9;3; 0.000000,-0.295864,-0.017687;;, + 10;3; 0.000000,-0.295864,-0.017687;;, + 11;3; 0.000000,-0.295864,-0.017687;;, + 12;3; 0.000000,-0.295864,-0.017687;;, + 13;3; 0.000000,-0.295864,-0.017687;;, + 14;3; 0.000000,-0.295864,-0.017687;;, + 15;3; 0.000000,-0.295864,-0.017687;;, + 16;3; 0.000000,-0.295864,-0.017687;;, + 17;3; 0.000000,-0.295864,-0.017687;;, + 18;3; 0.000000,-0.295864,-0.017687;;, + 19;3; 0.000000,-0.295864,-0.017687;;, + 20;3; 0.000000,-0.295864,-0.017687;;, + 21;3; 0.000000,-0.295864,-0.017687;;, + 22;3; 0.000000,-0.295864,-0.017687;;, + 23;3; 0.000000,-0.295864,-0.017687;;, + 24;3; 0.000000,-0.295864,-0.017687;;, + 25;3; 0.000000,-0.295864,-0.017687;;, + 26;3; 0.000000,-0.295864,-0.017687;;, + 27;3; 0.000000,-0.295864,-0.017687;;, + 28;3; 0.000000,-0.295864,-0.017687;;, + 29;3; 0.000000,-0.295864,-0.017687;;, + 30;3; 0.000000,-0.295864,-0.017687;;, + 31;3; 0.000000,-0.295864,-0.017687;;, + 32;3; 0.000000,-0.295864,-0.017687;;, + 33;3; 0.000000,-0.295864,-0.017687;;, + 34;3; 0.000000,-0.295864,-0.017687;;, + 35;3; 0.000000,-0.295864,-0.017687;;, + 36;3; 0.000000,-0.295864,-0.017687;;, + 37;3; 0.000000,-0.295864,-0.017687;;, + 38;3; 0.000000,-0.295864,-0.017687;;, + 39;3; 0.000000,-0.295864,-0.017687;;, + 40;3; 0.000000,-0.295864,-0.017687;;, + 41;3; 0.000000,-0.295864,-0.017687;;, + 42;3; 0.000000,-0.295864,-0.017687;;, + 43;3; 0.000000,-0.295864,-0.017687;;, + 44;3; 0.000000,-0.295864,-0.017687;;, + 45;3; 0.000000,-0.295864,-0.017687;;, + 46;3; 0.000000,-0.295864,-0.017687;;, + 47;3; 0.000000,-0.295864,-0.017687;;, + 48;3; 0.000000,-0.295864,-0.017687;;, + 49;3; 0.000000,-0.295864,-0.017687;;, + 50;3; 0.000000,-0.295864,-0.017687;;, + 51;3; 0.000000,-0.295864,-0.017687;;, + 52;3; 0.000000,-0.295864,-0.017687;;, + 53;3; 0.000000,-0.295864,-0.017687;;, + 54;3; 0.000000,-0.295864,-0.017687;;, + 55;3; 0.000000,-0.295864,-0.017687;;, + 56;3; 0.000000,-0.295864,-0.017687;;, + 57;3; 0.000000,-0.295864,-0.017687;;, + 58;3; 0.000000,-0.295864,-0.017687;;, + 59;3; 0.000000,-0.295864,-0.017687;;, + 60;3; 0.000000,-0.295864,-0.017687;;, + 61;3; 0.000000,-0.295864,-0.017687;;, + 62;3; 0.000000,-0.295864,-0.017687;;, + 63;3; 0.000000,-0.295864,-0.017687;;, + 64;3; 0.000000,-0.295864,-0.017687;;, + 65;3; 0.000000,-0.295864,-0.017687;;, + 66;3; 0.000000,-0.295864,-0.017687;;, + 67;3; 0.000000,-0.295864,-0.017687;;, + 68;3; 0.000000,-0.295864,-0.017687;;, + 69;3; 0.000000,-0.295864,-0.017687;;, + 70;3; 0.000000,-0.295864,-0.017687;;, + 71;3; 0.000000,-0.295864,-0.017687;;, + 72;3; 0.000000,-0.295864,-0.017687;;, + 73;3; 0.000000,-0.295864,-0.017687;;, + 74;3; 0.000000,-0.295864,-0.017687;;, + 75;3; 0.000000,-0.295864,-0.017687;;, + 76;3; 0.000000,-0.295864,-0.017687;;, + 77;3; 0.000000,-0.295864,-0.017687;;, + 78;3; 0.000000,-0.295864,-0.017687;;, + 79;3; 0.000000,-0.295864,-0.017687;;, + 80;3; 0.000000,-0.295864,-0.017687;;, + 81;3; 0.000000,-0.295864,-0.017687;;, + 82;3; 0.000000,-0.295864,-0.017687;;, + 83;3; 0.000000,-0.295864,-0.017687;;, + 84;3; 0.000000,-0.295864,-0.017687;;, + 85;3; 0.000000,-0.295864,-0.017687;;, + 86;3; 0.000000,-0.295864,-0.017687;;, + 87;3; 0.000000,-0.295864,-0.017687;;, + 88;3; 0.000000,-0.295864,-0.017687;;, + 89;3; 0.000000,-0.295864,-0.017687;;, + 90;3; 0.000000,-0.295864,-0.017687;;, + 91;3; 0.000000,-0.295864,-0.017687;;, + 92;3; 0.000000,-0.295864,-0.017687;;, + 93;3; 0.000000,-0.295864,-0.017687;;, + 94;3; 0.000000,-0.295864,-0.017687;;, + 95;3; 0.000000,-0.295864,-0.017687;;, + 96;3; 0.000000,-0.295864,-0.017687;;, + 97;3; 0.000000,-0.295864,-0.017687;;, + 98;3; 0.000000,-0.295864,-0.017687;;, + 99;3; 0.000000,-0.295864,-0.017687;;, + 100;3; 0.000000,-0.295864,-0.017687;;, + 101;3; 0.000000,-0.295864,-0.017687;;, + 102;3; 0.000000,-0.295864,-0.017687;;, + 103;3; 0.000000,-0.295864,-0.017687;;, + 104;3; 0.000000,-0.295864,-0.017687;;, + 105;3; 0.000000,-0.295864,-0.017687;;, + 106;3; 0.000000,-0.295864,-0.017687;;, + 107;3; 0.000000,-0.295864,-0.017687;;, + 108;3; 0.000000,-0.295864,-0.017687;;, + 109;3; 0.000000,-0.295864,-0.017687;;, + 110;3; 0.000000,-0.295864,-0.017687;;, + 111;3; 0.000000,-0.295864,-0.017687;;, + 112;3; 0.000000,-0.295864,-0.017687;;, + 113;3; 0.000000,-0.295864,-0.017687;;, + 114;3; 0.000000,-0.295864,-0.017687;;, + 115;3; 0.000000,-0.295864,-0.017687;;, + 116;3; 0.000000,-0.295864,-0.017687;;, + 117;3; 0.000000,-0.295864,-0.017687;;, + 118;3; 0.000000,-0.295864,-0.017687;;, + 119;3; 0.000000,-0.295864,-0.017687;;, + 120;3; 0.000000,-0.295864,-0.017687;;, + 121;3; 0.000000,-0.295864,-0.017687;;, + 122;3; 0.000000,-0.295864,-0.017687;;, + 123;3; 0.000000,-0.295864,-0.017687;;, + 124;3; 0.000000,-0.295864,-0.017687;;, + 125;3; 0.000000,-0.295864,-0.017687;;, + 126;3; 0.000000,-0.295864,-0.017687;;, + 127;3; 0.000000,-0.295864,-0.017687;;, + 128;3; 0.000000,-0.295864,-0.017687;;, + 129;3; 0.000000,-0.295864,-0.017687;;, + 130;3; 0.000000,-0.295864,-0.017687;;, + 131;3; 0.000000,-0.295864,-0.017687;;, + 132;3; 0.000000,-0.295864,-0.017687;;, + 133;3; 0.000000,-0.295864,-0.017687;;, + 134;3; 0.000000,-0.295864,-0.017687;;, + 135;3; 0.000000,-0.295864,-0.017687;;, + 136;3; 0.000000,-0.295864,-0.017687;;, + 137;3; 0.000000,-0.295864,-0.017687;;, + 138;3; 0.000000,-0.295864,-0.017687;;, + 139;3; 0.000000,-0.295864,-0.017687;;, + 140;3; 0.000000,-0.295864,-0.017687;;, + 141;3; 0.000000,-0.295864,-0.017687;;, + 142;3; 0.000000,-0.295864,-0.017687;;, + 143;3; 0.000000,-0.295864,-0.017687;;, + 144;3; 0.000000,-0.295864,-0.017687;;, + 145;3; 0.000000,-0.295864,-0.017687;;, + 146;3; 0.000000,-0.295864,-0.017687;;, + 147;3; 0.000000,-0.295864,-0.017687;;, + 148;3; 0.000000,-0.295864,-0.017687;;, + 149;3; 0.000000,-0.295864,-0.017687;;, + 150;3; 0.000000,-0.295864,-0.017687;;, + 151;3; 0.000000,-0.295864,-0.017687;;, + 152;3; 0.000000,-0.295864,-0.017687;;, + 153;3; 0.000000,-0.295864,-0.017687;;, + 154;3; 0.000000,-0.295864,-0.017687;;, + 155;3; 0.000000,-0.295864,-0.017687;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 1;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 2;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 3;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 4;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 5;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 6;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 7;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 8;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 9;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 10;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 11;4; -0.487739,-0.870622, 0.021531, 0.023041;;, + 12;4; -0.485578,-0.866764, 0.067591, 0.072336;;, + 13;4; -0.484568,-0.864961, 0.089115, 0.095371;;, + 14;4; -0.484568,-0.864961, 0.078105, 0.083589;;, + 15;4; -0.484568,-0.864961, 0.046063, 0.049297;;, + 16;4; -0.484568,-0.864961, 0.000000, 0.000000;;, + 17;4; -0.484568,-0.864961,-0.046062,-0.049296;;, + 18;4; -0.484568,-0.864961,-0.078105,-0.083588;;, + 19;4; -0.484568,-0.864961,-0.089115,-0.095371;;, + 20;4; -0.485505,-0.866634,-0.063411,-0.066145;;, + 21;4; -0.487527,-0.870243,-0.008405,-0.003602;;, + 22;4; -0.488515,-0.872007, 0.017311, 0.025632;;, + 23;4; -0.488578,-0.872119, 0.016836, 0.024930;;, + 24;4; -0.488632,-0.872216, 0.015413, 0.022823;;, + 25;4; -0.488675,-0.872293, 0.013128, 0.019440;;, + 26;4; -0.488708,-0.872351, 0.010222, 0.015137;;, + 27;4; -0.488729,-0.872389, 0.007087, 0.010495;;, + 28;4; -0.488741,-0.872411, 0.004182, 0.006192;;, + 29;4; -0.488747,-0.872421, 0.001897, 0.002809;;, + 30;4; -0.488749,-0.872424, 0.000474, 0.000702;;, + 31;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 32;4; -0.487739,-0.870622, 0.021530, 0.023040;;, + 33;4; -0.485578,-0.866764, 0.067591, 0.072335;;, + 34;4; -0.484568,-0.864961, 0.089115, 0.095371;;, + 35;4; -0.484568,-0.864961, 0.078105, 0.083589;;, + 36;4; -0.484568,-0.864961, 0.046063, 0.049297;;, + 37;4; -0.484568,-0.864961,-0.000000, 0.000000;;, + 38;4; -0.484568,-0.864961,-0.046063,-0.049297;;, + 39;4; -0.484568,-0.864961,-0.078105,-0.083589;;, + 40;4; -0.484568,-0.864961,-0.089115,-0.095371;;, + 41;4; -0.485578,-0.866764,-0.067592,-0.072335;;, + 42;4; -0.487739,-0.870622,-0.021532,-0.023040;;, + 43;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 44;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 45;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 46;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 47;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 48;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 49;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 50;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 51;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 52;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 53;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 54;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 55;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 56;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 57;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 58;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 59;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 60;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 61;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 62;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 63;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 64;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 65;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 66;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 67;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 68;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 69;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 70;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 71;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 72;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 73;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 74;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 75;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 76;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 77;4; -0.475808,-0.877594,-0.000049,-0.000523;;, + 78;4; -0.436940,-0.893029,-0.000173,-0.002149;;, + 79;4; -0.377893,-0.916244,-0.000300,-0.004762;;, + 80;4; -0.312673,-0.941466,-0.000330,-0.007910;;, + 81;4; -0.256835,-0.962415,-0.000187,-0.011003;;, + 82;4; -0.219444,-0.975530, 0.000150,-0.013640;;, + 83;4; -0.193318,-0.983639, 0.000681,-0.016160;;, + 84;4; -0.169382,-0.990265, 0.001418,-0.019016;;, + 85;4; -0.148030,-0.995304, 0.002349,-0.022159;;, + 86;4; -0.129628,-0.998721, 0.003440,-0.025501;;, + 87;4; -0.114440,-1.000587, 0.004639,-0.028910;;, + 88;4; -0.102546,-1.001108, 0.005873,-0.032223;;, + 89;4; -0.093793,-1.000608, 0.007057,-0.035264;;, + 90;4; -0.087804,-0.999487, 0.008111,-0.037878;;, + 91;4; -0.084054,-0.998144, 0.008972,-0.039952;;, + 92;4; -0.081975,-0.996922, 0.009598,-0.041429;;, + 93;4; -0.081039,-0.996075, 0.009973,-0.042296;;, + 94;4; -0.080808,-0.995769, 0.010096,-0.042576;;, + 95;4; -0.106019,-0.988144, 0.009473,-0.039946;;, + 96;4; -0.179360,-0.965968, 0.007657,-0.032292;;, + 97;4; -0.284763,-0.934105, 0.005048,-0.021288;;, + 98;4; -0.390175,-0.902238, 0.002439,-0.010284;;, + 99;4; -0.463531,-0.880054, 0.000624,-0.002630;;, + 100;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 101;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 102;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 103;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 104;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 105;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 106;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 107;4; -0.475808,-0.877594,-0.000049,-0.000523;;, + 108;4; -0.436940,-0.893029,-0.000173,-0.002149;;, + 109;4; -0.377893,-0.916244,-0.000300,-0.004762;;, + 110;4; -0.312673,-0.941466,-0.000330,-0.007910;;, + 111;4; -0.256835,-0.962415,-0.000187,-0.011003;;, + 112;4; -0.219444,-0.975530, 0.000150,-0.013640;;, + 113;4; -0.193318,-0.983639, 0.000681,-0.016160;;, + 114;4; -0.169382,-0.990265, 0.001418,-0.019016;;, + 115;4; -0.148030,-0.995304, 0.002349,-0.022159;;, + 116;4; -0.129628,-0.998721, 0.003440,-0.025501;;, + 117;4; -0.114440,-1.000587, 0.004639,-0.028910;;, + 118;4; -0.102546,-1.001108, 0.005873,-0.032223;;, + 119;4; -0.093793,-1.000608, 0.007057,-0.035264;;, + 120;4; -0.087804,-0.999487, 0.008111,-0.037878;;, + 121;4; -0.084054,-0.998144, 0.008972,-0.039952;;, + 122;4; -0.081975,-0.996922, 0.009598,-0.041429;;, + 123;4; -0.081039,-0.996075, 0.009973,-0.042296;;, + 124;4; -0.080808,-0.995769, 0.010096,-0.042576;;, + 125;4; -0.106019,-0.988144, 0.009473,-0.039946;;, + 126;4; -0.179360,-0.965968, 0.007657,-0.032292;;, + 127;4; -0.284763,-0.934105, 0.005048,-0.021288;;, + 128;4; -0.390175,-0.902238, 0.002439,-0.010284;;, + 129;4; -0.463531,-0.880054, 0.000624,-0.002630;;, + 130;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 131;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 132;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 133;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 134;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 135;4; -0.488749,-0.872425,-0.000000, 0.000000;;, + 136;4; -0.069762,-0.905220,-0.000000, 0.000000;;, + 137;4; 0.348011,-0.937491, 0.000000, 0.000000;;, + 138;4; 0.332428,-0.936184, 0.000000, 0.000000;;, + 139;4; 0.294691,-0.933103, 0.000000, 0.000000;;, + 140;4; 0.243447,-0.929002, 0.000000, 0.000000;;, + 141;4; 0.183838,-0.924297, 0.000000, 0.000000;;, + 142;4; 0.119262,-0.919250, 0.000000, 0.000000;;, + 143;4; 0.052141,-0.914041, 0.000000, 0.000000;;, + 144;4; -0.015689,-0.908803,-0.000000, 0.000000;;, + 145;4; -0.082761,-0.903642,-0.000000, 0.000000;;, + 146;4; -0.147851,-0.898644,-0.000000, 0.000000;;, + 147;4; -0.209896,-0.893885,-0.000000, 0.000000;;, + 148;4; -0.267935,-0.889435,-0.000000, 0.000000;;, + 149;4; -0.321076,-0.885358,-0.000000, 0.000000;;, + 150;4; -0.368460,-0.881718,-0.000000, 0.000000;;, + 151;4; -0.409240,-0.878580,-0.000000, 0.000000;;, + 152;4; -0.442564,-0.876008,-0.000000, 0.000000;;, + 153;4; -0.467550,-0.874074,-0.000000, 0.000000;;, + 154;4; -0.483275,-0.872852,-0.000000, 0.000000;;, + 155;4; -0.488749,-0.872425,-0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_sheya} + AnimationKey { //Position + 2; + 156; + 0;3; 0.000000, 3.260104, 0.242284;;, + 1;3; 0.000000, 3.260104, 0.242284;;, + 2;3; 0.000000, 3.260104, 0.242284;;, + 3;3; 0.000000, 3.260104, 0.242284;;, + 4;3; 0.000000, 3.260104, 0.242284;;, + 5;3; 0.000000, 3.260104, 0.242284;;, + 6;3; 0.000000, 3.260104, 0.242284;;, + 7;3; 0.000000, 3.260104, 0.242284;;, + 8;3; 0.000000, 3.260104, 0.242284;;, + 9;3; 0.000000, 3.260104, 0.242284;;, + 10;3; 0.000000, 3.260104, 0.242284;;, + 11;3; 0.000000, 3.260104, 0.242284;;, + 12;3; 0.000000, 3.260104, 0.242284;;, + 13;3; 0.000000, 3.260104, 0.242284;;, + 14;3; 0.000000, 3.260104, 0.242284;;, + 15;3; 0.000000, 3.260104, 0.242284;;, + 16;3; 0.000000, 3.260104, 0.242284;;, + 17;3; 0.000000, 3.260104, 0.242284;;, + 18;3; 0.000000, 3.260104, 0.242284;;, + 19;3; 0.000000, 3.260104, 0.242284;;, + 20;3; 0.000000, 3.260104, 0.242284;;, + 21;3; 0.000000, 3.260104, 0.242284;;, + 22;3; 0.000000, 3.260104, 0.242284;;, + 23;3; 0.000000, 3.260104, 0.242284;;, + 24;3; 0.000000, 3.260104, 0.242284;;, + 25;3; 0.000000, 3.260104, 0.242284;;, + 26;3; 0.000000, 3.260104, 0.242284;;, + 27;3; 0.000000, 3.260104, 0.242284;;, + 28;3; 0.000000, 3.260104, 0.242284;;, + 29;3; 0.000000, 3.260104, 0.242284;;, + 30;3; 0.000000, 3.260104, 0.242284;;, + 31;3; 0.000000, 3.260104, 0.242284;;, + 32;3; 0.000000, 3.260104, 0.242284;;, + 33;3; 0.000000, 3.260104, 0.242284;;, + 34;3; 0.000000, 3.260104, 0.242284;;, + 35;3; 0.000000, 3.260104, 0.242284;;, + 36;3; 0.000000, 3.260104, 0.242284;;, + 37;3; 0.000000, 3.260104, 0.242284;;, + 38;3; 0.000000, 3.260104, 0.242284;;, + 39;3; 0.000000, 3.260104, 0.242284;;, + 40;3; 0.000000, 3.260104, 0.242284;;, + 41;3; 0.000000, 3.260104, 0.242284;;, + 42;3; 0.000000, 3.260104, 0.242284;;, + 43;3; 0.000000, 3.260104, 0.242284;;, + 44;3; 0.000000, 3.260104, 0.242284;;, + 45;3; 0.000000, 3.260104, 0.242284;;, + 46;3; 0.000000, 3.260104, 0.242284;;, + 47;3; 0.000000, 3.260104, 0.242284;;, + 48;3; 0.000000, 3.260104, 0.242284;;, + 49;3; 0.000000, 3.260104, 0.242284;;, + 50;3; 0.000000, 3.260104, 0.242284;;, + 51;3; 0.000000, 3.260104, 0.242284;;, + 52;3; 0.000000, 3.260104, 0.242284;;, + 53;3; 0.000000, 3.260104, 0.242284;;, + 54;3; 0.000000, 3.260104, 0.242284;;, + 55;3; 0.000000, 3.260104, 0.242284;;, + 56;3; 0.000000, 3.260104, 0.242284;;, + 57;3; 0.000000, 3.260104, 0.242284;;, + 58;3; 0.000000, 3.260104, 0.242284;;, + 59;3; 0.000000, 3.260104, 0.242284;;, + 60;3; 0.000000, 3.260104, 0.242284;;, + 61;3; 0.000000, 3.260104, 0.242284;;, + 62;3; 0.000000, 3.260104, 0.242284;;, + 63;3; 0.000000, 3.260104, 0.242284;;, + 64;3; 0.000000, 3.260104, 0.242284;;, + 65;3; 0.000000, 3.260104, 0.242284;;, + 66;3; 0.000000, 3.260104, 0.242284;;, + 67;3; 0.000000, 3.260104, 0.242284;;, + 68;3; 0.000000, 3.260104, 0.242284;;, + 69;3; 0.000000, 3.260104, 0.242284;;, + 70;3; 0.000000, 3.260104, 0.242284;;, + 71;3; 0.000000, 3.260104, 0.242284;;, + 72;3; 0.000000, 3.260104, 0.242284;;, + 73;3; 0.000000, 3.260104, 0.242284;;, + 74;3; 0.000000, 3.260104, 0.242284;;, + 75;3; 0.000000, 3.260104, 0.242284;;, + 76;3; 0.000000, 3.260104, 0.242284;;, + 77;3; 0.000000, 3.260104, 0.242284;;, + 78;3; 0.000000, 3.260104, 0.242284;;, + 79;3; 0.000000, 3.260104, 0.242284;;, + 80;3; 0.000000, 3.260104, 0.242284;;, + 81;3; 0.000000, 3.260104, 0.242284;;, + 82;3; 0.000000, 3.260104, 0.242284;;, + 83;3; 0.000000, 3.260104, 0.242284;;, + 84;3; 0.000000, 3.260104, 0.242284;;, + 85;3; 0.000000, 3.260104, 0.242284;;, + 86;3; 0.000000, 3.260104, 0.242284;;, + 87;3; 0.000000, 3.260104, 0.242284;;, + 88;3; 0.000000, 3.260104, 0.242284;;, + 89;3; 0.000000, 3.260104, 0.242284;;, + 90;3; 0.000000, 3.260104, 0.242284;;, + 91;3; 0.000000, 3.260104, 0.242284;;, + 92;3; 0.000000, 3.260104, 0.242284;;, + 93;3; 0.000000, 3.260104, 0.242284;;, + 94;3; 0.000000, 3.260104, 0.242284;;, + 95;3; 0.000000, 3.260104, 0.242284;;, + 96;3; 0.000000, 3.260104, 0.242284;;, + 97;3; 0.000000, 3.260104, 0.242284;;, + 98;3; 0.000000, 3.260104, 0.242284;;, + 99;3; 0.000000, 3.260104, 0.242284;;, + 100;3; 0.000000, 3.260104, 0.242284;;, + 101;3; 0.000000, 3.260104, 0.242284;;, + 102;3; 0.000000, 3.260104, 0.242284;;, + 103;3; 0.000000, 3.260104, 0.242284;;, + 104;3; 0.000000, 3.260104, 0.242284;;, + 105;3; 0.000000, 3.260104, 0.242284;;, + 106;3; 0.000000, 3.260104, 0.242284;;, + 107;3; 0.000000, 3.260104, 0.242284;;, + 108;3; 0.000000, 3.260104, 0.242284;;, + 109;3; 0.000000, 3.260104, 0.242284;;, + 110;3; 0.000000, 3.260104, 0.242284;;, + 111;3; 0.000000, 3.260104, 0.242284;;, + 112;3; 0.000000, 3.260104, 0.242284;;, + 113;3; 0.000000, 3.260104, 0.242284;;, + 114;3; 0.000000, 3.260104, 0.242284;;, + 115;3; 0.000000, 3.260104, 0.242284;;, + 116;3; 0.000000, 3.260104, 0.242284;;, + 117;3; 0.000000, 3.260104, 0.242284;;, + 118;3; 0.000000, 3.260104, 0.242284;;, + 119;3; 0.000000, 3.260104, 0.242284;;, + 120;3; 0.000000, 3.260104, 0.242284;;, + 121;3; 0.000000, 3.260104, 0.242284;;, + 122;3; 0.000000, 3.260104, 0.242284;;, + 123;3; 0.000000, 3.260104, 0.242284;;, + 124;3; 0.000000, 3.260104, 0.242284;;, + 125;3; 0.000000, 3.260104, 0.242284;;, + 126;3; 0.000000, 3.260104, 0.242284;;, + 127;3; 0.000000, 3.260104, 0.242284;;, + 128;3; 0.000000, 3.260104, 0.242284;;, + 129;3; 0.000000, 3.260104, 0.242284;;, + 130;3; 0.000000, 3.260104, 0.242284;;, + 131;3; 0.000000, 3.260104, 0.242284;;, + 132;3; 0.000000, 3.260104, 0.242284;;, + 133;3; 0.000000, 3.260104, 0.242284;;, + 134;3; 0.000000, 3.260104, 0.242284;;, + 135;3; 0.000000, 3.260104, 0.242284;;, + 136;3; 0.000000, 3.260104, 0.242284;;, + 137;3; 0.000000, 3.260104, 0.242284;;, + 138;3; 0.000000, 3.260104, 0.242284;;, + 139;3; 0.000000, 3.260104, 0.242284;;, + 140;3; 0.000000, 3.260104, 0.242284;;, + 141;3; 0.000000, 3.260104, 0.242284;;, + 142;3; 0.000000, 3.260104, 0.242284;;, + 143;3; 0.000000, 3.260104, 0.242284;;, + 144;3; 0.000000, 3.260104, 0.242284;;, + 145;3; 0.000000, 3.260104, 0.242284;;, + 146;3; 0.000000, 3.260104, 0.242284;;, + 147;3; 0.000000, 3.260104, 0.242284;;, + 148;3; 0.000000, 3.260104, 0.242284;;, + 149;3; 0.000000, 3.260104, 0.242284;;, + 150;3; 0.000000, 3.260104, 0.242284;;, + 151;3; 0.000000, 3.260104, 0.242284;;, + 152;3; 0.000000, 3.260104, 0.242284;;, + 153;3; 0.000000, 3.260104, 0.242284;;, + 154;3; 0.000000, 3.260104, 0.242284;;, + 155;3; 0.000000, 3.260104, 0.242284;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 1;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 2;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 3;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 4;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 5;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 6;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 7;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 8;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 9;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 10;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 11;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 12;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 13;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 14;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 15;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 16;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 17;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 18;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 19;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 20;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 21;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 22;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 23;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 24;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 25;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 26;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 27;4; -0.994416,-0.057162, 0.003586, 0.037647;;, + 28;4; -0.989056, 0.002484, 0.005794, 0.037102;;, + 29;4; -0.981349, 0.088206, 0.008966, 0.036319;;, + 30;4; -0.973641, 0.173928, 0.012139, 0.035535;;, + 31;4; -0.968281, 0.233575, 0.014346, 0.034991;;, + 32;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 33;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 34;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 35;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 36;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 37;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 38;4; -0.966440, 0.254077, 0.015105, 0.034803;;, + 39;4; -0.964339, 0.215537, 0.049348, 0.013417;;, + 40;4; -0.959308, 0.112805, 0.138792,-0.042483;;, + 41;4; -0.955516, 0.004698, 0.228007,-0.098299;;, + 42;4; -0.956542,-0.047448, 0.261727,-0.119483;;, + 43;4; -0.961848,-0.061756, 0.245284,-0.109587;;, + 44;4; -0.970009,-0.071634, 0.198581,-0.081241;;, + 45;4; -0.979672,-0.076820, 0.131773,-0.040622;;, + 46;4; -0.988486,-0.078307, 0.065092,-0.000055;;, + 47;4; -0.994313,-0.078015, 0.018746, 0.028147;;, + 48;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 49;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 50;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 51;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 52;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 53;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 54;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 55;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 56;4; -0.996486,-0.073439, 0.002987, 0.037818;;, + 57;4; -0.997129,-0.061537, 0.003438, 0.037774;;, + 58;4; -0.997954,-0.046256, 0.004016, 0.037717;;, + 59;4; -0.998597,-0.034355, 0.004466, 0.037672;;, + 60;4; -0.998826,-0.030129, 0.004626, 0.037657;;, + 61;4; -0.998798,-0.030648, 0.004606, 0.037659;;, + 62;4; -0.998717,-0.032151, 0.004550, 0.037664;;, + 63;4; -0.998587,-0.034552, 0.004459, 0.037673;;, + 64;4; -0.998414,-0.037754, 0.004338, 0.037685;;, + 65;4; -0.998204,-0.041642, 0.004190, 0.037700;;, + 66;4; -0.997964,-0.046086, 0.004022, 0.037716;;, + 67;4; -0.997702,-0.050936, 0.003839, 0.037734;;, + 68;4; -0.997427,-0.056020, 0.003646, 0.037753;;, + 69;4; -0.997150,-0.061137, 0.003453, 0.037772;;, + 70;4; -0.996885,-0.066057, 0.003267, 0.037791;;, + 71;4; -0.996644,-0.070510, 0.003098, 0.037807;;, + 72;4; -0.996445,-0.074185, 0.002959, 0.037821;;, + 73;4; -0.996309,-0.076713, 0.002863, 0.037831;;, + 74;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 75;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 76;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 77;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 78;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 79;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 80;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 81;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 82;4; -0.998721,-0.033433, 0.004502, 0.037672;;, + 83;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 84;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 85;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 86;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 87;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 88;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 89;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 90;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 91;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 92;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 93;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 94;4; -0.999045,-0.021681, 0.004944, 0.037616;;, + 95;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 96;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 97;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 98;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 99;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 100;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 101;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 102;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 103;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 104;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 105;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 106;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 107;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 108;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 109;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 110;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 111;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 112;4; -0.998721,-0.033433, 0.004502, 0.037672;;, + 113;4; -0.998568,-0.036165, 0.004398, 0.037682;;, + 114;4; -0.998126,-0.044117, 0.004097, 0.037711;;, + 115;4; -0.997489,-0.055549, 0.003664, 0.037753;;, + 116;4; -0.996852,-0.066980, 0.003232, 0.037795;;, + 117;4; -0.996410,-0.074932, 0.002931, 0.037824;;, + 118;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 119;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 120;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 121;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 122;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 123;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 124;4; -0.999045,-0.021681, 0.004944, 0.037616;;, + 125;4; -0.998873,-0.025139, 0.004814, 0.037630;;, + 126;4; -0.998372,-0.035204, 0.004433, 0.037669;;, + 127;4; -0.997651,-0.049673, 0.003886, 0.037725;;, + 128;4; -0.996931,-0.064141, 0.003339, 0.037781;;, + 129;4; -0.996430,-0.074206, 0.002958, 0.037821;;, + 130;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 131;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 132;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 133;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 134;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 135;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 136;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 137;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 138;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 139;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 140;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 141;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 142;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 143;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 144;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 145;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 146;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 147;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 148;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 149;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 150;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 151;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 152;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 153;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 154;4; -0.996257,-0.077664, 0.002827, 0.037834;;, + 155;4; -0.996257,-0.077664, 0.002827, 0.037834;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_head} + AnimationKey { //Position + 2; + 156; + 0;3; 0.068728, 0.903770, 0.009841;;, + 1;3; 0.068728, 0.903770, 0.009841;;, + 2;3; 0.068728, 0.903770, 0.009841;;, + 3;3; 0.068728, 0.903770, 0.009841;;, + 4;3; 0.068728, 0.903770, 0.009841;;, + 5;3; 0.068728, 0.903770, 0.009841;;, + 6;3; 0.068728, 0.903770, 0.009841;;, + 7;3; 0.068728, 0.903770, 0.009841;;, + 8;3; 0.068728, 0.903770, 0.009841;;, + 9;3; 0.068728, 0.903770, 0.009841;;, + 10;3; 0.068728, 0.903770, 0.009841;;, + 11;3; 0.068728, 0.903770, 0.009841;;, + 12;3; 0.068728, 0.903770, 0.009841;;, + 13;3; 0.068728, 0.903770, 0.009841;;, + 14;3; 0.068728, 0.903770, 0.009841;;, + 15;3; 0.068728, 0.903770, 0.009841;;, + 16;3; 0.068728, 0.903770, 0.009841;;, + 17;3; 0.068728, 0.903770, 0.009841;;, + 18;3; 0.068728, 0.903770, 0.009841;;, + 19;3; 0.068728, 0.903770, 0.009841;;, + 20;3; 0.068728, 0.903770, 0.009841;;, + 21;3; 0.068728, 0.903770, 0.009841;;, + 22;3; 0.068728, 0.903770, 0.009841;;, + 23;3; 0.068728, 0.903770, 0.009841;;, + 24;3; 0.068728, 0.903770, 0.009841;;, + 25;3; 0.068728, 0.903770, 0.009841;;, + 26;3; 0.068728, 0.903770, 0.009841;;, + 27;3; 0.068728, 0.903770, 0.009841;;, + 28;3; 0.068728, 0.903770, 0.009841;;, + 29;3; 0.068728, 0.903770, 0.009841;;, + 30;3; 0.068728, 0.903770, 0.009841;;, + 31;3; 0.068728, 0.903770, 0.009841;;, + 32;3; 0.068728, 0.903770, 0.009841;;, + 33;3; 0.068728, 0.903770, 0.009841;;, + 34;3; 0.068728, 0.903770, 0.009841;;, + 35;3; 0.068728, 0.903770, 0.009841;;, + 36;3; 0.068728, 0.903770, 0.009841;;, + 37;3; 0.068728, 0.903770, 0.009841;;, + 38;3; 0.068728, 0.903770, 0.009841;;, + 39;3; 0.068728, 0.903770, 0.009841;;, + 40;3; 0.068728, 0.903770, 0.009841;;, + 41;3; 0.068728, 0.903770, 0.009840;;, + 42;3; 0.068728, 0.903770, 0.009841;;, + 43;3; 0.068728, 0.903770, 0.009841;;, + 44;3; 0.068728, 0.903770, 0.009841;;, + 45;3; 0.068728, 0.903770, 0.009841;;, + 46;3; 0.068728, 0.903770, 0.009841;;, + 47;3; 0.068727, 0.903770, 0.009841;;, + 48;3; 0.068728, 0.903770, 0.009841;;, + 49;3; 0.068728, 0.903770, 0.009841;;, + 50;3; 0.068728, 0.903770, 0.009841;;, + 51;3; 0.068728, 0.903770, 0.009841;;, + 52;3; 0.068728, 0.903770, 0.009841;;, + 53;3; 0.068728, 0.903770, 0.009841;;, + 54;3; 0.068728, 0.903770, 0.009841;;, + 55;3; 0.068728, 0.903770, 0.009841;;, + 56;3; 0.068728, 0.903770, 0.009841;;, + 57;3; 0.068728, 0.903770, 0.009841;;, + 58;3; 0.068728, 0.903770, 0.009841;;, + 59;3; 0.068728, 0.903770, 0.009841;;, + 60;3; 0.068728, 0.903770, 0.009841;;, + 61;3; 0.068728, 0.903770, 0.009841;;, + 62;3; 0.068727, 0.903770, 0.009841;;, + 63;3; 0.068728, 0.903770, 0.009841;;, + 64;3; 0.068728, 0.903770, 0.009841;;, + 65;3; 0.068727, 0.903770, 0.009841;;, + 66;3; 0.068728, 0.903769, 0.009841;;, + 67;3; 0.068728, 0.903770, 0.009841;;, + 68;3; 0.068728, 0.903770, 0.009841;;, + 69;3; 0.068727, 0.903770, 0.009841;;, + 70;3; 0.068728, 0.903770, 0.009841;;, + 71;3; 0.068728, 0.903770, 0.009841;;, + 72;3; 0.068728, 0.903770, 0.009841;;, + 73;3; 0.068728, 0.903770, 0.009841;;, + 74;3; 0.068728, 0.903770, 0.009841;;, + 75;3; 0.068728, 0.903770, 0.009841;;, + 76;3; 0.068728, 0.903770, 0.009841;;, + 77;3; 0.068728, 0.903770, 0.009841;;, + 78;3; 0.068728, 0.903770, 0.009841;;, + 79;3; 0.068728, 0.903770, 0.009841;;, + 80;3; 0.068728, 0.903770, 0.009841;;, + 81;3; 0.068728, 0.903770, 0.009841;;, + 82;3; 0.068728, 0.903770, 0.009841;;, + 83;3; 0.068728, 0.903770, 0.009841;;, + 84;3; 0.068728, 0.903770, 0.009841;;, + 85;3; 0.068728, 0.903770, 0.009841;;, + 86;3; 0.068728, 0.903770, 0.009841;;, + 87;3; 0.068728, 0.903770, 0.009841;;, + 88;3; 0.068728, 0.903770, 0.009841;;, + 89;3; 0.068728, 0.903770, 0.009841;;, + 90;3; 0.068728, 0.903770, 0.009841;;, + 91;3; 0.068728, 0.903770, 0.009841;;, + 92;3; 0.068728, 0.903769, 0.009841;;, + 93;3; 0.068728, 0.903770, 0.009841;;, + 94;3; 0.068728, 0.903770, 0.009841;;, + 95;3; 0.068728, 0.903770, 0.009841;;, + 96;3; 0.068728, 0.903770, 0.009841;;, + 97;3; 0.068728, 0.903770, 0.009841;;, + 98;3; 0.068728, 0.903770, 0.009841;;, + 99;3; 0.068728, 0.903770, 0.009841;;, + 100;3; 0.068728, 0.903770, 0.009841;;, + 101;3; 0.068728, 0.903770, 0.009841;;, + 102;3; 0.068728, 0.903770, 0.009841;;, + 103;3; 0.068728, 0.903770, 0.009841;;, + 104;3; 0.068728, 0.903770, 0.009841;;, + 105;3; 0.068728, 0.903770, 0.009841;;, + 106;3; 0.068728, 0.903770, 0.009841;;, + 107;3; 0.068728, 0.903770, 0.009841;;, + 108;3; 0.068728, 0.903770, 0.009841;;, + 109;3; 0.068728, 0.903770, 0.009841;;, + 110;3; 0.068728, 0.903770, 0.009841;;, + 111;3; 0.068728, 0.903770, 0.009841;;, + 112;3; 0.068728, 0.903770, 0.009841;;, + 113;3; 0.068728, 0.903770, 0.009841;;, + 114;3; 0.068728, 0.903770, 0.009841;;, + 115;3; 0.068728, 0.903770, 0.009841;;, + 116;3; 0.068728, 0.903770, 0.009841;;, + 117;3; 0.068728, 0.903770, 0.009841;;, + 118;3; 0.068728, 0.903770, 0.009841;;, + 119;3; 0.068728, 0.903770, 0.009841;;, + 120;3; 0.068728, 0.903770, 0.009841;;, + 121;3; 0.068728, 0.903770, 0.009841;;, + 122;3; 0.068728, 0.903769, 0.009841;;, + 123;3; 0.068728, 0.903770, 0.009841;;, + 124;3; 0.068728, 0.903770, 0.009841;;, + 125;3; 0.068728, 0.903770, 0.009841;;, + 126;3; 0.068728, 0.903770, 0.009841;;, + 127;3; 0.068728, 0.903770, 0.009841;;, + 128;3; 0.068728, 0.903770, 0.009841;;, + 129;3; 0.068728, 0.903770, 0.009841;;, + 130;3; 0.068728, 0.903770, 0.009841;;, + 131;3; 0.068728, 0.903770, 0.009841;;, + 132;3; 0.068728, 0.903770, 0.009841;;, + 133;3; 0.068728, 0.903770, 0.009841;;, + 134;3; 0.068728, 0.903770, 0.009841;;, + 135;3; 0.068728, 0.903770, 0.009841;;, + 136;3; 0.068728, 0.903770, 0.009841;;, + 137;3; 0.068728, 0.903770, 0.009841;;, + 138;3; 0.068728, 0.903770, 0.009841;;, + 139;3; 0.068728, 0.903770, 0.009841;;, + 140;3; 0.068727, 0.903770, 0.009841;;, + 141;3; 0.068727, 0.903770, 0.009841;;, + 142;3; 0.068728, 0.903770, 0.009841;;, + 143;3; 0.068728, 0.903770, 0.009841;;, + 144;3; 0.068728, 0.903770, 0.009841;;, + 145;3; 0.068728, 0.903770, 0.009841;;, + 146;3; 0.068728, 0.903770, 0.009841;;, + 147;3; 0.068728, 0.903770, 0.009841;;, + 148;3; 0.068728, 0.903770, 0.009841;;, + 149;3; 0.068728, 0.903770, 0.009841;;, + 150;3; 0.068728, 0.903770, 0.009841;;, + 151;3; 0.068728, 0.903770, 0.009841;;, + 152;3; 0.068727, 0.903770, 0.009841;;, + 153;3; 0.068728, 0.903770, 0.009841;;, + 154;3; 0.068728, 0.903770, 0.009841;;, + 155;3; 0.068728, 0.903770, 0.009841;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 1;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 2;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 3;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 4;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 5;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 6;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 7;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 8;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 9;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 10;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 11;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 12;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 13;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 14;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 15;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 16;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 17;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 18;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 19;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 20;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 21;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 22;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 23;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 24;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 25;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 26;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 27;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 28;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 29;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 30;4; -0.998171, 0.013972,-0.008803,-0.037500;;, + 31;4; -0.994966, 0.024053,-0.034555,-0.036053;;, + 32;4; -0.989862, 0.039359,-0.075148,-0.033468;;, + 33;4; -0.983646, 0.056616,-0.123797,-0.029809;;, + 34;4; -0.977455, 0.071656,-0.171048,-0.025368;;, + 35;4; -0.972271, 0.081255,-0.208929,-0.020539;;, + 36;4; -0.968611, 0.084035,-0.233422,-0.015649;;, + 37;4; -0.965922, 0.082324,-0.249225,-0.009544;;, + 38;4; -0.963643, 0.078387,-0.261222,-0.001252;;, + 39;4; -0.961951, 0.072304,-0.268792, 0.007979;;, + 40;4; -0.960922, 0.064810,-0.272343, 0.016105;;, + 41;4; -0.960466, 0.056998,-0.273293, 0.021361;;, + 42;4; -0.960402, 0.049704,-0.273175, 0.023091;;, + 43;4; -0.962856, 0.042018,-0.256114, 0.019319;;, + 44;4; -0.969855, 0.033096,-0.206980, 0.008347;;, + 45;4; -0.979877, 0.024089,-0.136502,-0.007426;;, + 46;4; -0.989882, 0.016649,-0.066081,-0.023198;;, + 47;4; -0.996836, 0.012036,-0.017106,-0.034169;;, + 48;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 49;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 50;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 51;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 52;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 53;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 54;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 55;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 56;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 57;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 58;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 59;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 60;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 61;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 62;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 63;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 64;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 65;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 66;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 67;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 68;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 69;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 70;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 71;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 72;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 73;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 74;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 75;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 76;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 77;4; -0.998942, 0.010323,-0.006375,-0.037836;;, + 78;4; -0.998114, 0.009640,-0.024116,-0.037539;;, + 79;4; -0.996912, 0.008659,-0.049619,-0.037111;;, + 80;4; -0.995684, 0.007678,-0.075122,-0.036681;;, + 81;4; -0.994788, 0.006994,-0.092863,-0.036381;;, + 82;4; -0.994407, 0.006759,-0.098958,-0.036275;;, + 83;4; -0.994301, 0.006876,-0.095847,-0.036318;;, + 84;4; -0.994200, 0.007231,-0.086457,-0.036455;;, + 85;4; -0.994107, 0.007818,-0.070972,-0.036684;;, + 86;4; -0.994024, 0.008611,-0.050073,-0.036994;;, + 87;4; -0.993951, 0.009561,-0.025046,-0.037367;;, + 88;4; -0.993891, 0.010596, 0.002231,-0.037774;;, + 89;4; -0.993843, 0.011631, 0.029508,-0.038181;;, + 90;4; -0.993807, 0.012581, 0.054535,-0.038555;;, + 91;4; -0.993783, 0.013374, 0.075434,-0.038868;;, + 92;4; -0.993767, 0.013962, 0.090919,-0.039100;;, + 93;4; -0.993759, 0.014319, 0.100309,-0.039240;;, + 94;4; -0.993757, 0.014437, 0.103420,-0.039287;;, + 95;4; -0.994095, 0.014197, 0.097014,-0.039204;;, + 96;4; -0.995077, 0.013500, 0.078371,-0.038961;;, + 97;4; -0.996491, 0.012497, 0.051571,-0.038613;;, + 98;4; -0.997904, 0.011494, 0.024771,-0.038264;;, + 99;4; -0.998887, 0.010797, 0.006127,-0.038022;;, + 100;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 101;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 102;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 103;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 104;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 105;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 106;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 107;4; -0.998942, 0.010323,-0.006375,-0.037836;;, + 108;4; -0.998114, 0.009640,-0.024116,-0.037539;;, + 109;4; -0.996912, 0.008659,-0.049619,-0.037111;;, + 110;4; -0.995684, 0.007678,-0.075122,-0.036681;;, + 111;4; -0.994788, 0.006994,-0.092863,-0.036381;;, + 112;4; -0.994407, 0.006759,-0.098958,-0.036275;;, + 113;4; -0.994301, 0.006876,-0.095847,-0.036318;;, + 114;4; -0.994200, 0.007231,-0.086457,-0.036455;;, + 115;4; -0.994107, 0.007818,-0.070972,-0.036684;;, + 116;4; -0.994024, 0.008611,-0.050073,-0.036994;;, + 117;4; -0.993951, 0.009561,-0.025046,-0.037367;;, + 118;4; -0.993891, 0.010596, 0.002231,-0.037774;;, + 119;4; -0.993843, 0.011631, 0.029508,-0.038181;;, + 120;4; -0.993807, 0.012581, 0.054535,-0.038555;;, + 121;4; -0.993783, 0.013374, 0.075434,-0.038868;;, + 122;4; -0.993767, 0.013962, 0.090919,-0.039100;;, + 123;4; -0.993759, 0.014319, 0.100309,-0.039240;;, + 124;4; -0.993757, 0.014437, 0.103420,-0.039287;;, + 125;4; -0.994095, 0.014197, 0.097014,-0.039204;;, + 126;4; -0.995077, 0.013500, 0.078371,-0.038961;;, + 127;4; -0.996491, 0.012497, 0.051571,-0.038613;;, + 128;4; -0.997904, 0.011494, 0.024771,-0.038264;;, + 129;4; -0.998887, 0.010797, 0.006127,-0.038022;;, + 130;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 131;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 132;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 133;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 134;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 135;4; -0.999224, 0.010557,-0.000279,-0.037939;;, + 136;4; -0.995675, 0.034507,-0.001189,-0.037807;;, + 137;4; -0.985676, 0.101940,-0.003750,-0.037435;;, + 138;4; -0.972838, 0.188502,-0.007038,-0.036958;;, + 139;4; -0.962840, 0.255921,-0.009599,-0.036587;;, + 140;4; -0.959291, 0.279862,-0.010509,-0.036455;;, + 141;4; -0.959683, 0.277217,-0.010408,-0.036470;;, + 142;4; -0.960868, 0.269222,-0.010104,-0.036514;;, + 143;4; -0.962840, 0.255919,-0.009599,-0.036587;;, + 144;4; -0.965558, 0.237587,-0.008903,-0.036688;;, + 145;4; -0.968937, 0.214805,-0.008037,-0.036814;;, + 146;4; -0.972839, 0.188493,-0.007038,-0.036958;;, + 147;4; -0.977079, 0.159901,-0.005952,-0.037116;;, + 148;4; -0.981436, 0.130518,-0.004836,-0.037278;;, + 149;4; -0.985676, 0.101926,-0.003750,-0.037435;;, + 150;4; -0.989578, 0.075614,-0.002750,-0.037580;;, + 151;4; -0.992956, 0.052832,-0.001885,-0.037706;;, + 152;4; -0.995675, 0.034500,-0.001189,-0.037807;;, + 153;4; -0.997647, 0.021197,-0.000683,-0.037880;;, + 154;4; -0.998832, 0.013202,-0.000380,-0.037924;;, + 155;4; -0.999224, 0.010557,-0.000279,-0.037939;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Armature_zubi} + AnimationKey { //Position + 2; + 156; + 0;3; 0.205805, 1.974131,-0.481359;;, + 1;3; 0.205805, 1.974131,-0.481359;;, + 2;3; 0.205805, 1.974131,-0.481359;;, + 3;3; 0.205805, 1.974131,-0.481359;;, + 4;3; 0.205805, 1.974131,-0.481359;;, + 5;3; 0.205805, 1.974131,-0.481359;;, + 6;3; 0.205805, 1.974131,-0.481359;;, + 7;3; 0.205805, 1.974131,-0.481359;;, + 8;3; 0.205805, 1.974131,-0.481359;;, + 9;3; 0.205805, 1.974131,-0.481359;;, + 10;3; 0.205805, 1.974131,-0.481359;;, + 11;3; 0.205805, 1.974131,-0.481359;;, + 12;3; 0.205805, 1.974131,-0.481359;;, + 13;3; 0.205805, 1.974131,-0.481359;;, + 14;3; 0.205805, 1.974131,-0.481359;;, + 15;3; 0.205805, 1.974131,-0.481359;;, + 16;3; 0.205805, 1.974131,-0.481359;;, + 17;3; 0.205805, 1.974131,-0.481359;;, + 18;3; 0.205805, 1.974131,-0.481359;;, + 19;3; 0.205805, 1.974131,-0.481359;;, + 20;3; 0.205805, 1.974131,-0.481359;;, + 21;3; 0.205805, 1.974131,-0.481359;;, + 22;3; 0.205805, 1.974131,-0.481359;;, + 23;3; 0.205805, 1.974131,-0.481359;;, + 24;3; 0.205805, 1.974131,-0.481359;;, + 25;3; 0.205805, 1.974131,-0.481359;;, + 26;3; 0.205805, 1.974131,-0.481359;;, + 27;3; 0.205806, 1.974131,-0.481358;;, + 28;3; 0.205805, 1.974131,-0.481358;;, + 29;3; 0.205805, 1.974131,-0.481359;;, + 30;3; 0.205805, 1.974131,-0.481358;;, + 31;3; 0.205806, 1.974131,-0.481358;;, + 32;3; 0.205805, 1.974131,-0.481358;;, + 33;3; 0.205805, 1.974131,-0.481358;;, + 34;3; 0.205805, 1.974131,-0.481358;;, + 35;3; 0.205805, 1.974131,-0.481358;;, + 36;3; 0.205805, 1.974131,-0.481358;;, + 37;3; 0.205805, 1.974131,-0.481358;;, + 38;3; 0.205805, 1.974131,-0.481358;;, + 39;3; 0.205805, 1.974131,-0.481359;;, + 40;3; 0.205805, 1.974131,-0.481358;;, + 41;3; 0.205805, 1.974131,-0.481359;;, + 42;3; 0.205805, 1.974131,-0.481358;;, + 43;3; 0.205805, 1.974131,-0.481358;;, + 44;3; 0.205805, 1.974131,-0.481359;;, + 45;3; 0.205806, 1.974131,-0.481359;;, + 46;3; 0.205805, 1.974131,-0.481358;;, + 47;3; 0.205805, 1.974131,-0.481359;;, + 48;3; 0.205805, 1.974131,-0.481359;;, + 49;3; 0.205805, 1.974131,-0.481359;;, + 50;3; 0.205805, 1.974131,-0.481359;;, + 51;3; 0.205805, 1.974131,-0.481359;;, + 52;3; 0.205805, 1.974131,-0.481359;;, + 53;3; 0.205805, 1.974131,-0.481359;;, + 54;3; 0.205805, 1.974131,-0.481359;;, + 55;3; 0.205805, 1.974131,-0.481359;;, + 56;3; 0.205805, 1.974131,-0.481359;;, + 57;3; 0.205805, 1.974131,-0.481359;;, + 58;3; 0.205805, 1.974131,-0.481359;;, + 59;3; 0.205805, 1.974131,-0.481359;;, + 60;3; 0.205805, 1.974131,-0.481358;;, + 61;3; 0.205805, 1.974131,-0.481359;;, + 62;3; 0.205805, 1.974131,-0.481359;;, + 63;3; 0.205805, 1.974131,-0.481359;;, + 64;3; 0.205805, 1.974131,-0.481359;;, + 65;3; 0.205805, 1.974131,-0.481359;;, + 66;3; 0.205805, 1.974131,-0.481359;;, + 67;3; 0.205805, 1.974131,-0.481359;;, + 68;3; 0.205805, 1.974131,-0.481359;;, + 69;3; 0.205805, 1.974131,-0.481359;;, + 70;3; 0.205805, 1.974131,-0.481359;;, + 71;3; 0.205805, 1.974131,-0.481359;;, + 72;3; 0.205805, 1.974131,-0.481358;;, + 73;3; 0.205805, 1.974131,-0.481358;;, + 74;3; 0.205805, 1.974131,-0.481359;;, + 75;3; 0.205805, 1.974131,-0.481359;;, + 76;3; 0.205805, 1.974131,-0.481359;;, + 77;3; 0.205805, 1.974131,-0.481359;;, + 78;3; 0.205805, 1.974131,-0.481359;;, + 79;3; 0.205805, 1.974131,-0.481359;;, + 80;3; 0.205805, 1.974131,-0.481358;;, + 81;3; 0.205805, 1.974131,-0.481359;;, + 82;3; 0.205805, 1.974131,-0.481359;;, + 83;3; 0.205805, 1.974131,-0.481359;;, + 84;3; 0.205805, 1.974131,-0.481358;;, + 85;3; 0.205805, 1.974131,-0.481359;;, + 86;3; 0.205805, 1.974131,-0.481358;;, + 87;3; 0.205805, 1.974131,-0.481359;;, + 88;3; 0.205805, 1.974131,-0.481359;;, + 89;3; 0.205805, 1.974131,-0.481358;;, + 90;3; 0.205805, 1.974131,-0.481359;;, + 91;3; 0.205805, 1.974131,-0.481359;;, + 92;3; 0.205805, 1.974131,-0.481359;;, + 93;3; 0.205806, 1.974131,-0.481359;;, + 94;3; 0.205805, 1.974131,-0.481359;;, + 95;3; 0.205806, 1.974131,-0.481359;;, + 96;3; 0.205805, 1.974131,-0.481359;;, + 97;3; 0.205805, 1.974131,-0.481358;;, + 98;3; 0.205805, 1.974131,-0.481359;;, + 99;3; 0.205805, 1.974131,-0.481359;;, + 100;3; 0.205805, 1.974131,-0.481359;;, + 101;3; 0.205805, 1.974131,-0.481359;;, + 102;3; 0.205805, 1.974131,-0.481359;;, + 103;3; 0.205805, 1.974131,-0.481359;;, + 104;3; 0.205805, 1.974131,-0.481359;;, + 105;3; 0.205805, 1.974131,-0.481359;;, + 106;3; 0.205805, 1.974131,-0.481359;;, + 107;3; 0.205805, 1.974131,-0.481359;;, + 108;3; 0.205805, 1.974131,-0.481359;;, + 109;3; 0.205805, 1.974131,-0.481359;;, + 110;3; 0.205805, 1.974131,-0.481358;;, + 111;3; 0.205805, 1.974131,-0.481359;;, + 112;3; 0.205805, 1.974131,-0.481359;;, + 113;3; 0.205805, 1.974131,-0.481359;;, + 114;3; 0.205805, 1.974131,-0.481358;;, + 115;3; 0.205805, 1.974131,-0.481359;;, + 116;3; 0.205805, 1.974131,-0.481358;;, + 117;3; 0.205805, 1.974131,-0.481359;;, + 118;3; 0.205805, 1.974131,-0.481359;;, + 119;3; 0.205805, 1.974131,-0.481358;;, + 120;3; 0.205805, 1.974131,-0.481359;;, + 121;3; 0.205805, 1.974131,-0.481359;;, + 122;3; 0.205805, 1.974131,-0.481359;;, + 123;3; 0.205806, 1.974131,-0.481359;;, + 124;3; 0.205805, 1.974131,-0.481359;;, + 125;3; 0.205806, 1.974131,-0.481359;;, + 126;3; 0.205805, 1.974131,-0.481359;;, + 127;3; 0.205805, 1.974131,-0.481358;;, + 128;3; 0.205805, 1.974131,-0.481359;;, + 129;3; 0.205805, 1.974131,-0.481359;;, + 130;3; 0.205805, 1.974131,-0.481359;;, + 131;3; 0.205805, 1.974131,-0.481359;;, + 132;3; 0.205805, 1.974131,-0.481359;;, + 133;3; 0.205805, 1.974131,-0.481359;;, + 134;3; 0.205805, 1.974131,-0.481359;;, + 135;3; 0.205805, 1.974131,-0.481359;;, + 136;3; 0.205805, 1.974131,-0.481359;;, + 137;3; 0.205805, 1.974131,-0.481358;;, + 138;3; 0.205741, 1.973247,-0.469110;;, + 139;3; 0.205551, 1.970632,-0.432877;;, + 140;3; 0.205261, 1.966648,-0.377679;;, + 141;3; 0.204933, 1.962130,-0.315077;;, + 142;3; 0.204643, 1.958146,-0.259887;;, + 143;3; 0.204453, 1.955532,-0.223662;;, + 144;3; 0.204389, 1.954648,-0.211417;;, + 145;3; 0.204415, 1.955004,-0.216358;;, + 146;3; 0.204494, 1.956080,-0.231258;;, + 147;3; 0.204621, 1.957843,-0.255685;;, + 148;3; 0.204792, 1.960192,-0.288231;;, + 149;3; 0.204992, 1.962942,-0.326329;;, + 150;3; 0.205202, 1.965835,-0.366412;;, + 151;3; 0.205402, 1.968585,-0.404515;;, + 152;3; 0.205572, 1.970935,-0.437071;;, + 153;3; 0.205701, 1.972699,-0.461508;;, + 154;3; 0.205779, 1.973774,-0.476414;;, + 155;3; 0.205805, 1.974131,-0.481359;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 1;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 2;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 3;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 4;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 5;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 6;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 7;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 8;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 9;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 10;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 11;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 12;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 13;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 14;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 15;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 16;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 17;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 18;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 19;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 20;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 21;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 22;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 23;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 24;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 25;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 26;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 27;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 28;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 29;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 30;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 31;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 32;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 33;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 34;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 35;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 36;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 37;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 38;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 39;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 40;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 41;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 42;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 43;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 44;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 45;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 46;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 47;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 48;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 49;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 50;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 51;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 52;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 53;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 54;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 55;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 56;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 57;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 58;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 59;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 60;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 61;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 62;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 63;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 64;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 65;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 66;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 67;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 68;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 69;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 70;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 71;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 72;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 73;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 74;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 75;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 76;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 77;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 78;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 79;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 80;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 81;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 82;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 83;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 84;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 85;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 86;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 87;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 88;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 89;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 90;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 91;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 92;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 93;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 94;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 95;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 96;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 97;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 98;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 99;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 100;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 101;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 102;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 103;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 104;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 105;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 106;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 107;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 108;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 109;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 110;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 111;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 112;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 113;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 114;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 115;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 116;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 117;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 118;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 119;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 120;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 121;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 122;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 123;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 124;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 125;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 126;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 127;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 128;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 129;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 130;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 131;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 132;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 133;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 134;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 135;4; -0.998675, 0.034758,-0.001198,-0.037921;;, + 136;4; -0.983274,-0.110884, 0.004330,-0.037318;;, + 137;4; -0.965858,-0.256281, 0.009848,-0.036639;;, + 138;4; -0.962184,-0.231571, 0.008909,-0.036503;;, + 139;4; -0.958140,-0.158361, 0.006129,-0.036358;;, + 140;4; -0.954044,-0.046823, 0.001894,-0.036216;;, + 141;4; -0.950374, 0.079679,-0.002909,-0.036092;;, + 142;4; -0.947594, 0.191226,-0.007145,-0.036000;;, + 143;4; -0.945944, 0.264464,-0.009926,-0.035947;;, + 144;4; -0.945422, 0.289230,-0.010866,-0.035930;;, + 145;4; -0.946397, 0.284568,-0.010689,-0.035966;;, + 146;4; -0.949337, 0.270516,-0.010155,-0.036076;;, + 147;4; -0.954156, 0.247481,-0.009280,-0.036256;;, + 148;4; -0.960578, 0.216794,-0.008114,-0.036496;;, + 149;4; -0.968095, 0.180879,-0.006750,-0.036777;;, + 150;4; -0.976003, 0.143096,-0.005314,-0.037073;;, + 151;4; -0.983520, 0.107183,-0.003950,-0.037354;;, + 152;4; -0.989941, 0.076500,-0.002784,-0.037594;;, + 153;4; -0.994761, 0.053469,-0.001909,-0.037774;;, + 154;4; -0.997701, 0.039419,-0.001375,-0.037884;;, + 155;4; -0.998675, 0.034758,-0.001198,-0.037921;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;, + 120;3; 1.000000, 1.000000, 1.000000;;, + 121;3; 1.000000, 1.000000, 1.000000;;, + 122;3; 1.000000, 1.000000, 1.000000;;, + 123;3; 1.000000, 1.000000, 1.000000;;, + 124;3; 1.000000, 1.000000, 1.000000;;, + 125;3; 1.000000, 1.000000, 1.000000;;, + 126;3; 1.000000, 1.000000, 1.000000;;, + 127;3; 1.000000, 1.000000, 1.000000;;, + 128;3; 1.000000, 1.000000, 1.000000;;, + 129;3; 1.000000, 1.000000, 1.000000;;, + 130;3; 1.000000, 1.000000, 1.000000;;, + 131;3; 1.000000, 1.000000, 1.000000;;, + 132;3; 1.000000, 1.000000, 1.000000;;, + 133;3; 1.000000, 1.000000, 1.000000;;, + 134;3; 1.000000, 1.000000, 1.000000;;, + 135;3; 1.000000, 1.000000, 1.000000;;, + 136;3; 1.000000, 1.000000, 1.000000;;, + 137;3; 1.000000, 1.000000, 1.000000;;, + 138;3; 1.000000, 1.000000, 1.000000;;, + 139;3; 1.000000, 1.000000, 1.000000;;, + 140;3; 1.000000, 1.000000, 1.000000;;, + 141;3; 1.000000, 1.000000, 1.000000;;, + 142;3; 1.000000, 1.000000, 1.000000;;, + 143;3; 1.000000, 1.000000, 1.000000;;, + 144;3; 1.000000, 1.000000, 1.000000;;, + 145;3; 1.000000, 1.000000, 1.000000;;, + 146;3; 1.000000, 1.000000, 1.000000;;, + 147;3; 1.000000, 1.000000, 1.000000;;, + 148;3; 1.000000, 1.000000, 1.000000;;, + 149;3; 1.000000, 1.000000, 1.000000;;, + 150;3; 1.000000, 1.000000, 1.000000;;, + 151;3; 1.000000, 1.000000, 1.000000;;, + 152;3; 1.000000, 1.000000, 1.000000;;, + 153;3; 1.000000, 1.000000, 1.000000;;, + 154;3; 1.000000, 1.000000, 1.000000;;, + 155;3; 1.000000, 1.000000, 1.000000;;; + } + } + Animation { + {Cube} + AnimationKey { //Position + 2; + 156; + 0;3; -0.137034,-0.235439, 6.856374;;, + 1;3; -0.137034,-0.235439, 6.856374;;, + 2;3; -0.137034,-0.235439, 6.856374;;, + 3;3; -0.137034,-0.235439, 6.856374;;, + 4;3; -0.137034,-0.235439, 6.856374;;, + 5;3; -0.137034,-0.235439, 6.856374;;, + 6;3; -0.137034,-0.235439, 6.856374;;, + 7;3; -0.137034,-0.235439, 6.856374;;, + 8;3; -0.137034,-0.235439, 6.856374;;, + 9;3; -0.137034,-0.235439, 6.856374;;, + 10;3; -0.137034,-0.235439, 6.856374;;, + 11;3; -0.137034,-0.235439, 6.856374;;, + 12;3; -0.137034,-0.235439, 6.856374;;, + 13;3; -0.137034,-0.235439, 6.856374;;, + 14;3; -0.137034,-0.235439, 6.856374;;, + 15;3; -0.137034,-0.235439, 6.856374;;, + 16;3; -0.137034,-0.235439, 6.856374;;, + 17;3; -0.137034,-0.235439, 6.856374;;, + 18;3; -0.137034,-0.235439, 6.856374;;, + 19;3; -0.137034,-0.235439, 6.856374;;, + 20;3; -0.137034,-0.235439, 6.856374;;, + 21;3; -0.137034,-0.235439, 6.856374;;, + 22;3; -0.137034,-0.235439, 6.856374;;, + 23;3; -0.137034,-0.235439, 6.856374;;, + 24;3; -0.137034,-0.235439, 6.856374;;, + 25;3; -0.137034,-0.235439, 6.856374;;, + 26;3; -0.137034,-0.235439, 6.856374;;, + 27;3; -0.137034,-0.235439, 6.856374;;, + 28;3; -0.137034,-0.235439, 6.856374;;, + 29;3; -0.137034,-0.235439, 6.856374;;, + 30;3; -0.137034,-0.235439, 6.856374;;, + 31;3; -0.137034,-0.235439, 6.856374;;, + 32;3; -0.137034,-0.235439, 6.856374;;, + 33;3; -0.137034,-0.235439, 6.856374;;, + 34;3; -0.137034,-0.235439, 6.856374;;, + 35;3; -0.137034,-0.235439, 6.856374;;, + 36;3; -0.137034,-0.235439, 6.856374;;, + 37;3; -0.137034,-0.235439, 6.856374;;, + 38;3; -0.137034,-0.235439, 6.856374;;, + 39;3; -0.137034,-0.235439, 6.856374;;, + 40;3; -0.137034,-0.235439, 6.856374;;, + 41;3; -0.137034,-0.235439, 6.856374;;, + 42;3; -0.137034,-0.235439, 6.856374;;, + 43;3; -0.137034,-0.235439, 6.856374;;, + 44;3; -0.137034,-0.235439, 6.856374;;, + 45;3; -0.137034,-0.235439, 6.856374;;, + 46;3; -0.137034,-0.235439, 6.856374;;, + 47;3; -0.137034,-0.235439, 6.856374;;, + 48;3; -0.137034,-0.235439, 6.856374;;, + 49;3; -0.137034,-0.235439, 6.856374;;, + 50;3; -0.137034,-0.235439, 6.856374;;, + 51;3; -0.137034,-0.235439, 6.856374;;, + 52;3; -0.137034,-0.235439, 6.856374;;, + 53;3; -0.137034,-0.235439, 6.856374;;, + 54;3; -0.137034,-0.235439, 6.856374;;, + 55;3; -0.137034,-0.235439, 6.856374;;, + 56;3; -0.137034,-0.235439, 6.856374;;, + 57;3; -0.137034,-0.235439, 6.856374;;, + 58;3; -0.137034,-0.235439, 6.856374;;, + 59;3; -0.137034,-0.235439, 6.856374;;, + 60;3; -0.137034,-0.235439, 6.856374;;, + 61;3; -0.137034,-0.235439, 6.856374;;, + 62;3; -0.137034,-0.235439, 6.856374;;, + 63;3; -0.137034,-0.235439, 6.856374;;, + 64;3; -0.137034,-0.235439, 6.856374;;, + 65;3; -0.137034,-0.235439, 6.856374;;, + 66;3; -0.137034,-0.235439, 6.856374;;, + 67;3; -0.137034,-0.235439, 6.856374;;, + 68;3; -0.137034,-0.235439, 6.856374;;, + 69;3; -0.137034,-0.235439, 6.856374;;, + 70;3; -0.137034,-0.235439, 6.856374;;, + 71;3; -0.137034,-0.235439, 6.856374;;, + 72;3; -0.137034,-0.235439, 6.856374;;, + 73;3; -0.137034,-0.235439, 6.856374;;, + 74;3; -0.137034,-0.235439, 6.856374;;, + 75;3; -0.137034,-0.235439, 6.856374;;, + 76;3; -0.137034,-0.235439, 6.856374;;, + 77;3; -0.137034,-0.235439, 6.856374;;, + 78;3; -0.137034,-0.235439, 6.856374;;, + 79;3; -0.137034,-0.235439, 6.856374;;, + 80;3; -0.137034,-0.235439, 6.856374;;, + 81;3; -0.137034,-0.235439, 6.856374;;, + 82;3; -0.137034,-0.235439, 6.856374;;, + 83;3; -0.137034,-0.235439, 6.856374;;, + 84;3; -0.137034,-0.235439, 6.856374;;, + 85;3; -0.137034,-0.235439, 6.856374;;, + 86;3; -0.137034,-0.235439, 6.856374;;, + 87;3; -0.137034,-0.235439, 6.856374;;, + 88;3; -0.137034,-0.235439, 6.856374;;, + 89;3; -0.137034,-0.235439, 6.856374;;, + 90;3; -0.137034,-0.235439, 6.856374;;, + 91;3; -0.137034,-0.235439, 6.856374;;, + 92;3; -0.137034,-0.235439, 6.856374;;, + 93;3; -0.137034,-0.235439, 6.856374;;, + 94;3; -0.137034,-0.235439, 6.856374;;, + 95;3; -0.137034,-0.235439, 6.856374;;, + 96;3; -0.137034,-0.235439, 6.856374;;, + 97;3; -0.137034,-0.235439, 6.856374;;, + 98;3; -0.137034,-0.235439, 6.856374;;, + 99;3; -0.137034,-0.235439, 6.856374;;, + 100;3; -0.137034,-0.235439, 6.856374;;, + 101;3; -0.137034,-0.235439, 6.856374;;, + 102;3; -0.137034,-0.235439, 6.856374;;, + 103;3; -0.137034,-0.235439, 6.856374;;, + 104;3; -0.137034,-0.235439, 6.856374;;, + 105;3; -0.137034,-0.235439, 6.856374;;, + 106;3; -0.137034,-0.235439, 6.856374;;, + 107;3; -0.137034,-0.235439, 6.856374;;, + 108;3; -0.137034,-0.235439, 6.856374;;, + 109;3; -0.137034,-0.235439, 6.856374;;, + 110;3; -0.137034,-0.235439, 6.856374;;, + 111;3; -0.137034,-0.235439, 6.856374;;, + 112;3; -0.137034,-0.235439, 6.856374;;, + 113;3; -0.137034,-0.235439, 6.856374;;, + 114;3; -0.137034,-0.235439, 6.856374;;, + 115;3; -0.137034,-0.235439, 6.856374;;, + 116;3; -0.137034,-0.235439, 6.856374;;, + 117;3; -0.137034,-0.235439, 6.856374;;, + 118;3; -0.137034,-0.235439, 6.856374;;, + 119;3; -0.137034,-0.235439, 6.856374;;, + 120;3; -0.137034,-0.235439, 6.856374;;, + 121;3; -0.137034,-0.235439, 6.856374;;, + 122;3; -0.137034,-0.235439, 6.856374;;, + 123;3; -0.137034,-0.235439, 6.856374;;, + 124;3; -0.137034,-0.235439, 6.856374;;, + 125;3; -0.137034,-0.235439, 6.856374;;, + 126;3; -0.137034,-0.235439, 6.856374;;, + 127;3; -0.137034,-0.235439, 6.856374;;, + 128;3; -0.137034,-0.235439, 6.856374;;, + 129;3; -0.137034,-0.235439, 6.856374;;, + 130;3; -0.137034,-0.235439, 6.856374;;, + 131;3; -0.137034,-0.235439, 6.856374;;, + 132;3; -0.137034,-0.235439, 6.856374;;, + 133;3; -0.137034,-0.235439, 6.856374;;, + 134;3; -0.137034,-0.235439, 6.856374;;, + 135;3; -0.137034,-0.235439, 6.856374;;, + 136;3; -0.137034,-0.235439, 6.856374;;, + 137;3; -0.137034,-0.235439, 6.856374;;, + 138;3; -0.137034,-0.235439, 6.856374;;, + 139;3; -0.137034,-0.235439, 6.856374;;, + 140;3; -0.137034,-0.235439, 6.856374;;, + 141;3; -0.137034,-0.235439, 6.856374;;, + 142;3; -0.137034,-0.235439, 6.856374;;, + 143;3; -0.137034,-0.235439, 6.856374;;, + 144;3; -0.137034,-0.235439, 6.856374;;, + 145;3; -0.137034,-0.235439, 6.856374;;, + 146;3; -0.137034,-0.235439, 6.856374;;, + 147;3; -0.137034,-0.235439, 6.856374;;, + 148;3; -0.137034,-0.235439, 6.856374;;, + 149;3; -0.137034,-0.235439, 6.856374;;, + 150;3; -0.137034,-0.235439, 6.856374;;, + 151;3; -0.137034,-0.235439, 6.856374;;, + 152;3; -0.137034,-0.235439, 6.856374;;, + 153;3; -0.137034,-0.235439, 6.856374;;, + 154;3; -0.137034,-0.235439, 6.856374;;, + 155;3; -0.137034,-0.235439, 6.856374;;; + } + AnimationKey { //Rotation + 0; + 156; + 0;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 120;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 121;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 122;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 123;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 124;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 125;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 126;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 127;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 128;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 129;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 130;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 131;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 132;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 133;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 134;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 135;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 136;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 137;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 138;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 139;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 140;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 141;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 142;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 143;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 144;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 145;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 146;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 147;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 148;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 149;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 150;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 151;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 152;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 153;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 154;4; -1.000000, 0.000000, 0.000000, 0.000000;;, + 155;4; -1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { //Scale + 1; + 156; + 0;3; 2.153459, 2.153459, 2.153459;;, + 1;3; 2.153459, 2.153459, 2.153459;;, + 2;3; 2.153459, 2.153459, 2.153459;;, + 3;3; 2.153459, 2.153459, 2.153459;;, + 4;3; 2.153459, 2.153459, 2.153459;;, + 5;3; 2.153459, 2.153459, 2.153459;;, + 6;3; 2.153459, 2.153459, 2.153459;;, + 7;3; 2.153459, 2.153459, 2.153459;;, + 8;3; 2.153459, 2.153459, 2.153459;;, + 9;3; 2.153459, 2.153459, 2.153459;;, + 10;3; 2.153459, 2.153459, 2.153459;;, + 11;3; 2.153459, 2.153459, 2.153459;;, + 12;3; 2.153459, 2.153459, 2.153459;;, + 13;3; 2.153459, 2.153459, 2.153459;;, + 14;3; 2.153459, 2.153459, 2.153459;;, + 15;3; 2.153459, 2.153459, 2.153459;;, + 16;3; 2.153459, 2.153459, 2.153459;;, + 17;3; 2.153459, 2.153459, 2.153459;;, + 18;3; 2.153459, 2.153459, 2.153459;;, + 19;3; 2.153459, 2.153459, 2.153459;;, + 20;3; 2.153459, 2.153459, 2.153459;;, + 21;3; 2.153459, 2.153459, 2.153459;;, + 22;3; 2.153459, 2.153459, 2.153459;;, + 23;3; 2.153459, 2.153459, 2.153459;;, + 24;3; 2.153459, 2.153459, 2.153459;;, + 25;3; 2.153459, 2.153459, 2.153459;;, + 26;3; 2.153459, 2.153459, 2.153459;;, + 27;3; 2.153459, 2.153459, 2.153459;;, + 28;3; 2.153459, 2.153459, 2.153459;;, + 29;3; 2.153459, 2.153459, 2.153459;;, + 30;3; 2.153459, 2.153459, 2.153459;;, + 31;3; 2.153459, 2.153459, 2.153459;;, + 32;3; 2.153459, 2.153459, 2.153459;;, + 33;3; 2.153459, 2.153459, 2.153459;;, + 34;3; 2.153459, 2.153459, 2.153459;;, + 35;3; 2.153459, 2.153459, 2.153459;;, + 36;3; 2.153459, 2.153459, 2.153459;;, + 37;3; 2.153459, 2.153459, 2.153459;;, + 38;3; 2.153459, 2.153459, 2.153459;;, + 39;3; 2.153459, 2.153459, 2.153459;;, + 40;3; 2.153459, 2.153459, 2.153459;;, + 41;3; 2.153459, 2.153459, 2.153459;;, + 42;3; 2.153459, 2.153459, 2.153459;;, + 43;3; 2.153459, 2.153459, 2.153459;;, + 44;3; 2.153459, 2.153459, 2.153459;;, + 45;3; 2.153459, 2.153459, 2.153459;;, + 46;3; 2.153459, 2.153459, 2.153459;;, + 47;3; 2.153459, 2.153459, 2.153459;;, + 48;3; 2.153459, 2.153459, 2.153459;;, + 49;3; 2.153459, 2.153459, 2.153459;;, + 50;3; 2.153459, 2.153459, 2.153459;;, + 51;3; 2.153459, 2.153459, 2.153459;;, + 52;3; 2.153459, 2.153459, 2.153459;;, + 53;3; 2.153459, 2.153459, 2.153459;;, + 54;3; 2.153459, 2.153459, 2.153459;;, + 55;3; 2.153459, 2.153459, 2.153459;;, + 56;3; 2.153459, 2.153459, 2.153459;;, + 57;3; 2.153459, 2.153459, 2.153459;;, + 58;3; 2.153459, 2.153459, 2.153459;;, + 59;3; 2.153459, 2.153459, 2.153459;;, + 60;3; 2.153459, 2.153459, 2.153459;;, + 61;3; 2.153459, 2.153459, 2.153459;;, + 62;3; 2.153459, 2.153459, 2.153459;;, + 63;3; 2.153459, 2.153459, 2.153459;;, + 64;3; 2.153459, 2.153459, 2.153459;;, + 65;3; 2.153459, 2.153459, 2.153459;;, + 66;3; 2.153459, 2.153459, 2.153459;;, + 67;3; 2.153459, 2.153459, 2.153459;;, + 68;3; 2.153459, 2.153459, 2.153459;;, + 69;3; 2.153459, 2.153459, 2.153459;;, + 70;3; 2.153459, 2.153459, 2.153459;;, + 71;3; 2.153459, 2.153459, 2.153459;;, + 72;3; 2.153459, 2.153459, 2.153459;;, + 73;3; 2.153459, 2.153459, 2.153459;;, + 74;3; 2.153459, 2.153459, 2.153459;;, + 75;3; 2.153459, 2.153459, 2.153459;;, + 76;3; 2.153459, 2.153459, 2.153459;;, + 77;3; 2.153459, 2.153459, 2.153459;;, + 78;3; 2.153459, 2.153459, 2.153459;;, + 79;3; 2.153459, 2.153459, 2.153459;;, + 80;3; 2.153459, 2.153459, 2.153459;;, + 81;3; 2.153459, 2.153459, 2.153459;;, + 82;3; 2.153459, 2.153459, 2.153459;;, + 83;3; 2.153459, 2.153459, 2.153459;;, + 84;3; 2.153459, 2.153459, 2.153459;;, + 85;3; 2.153459, 2.153459, 2.153459;;, + 86;3; 2.153459, 2.153459, 2.153459;;, + 87;3; 2.153459, 2.153459, 2.153459;;, + 88;3; 2.153459, 2.153459, 2.153459;;, + 89;3; 2.153459, 2.153459, 2.153459;;, + 90;3; 2.153459, 2.153459, 2.153459;;, + 91;3; 2.153459, 2.153459, 2.153459;;, + 92;3; 2.153459, 2.153459, 2.153459;;, + 93;3; 2.153459, 2.153459, 2.153459;;, + 94;3; 2.153459, 2.153459, 2.153459;;, + 95;3; 2.153459, 2.153459, 2.153459;;, + 96;3; 2.153459, 2.153459, 2.153459;;, + 97;3; 2.153459, 2.153459, 2.153459;;, + 98;3; 2.153459, 2.153459, 2.153459;;, + 99;3; 2.153459, 2.153459, 2.153459;;, + 100;3; 2.153459, 2.153459, 2.153459;;, + 101;3; 2.153459, 2.153459, 2.153459;;, + 102;3; 2.153459, 2.153459, 2.153459;;, + 103;3; 2.153459, 2.153459, 2.153459;;, + 104;3; 2.153459, 2.153459, 2.153459;;, + 105;3; 2.153459, 2.153459, 2.153459;;, + 106;3; 2.153459, 2.153459, 2.153459;;, + 107;3; 2.153459, 2.153459, 2.153459;;, + 108;3; 2.153459, 2.153459, 2.153459;;, + 109;3; 2.153459, 2.153459, 2.153459;;, + 110;3; 2.153459, 2.153459, 2.153459;;, + 111;3; 2.153459, 2.153459, 2.153459;;, + 112;3; 2.153459, 2.153459, 2.153459;;, + 113;3; 2.153459, 2.153459, 2.153459;;, + 114;3; 2.153459, 2.153459, 2.153459;;, + 115;3; 2.153459, 2.153459, 2.153459;;, + 116;3; 2.153459, 2.153459, 2.153459;;, + 117;3; 2.153459, 2.153459, 2.153459;;, + 118;3; 2.153459, 2.153459, 2.153459;;, + 119;3; 2.153459, 2.153459, 2.153459;;, + 120;3; 2.153459, 2.153459, 2.153459;;, + 121;3; 2.153459, 2.153459, 2.153459;;, + 122;3; 2.153459, 2.153459, 2.153459;;, + 123;3; 2.153459, 2.153459, 2.153459;;, + 124;3; 2.153459, 2.153459, 2.153459;;, + 125;3; 2.153459, 2.153459, 2.153459;;, + 126;3; 2.153459, 2.153459, 2.153459;;, + 127;3; 2.153459, 2.153459, 2.153459;;, + 128;3; 2.153459, 2.153459, 2.153459;;, + 129;3; 2.153459, 2.153459, 2.153459;;, + 130;3; 2.153459, 2.153459, 2.153459;;, + 131;3; 2.153459, 2.153459, 2.153459;;, + 132;3; 2.153459, 2.153459, 2.153459;;, + 133;3; 2.153459, 2.153459, 2.153459;;, + 134;3; 2.153459, 2.153459, 2.153459;;, + 135;3; 2.153459, 2.153459, 2.153459;;, + 136;3; 2.153459, 2.153459, 2.153459;;, + 137;3; 2.153459, 2.153459, 2.153459;;, + 138;3; 2.153459, 2.153459, 2.153459;;, + 139;3; 2.153459, 2.153459, 2.153459;;, + 140;3; 2.153459, 2.153459, 2.153459;;, + 141;3; 2.153459, 2.153459, 2.153459;;, + 142;3; 2.153459, 2.153459, 2.153459;;, + 143;3; 2.153459, 2.153459, 2.153459;;, + 144;3; 2.153459, 2.153459, 2.153459;;, + 145;3; 2.153459, 2.153459, 2.153459;;, + 146;3; 2.153459, 2.153459, 2.153459;;, + 147;3; 2.153459, 2.153459, 2.153459;;, + 148;3; 2.153459, 2.153459, 2.153459;;, + 149;3; 2.153459, 2.153459, 2.153459;;, + 150;3; 2.153459, 2.153459, 2.153459;;, + 151;3; 2.153459, 2.153459, 2.153459;;, + 152;3; 2.153459, 2.153459, 2.153459;;, + 153;3; 2.153459, 2.153459, 2.153459;;, + 154;3; 2.153459, 2.153459, 2.153459;;, + 155;3; 2.153459, 2.153459, 2.153459;;; + } + } +} //End of AnimationSet diff --git a/mods/mobs_mc/models/mobs_zombie.x b/mods/mobs_mc/models/mobs_zombie.x new file mode 100644 index 000000000..038264e22 --- /dev/null +++ b/mods/mobs_mc/models/mobs_zombie.x @@ -0,0 +1,4293 @@ +xof 0303txt 0032 + +template XSkinMeshHeader { + <3cf169ce-ff7c-44ab-93c0-f78f62d172e2> + WORD nMaxSkinWeightsPerVertex; + WORD nMaxSkinWeightsPerFace; + WORD nBones; +} + +template SkinWeights { + <6f0d123b-bad2-4167-a0d0-80224f25fabb> + STRING transformNodeName; + DWORD nWeights; + array DWORD vertexIndices[nWeights]; + array float weights[nWeights]; + Matrix4x4 matrixOffset; +} + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Zombie_Rig { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Zombie_Rig_Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000,-1.000000, 0.000000, 0.000000, + -0.016157,-0.000002, 0.155138, 1.000000;; + } + Frame Zombie_Rig_Body { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 7.038587, 0.000000, 1.000000;; + } + Frame Zombie_Rig_Hand_L { + FrameTransformMatrix { + -0.985768, 0.001172,-0.168110, 0.000000, + 0.168114, 0.007429,-0.985740, 0.000000, + 0.000093,-0.999972,-0.007520, 0.000000, + -2.916781, 5.977198,-0.441669, 1.000000;; + } + } // End of Zombie_Rig_Hand_L + Frame Zombie_Rig_Hand_R { + FrameTransformMatrix { + -0.987345,-0.001383, 0.158583, 0.000000, + -0.158589, 0.007242,-0.987318, 0.000000, + 0.000217,-0.999973,-0.007369, 0.000000, + 3.054465, 5.973932,-0.325399, 1.000000;; + } + } // End of Zombie_Rig_Hand_R + Frame Zombie_Rig_Head { + FrameTransformMatrix { + -1.000000,-0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 7.072505,-0.000000, 1.000000;; + } + } // End of Zombie_Rig_Head + Frame Zombie_Rig_Leg_L { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + -1.533429,-0.067529, 0.000001, 1.000000;; + } + } // End of Zombie_Rig_Leg_L + Frame Zombie_Rig_Leg_R { + FrameTransformMatrix { + 1.000000,-0.000000,-0.000000, 0.000000, + -0.000000,-1.000000,-0.000001, 0.000000, + -0.000000, 0.000001,-1.000000, 0.000000, + 1.533431,-0.067529, 0.000001, 1.000000;; + } + } // End of Zombie_Rig_Leg_R + } // End of Zombie_Rig_Body + } // End of Zombie_Rig_Root + Frame Zombie { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { // Zombie mesh + 144; + 2.578811; 1.496216;14.140781;, + 2.578815;-1.573512;14.140781;, + 2.578815;-1.573512; 7.100102;, + 2.578811; 1.496216; 7.100102;, + 2.578815;-1.573512;14.140781;, + -2.599039;-1.573519;14.140781;, + -2.599039;-1.573519; 7.100102;, + 2.578815;-1.573512; 7.100102;, + -2.599039;-1.573519;14.140781;, + -2.599043; 1.496209;14.140781;, + -2.599043; 1.496209; 7.100102;, + -2.599039;-1.573519; 7.100102;, + -2.599043; 1.496209;14.140781;, + 2.578811; 1.496216;14.140781;, + 2.578811; 1.496216; 7.100102;, + -2.599043; 1.496209; 7.100102;, + 2.578811; 1.496216; 7.100102;, + 2.578815;-1.573512; 7.100102;, + -2.599039;-1.573519; 7.100102;, + -2.599043; 1.496209; 7.100102;, + -2.599043; 1.496209;14.140781;, + -2.599039;-1.573519;14.140781;, + 2.578815;-1.573512;14.140781;, + 2.578811; 1.496216;14.140781;, + 2.541550; 2.541557;19.221237;, + 2.541557;-2.541550;19.221237;, + 2.541557;-2.541550;14.138132;, + 2.541550; 2.541557;14.138132;, + 2.541557;-2.541550;19.221237;, + -2.541550;-2.541557;19.221237;, + -2.541550;-2.541557;14.138132;, + 2.541557;-2.541550;14.138132;, + -2.541550;-2.541557;19.221237;, + -2.541557; 2.541550;19.221237;, + -2.541557; 2.541550;14.138132;, + -2.541550;-2.541557;14.138132;, + -2.541557; 2.541550;19.221237;, + 2.541550; 2.541557;19.221237;, + 2.541550; 2.541557;14.138132;, + -2.541557; 2.541550;14.138132;, + 2.541550; 2.541557;14.138132;, + 2.541557;-2.541550;14.138132;, + -2.541550;-2.541557;14.138132;, + -2.541557; 2.541550;14.138132;, + -2.541557; 2.541550;19.221237;, + -2.541550;-2.541557;19.221237;, + 2.541557;-2.541550;19.221237;, + 2.541550; 2.541557;19.221237;, + -0.061207; 0.993879; 0.057249;, + -0.061204;-1.266155; 0.057249;, + -2.573718;-1.266158; 0.057249;, + -2.573721; 0.993876; 0.057249;, + -2.573718;-1.266158; 7.088850;, + -2.573721; 0.993876; 7.088850;, + -2.573721; 0.993876; 0.057249;, + -2.573718;-1.266158; 0.057249;, + -0.061204;-1.266155; 7.088850;, + -2.573718;-1.266158; 7.088850;, + -2.573718;-1.266158; 0.057249;, + -0.061204;-1.266155; 0.057249;, + -2.573721; 0.993876; 7.088850;, + -2.573718;-1.266158; 7.088850;, + -0.061204;-1.266155; 7.088850;, + -0.061207; 0.993879; 7.088850;, + -2.573721; 0.993876; 7.088850;, + -0.061207; 0.993879; 7.088850;, + -0.061207; 0.993879; 0.057249;, + -2.573721; 0.993876; 0.057249;, + -0.061207; 0.993879; 7.088850;, + -0.061204;-1.266155; 7.088850;, + -0.061204;-1.266155; 0.057249;, + -0.061207; 0.993879; 0.057249;, + -3.029264; 0.267294;12.028254;, + -2.744135; 0.232303;13.826743;, + -4.696936; 0.542303;14.142367;, + -4.982065; 0.577293;12.343878;, + -3.497045; 8.178710;14.065948;, + -3.782174; 8.213701;12.267458;, + -4.982065; 0.577293;12.343878;, + -4.696936; 0.542303;14.142367;, + -1.544244; 7.868711;13.750323;, + -3.497045; 8.178710;14.065948;, + -4.696936; 0.542303;14.142367;, + -2.744135; 0.232303;13.826743;, + -3.782174; 8.213701;12.267458;, + -3.497045; 8.178710;14.065948;, + -1.544244; 7.868711;13.750323;, + -1.829373; 7.903700;11.951833;, + -3.782174; 8.213701;12.267458;, + -1.829373; 7.903700;11.951833;, + -3.029264; 0.267294;12.028254;, + -4.982065; 0.577293;12.343878;, + -1.829373; 7.903700;11.951833;, + -1.544244; 7.868711;13.750323;, + -2.744135; 0.232303;13.826743;, + -3.029264; 0.267294;12.028254;, + 2.590292; 0.993879; 0.057249;, + 2.590294;-1.266155; 0.057249;, + 0.068430;-1.266158; 0.057249;, + 0.068427; 0.993876; 0.057249;, + 0.068430;-1.266158; 7.088850;, + 0.068427; 0.993876; 7.088850;, + 0.068427; 0.993876; 0.057249;, + 0.068430;-1.266158; 0.057249;, + 2.590294;-1.266155; 7.088850;, + 0.068430;-1.266158; 7.088850;, + 0.068430;-1.266158; 0.057249;, + 2.590294;-1.266155; 0.057249;, + 0.068427; 0.993876; 7.088850;, + 0.068430;-1.266158; 7.088850;, + 2.590294;-1.266155; 7.088850;, + 2.590292; 0.993879; 7.088850;, + 0.068427; 0.993876; 7.088850;, + 2.590292; 0.993879; 7.088850;, + 2.590292; 0.993879; 0.057249;, + 0.068427; 0.993876; 0.057249;, + 2.590292; 0.993879; 7.088850;, + 2.590294;-1.266155; 7.088850;, + 2.590294;-1.266155; 0.057249;, + 2.590292; 0.993879; 0.057249;, + 5.004563; 0.572805;12.363310;, + 4.732802; 0.540528;14.163918;, + 2.777042; 0.234338;13.863251;, + 3.048804; 0.266616;12.062641;, + 1.592874; 7.873199;13.786736;, + 1.864636; 7.905478;11.986128;, + 3.048804; 0.266616;12.062641;, + 2.777042; 0.234338;13.863251;, + 3.548635; 8.179389;14.087403;, + 1.592874; 7.873199;13.786736;, + 2.777042; 0.234338;13.863251;, + 4.732802; 0.540528;14.163918;, + 1.864636; 7.905478;11.986128;, + 1.592874; 7.873199;13.786736;, + 3.548635; 8.179389;14.087403;, + 3.820397; 8.211666;12.286795;, + 1.864636; 7.905478;11.986128;, + 3.820397; 8.211666;12.286795;, + 5.004563; 0.572805;12.363310;, + 3.048804; 0.266616;12.062641;, + 3.820397; 8.211666;12.286795;, + 3.548635; 8.179389;14.087403;, + 4.732802; 0.540528;14.163918;, + 5.004563; 0.572805;12.363310;; + 36; + 4;3,2,1,0;, + 4;7,6,5,4;, + 4;11,10,9,8;, + 4;15,14,13,12;, + 4;19,18,17,16;, + 4;23,22,21,20;, + 4;27,26,25,24;, + 4;31,30,29,28;, + 4;35,34,33,32;, + 4;39,38,37,36;, + 4;43,42,41,40;, + 4;47,46,45,44;, + 4;51,50,49,48;, + 4;55,54,53,52;, + 4;59,58,57,56;, + 4;63,62,61,60;, + 4;67,66,65,64;, + 4;71,70,69,68;, + 4;75,74,73,72;, + 4;79,78,77,76;, + 4;83,82,81,80;, + 4;87,86,85,84;, + 4;91,90,89,88;, + 4;95,94,93,92;, + 4;99,98,97,96;, + 4;103,102,101,100;, + 4;107,106,105,104;, + 4;111,110,109,108;, + 4;115,114,113,112;, + 4;119,118,117,116;, + 4;123,122,121,120;, + 4;127,126,125,124;, + 4;131,130,129,128;, + 4;135,134,133,132;, + 4;139,138,137,136;, + 4;143,142,141,140;; + MeshTextureCoords { // Zombie UV coordinates + 144; + 0.312500; 0.625000;, + 0.250000; 0.625000;, + 0.250000; 1.000000;, + 0.312500; 1.000000;, + 0.625000; 0.625000;, + 0.500000; 0.625000;, + 0.500000; 1.000000;, + 0.625000; 1.000000;, + 0.500000; 0.625000;, + 0.437500; 0.625000;, + 0.437500; 1.000000;, + 0.500000; 1.000000;, + 0.437500; 0.625000;, + 0.312500; 0.625000;, + 0.312500; 1.000000;, + 0.437500; 1.000000;, + 0.437500; 0.500000;, + 0.437500; 0.625000;, + 0.562500; 0.625000;, + 0.562500; 0.500000;, + 0.437500; 0.625000;, + 0.437500; 0.500000;, + 0.312500; 0.500000;, + 0.312500; 0.625000;, + 0.125000; 0.250000;, + 0.000000; 0.250000;, + 0.000000; 0.500000;, + 0.125000; 0.500000;, + 0.375000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.250000;, + 0.375000; 0.250000;, + 0.375000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.500000;, + 0.375000; 0.500000;, + 0.250000; 0.250000;, + 0.125000; 0.250000;, + 0.125000; 0.500000;, + 0.250000; 0.500000;, + 0.375000; 0.250000;, + 0.375000; 0.000000;, + 0.250000; 0.000000;, + 0.250000; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.000000;, + 0.125000; 0.000000;, + 0.125000; 0.250000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.187500; 1.000000;, + 0.250000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.250000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.062500; 0.625000;, + 0.000000; 0.625000;, + 0.000000; 1.000000;, + 0.062500; 1.000000;, + 0.687500; 0.500000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.687500; 1.000000;, + 0.750000; 1.000000;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.750000; 1.000000;, + 0.812500; 1.000000;, + 0.812500; 0.625000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.625000;, + 0.625000; 1.000000;, + 0.687500; 1.000000;, + 0.687500; 0.625000;, + 0.625000; 0.625000;, + 0.812500; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.812500; 0.625000;, + 0.125000; 0.500000;, + 0.125000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 0.500000;, + 0.187500; 0.625000;, + 0.125000; 0.625000;, + 0.125000; 1.000000;, + 0.187500; 1.000000;, + 0.250000; 0.625000;, + 0.187500; 0.625000;, + 0.187500; 1.000000;, + 0.250000; 1.000000;, + 0.125000; 0.625000;, + 0.125000; 0.500000;, + 0.062500; 0.500000;, + 0.062500; 0.625000;, + 0.125000; 0.625000;, + 0.062500; 0.625000;, + 0.062500; 1.000000;, + 0.125000; 1.000000;, + 0.062500; 0.625000;, + 0.000000; 0.625000;, + 0.000000; 1.000000;, + 0.062500; 1.000000;, + 0.687500; 0.500000;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.500000;, + 0.687500; 1.000000;, + 0.750000; 1.000000;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.750000; 1.000000;, + 0.812500; 1.000000;, + 0.812500; 0.625000;, + 0.750000; 0.625000;, + 0.812500; 0.625000;, + 0.812500; 0.500000;, + 0.750000; 0.500000;, + 0.750000; 0.625000;, + 0.625000; 1.000000;, + 0.687500; 1.000000;, + 0.687500; 0.625000;, + 0.625000; 0.625000;, + 0.812500; 1.000000;, + 0.875000; 1.000000;, + 0.875000; 0.625000;, + 0.812500; 0.625000;; + } // End of Zombie UV coordinates + XSkinMeshHeader { + 4; + 12; + 7; + } + SkinWeights { + "Zombie_Rig_Body"; + 24; + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15, + 16, + 17, + 18, + 19, + 20, + 21, + 22, + 23; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.016157,-7.193725,-0.000002, 1.000000;; + } // End of Zombie_Rig_Body skin weights + SkinWeights { + "Zombie_Rig_Hand_R"; + 24; + 120, + 121, + 122, + 123, + 124, + 125, + 126, + 127, + 128, + 129, + 130, + 131, + 132, + 133, + 134, + 135, + 136, + 137, + 138, + 139, + 140, + 141, + 142, + 143; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.987345,-0.158589, 0.000217, 0.000000, + -0.158583, 0.987318, 0.007369, 0.000000, + -0.001383, 0.007241,-0.999973, 0.000000, + 3.069666, 0.065218,13.164241, 1.000000;; + } // End of Zombie_Rig_Hand_R skin weights + SkinWeights { + "Zombie_Rig_Leg_L"; + 24; + 48, + 49, + 50, + 51, + 52, + 53, + 54, + 55, + 56, + 57, + 58, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 67, + 68, + 69, + 70, + 71; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000001, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000001, 0.000000, + 1.549587, 7.126197,-0.000002, 1.000000;; + } // End of Zombie_Rig_Leg_L skin weights + SkinWeights { + "Zombie_Rig_Leg_R"; + 36; + 10, + 15, + 19, + 48, + 49, + 59, + 63, + 65, + 66, + 68, + 70, + 71, + 96, + 97, + 98, + 99, + 100, + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + 1.000000,-0.000000,-0.000000, 0.000000, + 0.000000, 0.000001, 1.000000, 0.000000, + -0.000000,-1.000000, 0.000001, 0.000000, + -1.517272, 7.126198,-0.000001, 1.000000;; + } // End of Zombie_Rig_Leg_R skin weights + SkinWeights { + "Zombie_Rig_Root"; + 24; + 10, + 15, + 19, + 48, + 49, + 56, + 59, + 62, + 63, + 65, + 66, + 68, + 69, + 70, + 71, + 77, + 84, + 87, + 88, + 89, + 92, + 125, + 132, + 136; + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,-1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + 0.016157,-0.155138,-0.000002, 1.000000;; + } // End of Zombie_Rig_Root skin weights + SkinWeights { + "Zombie_Rig_Head"; + 57; + 10, + 15, + 19, + 24, + 25, + 26, + 27, + 28, + 29, + 30, + 31, + 32, + 33, + 34, + 35, + 36, + 37, + 38, + 39, + 40, + 41, + 42, + 43, + 44, + 45, + 46, + 47, + 48, + 49, + 52, + 53, + 56, + 57, + 59, + 60, + 61, + 62, + 63, + 64, + 65, + 66, + 68, + 69, + 70, + 71, + 76, + 77, + 80, + 81, + 84, + 85, + 86, + 87, + 88, + 89, + 92, + 93; + 0.000000, + 0.000000, + 0.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000, + 0.000000; + -1.000000, 0.000000,-0.000000, 0.000000, + -0.000000,-0.000000, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, + -0.016157,-14.266230,-0.000000, 1.000000;; + } // End of Zombie_Rig_Head skin weights + SkinWeights { + "Zombie_Rig_Hand_L"; + 24; + 72, + 73, + 74, + 75, + 76, + 77, + 78, + 79, + 80, + 81, + 82, + 83, + 84, + 85, + 86, + 87, + 88, + 89, + 90, + 91, + 92, + 93, + 94, + 95; + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000, + 1.000000; + -0.985767, 0.168114, 0.000093, 0.000000, + 0.168110, 0.985739, 0.007520, 0.000000, + 0.001172, 0.007429,-0.999972, 0.000000, + -2.980884,-0.040146,13.167501, 1.000000;; + } // End of Zombie_Rig_Hand_L skin weights + } // End of Zombie mesh + } // End of Zombie + } // End of Zombie_Rig +} // End of Root +AnimationSet Global { + Animation { + {Zombie} + AnimationKey { // Rotation + 0; + 120; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Zombie_Rig} + AnimationKey { // Rotation + 0; + 120; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 2;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 3;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 4;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 5;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 6;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 7;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 8;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 9;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 10;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 11;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 12;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 13;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 14;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 15;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 16;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 17;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 18;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 19;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 20;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 21;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 22;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 25;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 26;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 27;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 28;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 29;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 30;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 31;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 32;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 33;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 34;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 37;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 38;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 39;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 40;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 41;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 42;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 43;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 44;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 45;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 46;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 47;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 48;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 49;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 50;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 51;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 52;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 53;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 54;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 55;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 56;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 57;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 58;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 59;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 60;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 61;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 62;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 88;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 89;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 90;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 91;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 92;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 93;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 94;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 95;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 96;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 97;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 98;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 99;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 100;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 101;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 102;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 103;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 104;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 105;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 106;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 107;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 108;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 109;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 110;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 111;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 112;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 113;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 114;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 115;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 116;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 117;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 118;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 119;4;-1.000000, 0.000000, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3; 0.000000, 0.000000, 0.000000;;, + 1;3; 0.000000, 0.000000, 0.000000;;, + 2;3; 0.000000, 0.000000, 0.000000;;, + 3;3; 0.000000, 0.000000, 0.000000;;, + 4;3; 0.000000, 0.000000, 0.000000;;, + 5;3; 0.000000, 0.000000, 0.000000;;, + 6;3; 0.000000, 0.000000, 0.000000;;, + 7;3; 0.000000, 0.000000, 0.000000;;, + 8;3; 0.000000, 0.000000, 0.000000;;, + 9;3; 0.000000, 0.000000, 0.000000;;, + 10;3; 0.000000, 0.000000, 0.000000;;, + 11;3; 0.000000, 0.000000, 0.000000;;, + 12;3; 0.000000, 0.000000, 0.000000;;, + 13;3; 0.000000, 0.000000, 0.000000;;, + 14;3; 0.000000, 0.000000, 0.000000;;, + 15;3; 0.000000, 0.000000, 0.000000;;, + 16;3; 0.000000, 0.000000, 0.000000;;, + 17;3; 0.000000, 0.000000, 0.000000;;, + 18;3; 0.000000, 0.000000, 0.000000;;, + 19;3; 0.000000, 0.000000, 0.000000;;, + 20;3; 0.000000, 0.000000, 0.000000;;, + 21;3; 0.000000, 0.000000, 0.000000;;, + 22;3; 0.000000, 0.000000, 0.000000;;, + 23;3; 0.000000, 0.000000, 0.000000;;, + 24;3; 0.000000, 0.000000, 0.000000;;, + 25;3; 0.000000, 0.000000, 0.000000;;, + 26;3; 0.000000, 0.000000, 0.000000;;, + 27;3; 0.000000, 0.000000, 0.000000;;, + 28;3; 0.000000, 0.000000, 0.000000;;, + 29;3; 0.000000, 0.000000, 0.000000;;, + 30;3; 0.000000, 0.000000, 0.000000;;, + 31;3; 0.000000, 0.000000, 0.000000;;, + 32;3; 0.000000, 0.000000, 0.000000;;, + 33;3; 0.000000, 0.000000, 0.000000;;, + 34;3; 0.000000, 0.000000, 0.000000;;, + 35;3; 0.000000, 0.000000, 0.000000;;, + 36;3; 0.000000, 0.000000, 0.000000;;, + 37;3; 0.000000, 0.000000, 0.000000;;, + 38;3; 0.000000, 0.000000, 0.000000;;, + 39;3; 0.000000, 0.000000, 0.000000;;, + 40;3; 0.000000, 0.000000, 0.000000;;, + 41;3; 0.000000, 0.000000, 0.000000;;, + 42;3; 0.000000, 0.000000, 0.000000;;, + 43;3; 0.000000, 0.000000, 0.000000;;, + 44;3; 0.000000, 0.000000, 0.000000;;, + 45;3; 0.000000, 0.000000, 0.000000;;, + 46;3; 0.000000, 0.000000, 0.000000;;, + 47;3; 0.000000, 0.000000, 0.000000;;, + 48;3; 0.000000, 0.000000, 0.000000;;, + 49;3; 0.000000, 0.000000, 0.000000;;, + 50;3; 0.000000, 0.000000, 0.000000;;, + 51;3; 0.000000, 0.000000, 0.000000;;, + 52;3; 0.000000, 0.000000, 0.000000;;, + 53;3; 0.000000, 0.000000, 0.000000;;, + 54;3; 0.000000, 0.000000, 0.000000;;, + 55;3; 0.000000, 0.000000, 0.000000;;, + 56;3; 0.000000, 0.000000, 0.000000;;, + 57;3; 0.000000, 0.000000, 0.000000;;, + 58;3; 0.000000, 0.000000, 0.000000;;, + 59;3; 0.000000, 0.000000, 0.000000;;, + 60;3; 0.000000, 0.000000, 0.000000;;, + 61;3; 0.000000, 0.000000, 0.000000;;, + 62;3; 0.000000, 0.000000, 0.000000;;, + 63;3; 0.000000, 0.000000, 0.000000;;, + 64;3; 0.000000, 0.000000, 0.000000;;, + 65;3; 0.000000, 0.000000, 0.000000;;, + 66;3; 0.000000, 0.000000, 0.000000;;, + 67;3; 0.000000, 0.000000, 0.000000;;, + 68;3; 0.000000, 0.000000, 0.000000;;, + 69;3; 0.000000, 0.000000, 0.000000;;, + 70;3; 0.000000, 0.000000, 0.000000;;, + 71;3; 0.000000, 0.000000, 0.000000;;, + 72;3; 0.000000, 0.000000, 0.000000;;, + 73;3; 0.000000, 0.000000, 0.000000;;, + 74;3; 0.000000, 0.000000, 0.000000;;, + 75;3; 0.000000, 0.000000, 0.000000;;, + 76;3; 0.000000, 0.000000, 0.000000;;, + 77;3; 0.000000, 0.000000, 0.000000;;, + 78;3; 0.000000, 0.000000, 0.000000;;, + 79;3; 0.000000, 0.000000, 0.000000;;, + 80;3; 0.000000, 0.000000, 0.000000;;, + 81;3; 0.000000, 0.000000, 0.000000;;, + 82;3; 0.000000, 0.000000, 0.000000;;, + 83;3; 0.000000, 0.000000, 0.000000;;, + 84;3; 0.000000, 0.000000, 0.000000;;, + 85;3; 0.000000, 0.000000, 0.000000;;, + 86;3; 0.000000, 0.000000, 0.000000;;, + 87;3; 0.000000, 0.000000, 0.000000;;, + 88;3; 0.000000, 0.000000, 0.000000;;, + 89;3; 0.000000, 0.000000, 0.000000;;, + 90;3; 0.000000, 0.000000, 0.000000;;, + 91;3; 0.000000, 0.000000, 0.000000;;, + 92;3; 0.000000, 0.000000, 0.000000;;, + 93;3; 0.000000, 0.000000, 0.000000;;, + 94;3; 0.000000, 0.000000, 0.000000;;, + 95;3; 0.000000, 0.000000, 0.000000;;, + 96;3; 0.000000, 0.000000, 0.000000;;, + 97;3; 0.000000, 0.000000, 0.000000;;, + 98;3; 0.000000, 0.000000, 0.000000;;, + 99;3; 0.000000, 0.000000, 0.000000;;, + 100;3; 0.000000, 0.000000, 0.000000;;, + 101;3; 0.000000, 0.000000, 0.000000;;, + 102;3; 0.000000, 0.000000, 0.000000;;, + 103;3; 0.000000, 0.000000, 0.000000;;, + 104;3; 0.000000, 0.000000, 0.000000;;, + 105;3; 0.000000, 0.000000, 0.000000;;, + 106;3; 0.000000, 0.000000, 0.000000;;, + 107;3; 0.000000, 0.000000, 0.000000;;, + 108;3; 0.000000, 0.000000, 0.000000;;, + 109;3; 0.000000, 0.000000, 0.000000;;, + 110;3; 0.000000, 0.000000, 0.000000;;, + 111;3; 0.000000, 0.000000, 0.000000;;, + 112;3; 0.000000, 0.000000, 0.000000;;, + 113;3; 0.000000, 0.000000, 0.000000;;, + 114;3; 0.000000, 0.000000, 0.000000;;, + 115;3; 0.000000, 0.000000, 0.000000;;, + 116;3; 0.000000, 0.000000, 0.000000;;, + 117;3; 0.000000, 0.000000, 0.000000;;, + 118;3; 0.000000, 0.000000, 0.000000;;, + 119;3; 0.000000, 0.000000, 0.000000;;; + } + } + Animation { + {Zombie_Rig_Root} + AnimationKey { // Rotation + 0; + 120; + 0;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 1;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 2;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 3;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 4;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 5;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 6;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 7;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 8;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 9;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 10;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 11;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 12;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 13;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 14;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 15;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 16;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 17;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 18;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 19;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 20;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 21;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 22;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 23;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 24;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 25;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 26;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 27;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 28;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 29;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 30;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 31;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 32;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 33;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 34;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 35;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 36;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 37;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 38;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 39;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 40;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 41;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 42;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 43;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 44;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 45;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 46;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 47;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 48;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 49;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 50;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 51;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 52;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 53;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 54;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 55;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 56;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 57;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 58;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 59;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 60;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 61;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 62;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 63;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 64;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 65;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 66;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 67;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 68;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 69;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 70;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 71;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 72;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 73;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 74;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 75;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 76;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 77;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 78;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 79;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 80;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 81;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 82;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 83;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 84;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 85;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 86;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 87;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 88;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 89;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 90;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 91;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 92;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 93;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 94;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 95;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 96;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 97;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 98;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 99;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 100;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 101;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 102;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 103;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 104;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 105;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 106;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 107;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 108;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 109;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 110;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 111;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 112;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 113;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 114;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 115;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 116;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 117;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 118;4;-0.707107, 0.707107, 0.000000, 0.000000;;, + 119;4;-0.707107, 0.707107, 0.000000, 0.000000;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3;-0.016157,-0.000002, 0.155138;;, + 1;3;-0.016157,-0.000002, 0.155138;;, + 2;3;-0.016157,-0.000002, 0.155138;;, + 3;3;-0.016157,-0.000002, 0.155138;;, + 4;3;-0.016157,-0.000002, 0.155138;;, + 5;3;-0.016157,-0.000002, 0.155138;;, + 6;3;-0.016157,-0.000002, 0.155138;;, + 7;3;-0.016157,-0.000002, 0.155138;;, + 8;3;-0.016157,-0.000002, 0.155138;;, + 9;3;-0.016157,-0.000002, 0.155138;;, + 10;3;-0.016157,-0.000002, 0.155138;;, + 11;3;-0.016157,-0.000002, 0.155138;;, + 12;3;-0.016157,-0.000002, 0.155138;;, + 13;3;-0.016157,-0.000002, 0.155138;;, + 14;3;-0.016157,-0.000002, 0.155138;;, + 15;3;-0.016157,-0.000002, 0.155138;;, + 16;3;-0.016157,-0.000002, 0.155138;;, + 17;3;-0.016157,-0.000002, 0.155138;;, + 18;3;-0.016157,-0.000002, 0.155138;;, + 19;3;-0.016157,-0.000002, 0.155138;;, + 20;3;-0.016157,-0.000002, 0.155138;;, + 21;3;-0.016157,-0.000002, 0.155138;;, + 22;3;-0.016157,-0.000002, 0.155138;;, + 23;3;-0.016157,-0.000002, 0.155138;;, + 24;3;-0.016157,-0.000002, 0.155138;;, + 25;3;-0.016157,-0.000002, 0.155138;;, + 26;3;-0.016157,-0.000002, 0.155138;;, + 27;3;-0.016157,-0.000002, 0.155138;;, + 28;3;-0.016157,-0.000002, 0.155138;;, + 29;3;-0.016157,-0.000002, 0.155138;;, + 30;3;-0.016157,-0.000002, 0.155138;;, + 31;3;-0.016157,-0.000002, 0.155138;;, + 32;3;-0.016157,-0.000002, 0.155138;;, + 33;3;-0.016157,-0.000002, 0.155138;;, + 34;3;-0.016157,-0.000002, 0.155138;;, + 35;3;-0.016157,-0.000002, 0.155138;;, + 36;3;-0.016157,-0.000002, 0.155138;;, + 37;3;-0.016157,-0.000002, 0.155138;;, + 38;3;-0.016157,-0.000002, 0.155138;;, + 39;3;-0.016157,-0.000002, 0.155138;;, + 40;3;-0.016157,-0.000002, 0.155138;;, + 41;3;-0.016157,-0.000002, 0.155138;;, + 42;3;-0.016157,-0.000002, 0.155138;;, + 43;3;-0.016157,-0.000002, 0.155138;;, + 44;3;-0.016157,-0.000002, 0.155138;;, + 45;3;-0.016157,-0.000002, 0.155138;;, + 46;3;-0.016157,-0.000002, 0.155138;;, + 47;3;-0.016157,-0.000002, 0.155138;;, + 48;3;-0.016157,-0.000002, 0.155138;;, + 49;3;-0.016157,-0.000002, 0.155138;;, + 50;3;-0.016157,-0.000002, 0.155138;;, + 51;3;-0.016157,-0.000002, 0.155138;;, + 52;3;-0.016157,-0.000002, 0.155138;;, + 53;3;-0.016157,-0.000002, 0.155138;;, + 54;3;-0.016157,-0.000002, 0.155138;;, + 55;3;-0.016157,-0.000002, 0.155138;;, + 56;3;-0.016157,-0.000002, 0.155138;;, + 57;3;-0.016157,-0.000002, 0.155138;;, + 58;3;-0.016157,-0.000002, 0.155138;;, + 59;3;-0.016157,-0.000002, 0.155138;;, + 60;3;-0.016157,-0.000002, 0.155138;;, + 61;3;-0.016157,-0.000002, 0.155138;;, + 62;3;-0.016157,-0.000002, 0.155138;;, + 63;3;-0.016157,-0.000002, 0.155138;;, + 64;3;-0.016157,-0.000002, 0.155138;;, + 65;3;-0.016157,-0.000002, 0.155138;;, + 66;3;-0.016157,-0.000002, 0.155138;;, + 67;3;-0.016157,-0.000002, 0.155138;;, + 68;3;-0.016157,-0.000002, 0.155138;;, + 69;3;-0.016157,-0.000002, 0.155138;;, + 70;3;-0.016157,-0.000002, 0.155138;;, + 71;3;-0.016157,-0.000002, 0.155138;;, + 72;3;-0.016157,-0.000002, 0.155138;;, + 73;3;-0.016157,-0.000002, 0.155138;;, + 74;3;-0.016157,-0.000002, 0.155138;;, + 75;3;-0.016157,-0.000002, 0.155138;;, + 76;3;-0.016157,-0.000002, 0.155138;;, + 77;3;-0.016157,-0.000002, 0.155138;;, + 78;3;-0.016157,-0.000002, 0.155138;;, + 79;3;-0.016157,-0.000002, 0.155138;;, + 80;3;-0.016157,-0.000002, 0.155138;;, + 81;3;-0.016157,-0.000002, 0.155138;;, + 82;3;-0.016157,-0.000002, 0.155138;;, + 83;3;-0.016157,-0.000002, 0.155138;;, + 84;3;-0.016157,-0.000002, 0.155138;;, + 85;3;-0.016157,-0.000002, 0.155138;;, + 86;3;-0.016157,-0.000002, 0.155138;;, + 87;3;-0.016157,-0.000002, 0.155138;;, + 88;3;-0.016157,-0.000002, 0.155138;;, + 89;3;-0.016157,-0.000002, 0.155138;;, + 90;3;-0.016157,-0.000002, 0.155138;;, + 91;3;-0.016157,-0.000002, 0.155138;;, + 92;3;-0.016157,-0.000002, 0.155138;;, + 93;3;-0.016157,-0.000002, 0.155138;;, + 94;3;-0.016157,-0.000002, 0.155138;;, + 95;3;-0.016157,-0.000002, 0.155138;;, + 96;3;-0.016157,-0.000002, 0.155138;;, + 97;3;-0.016157,-0.000002, 0.155138;;, + 98;3;-0.016157,-0.000002, 0.155138;;, + 99;3;-0.016157,-0.000002, 0.155138;;, + 100;3;-0.016157,-0.000002, 0.155138;;, + 101;3;-0.016157,-0.000002, 0.155138;;, + 102;3;-0.016157,-0.000002, 0.155138;;, + 103;3;-0.016157,-0.000002, 0.155138;;, + 104;3;-0.016157,-0.000002, 0.155138;;, + 105;3;-0.016157,-0.000002, 0.155138;;, + 106;3;-0.016157,-0.000002, 0.155138;;, + 107;3;-0.016157,-0.000002, 0.155138;;, + 108;3;-0.016157,-0.000002, 0.155138;;, + 109;3;-0.016157,-0.000002, 0.155138;;, + 110;3;-0.016157,-0.000002, 0.155138;;, + 111;3;-0.016157,-0.000002, 0.155138;;, + 112;3;-0.016157,-0.000002, 0.155138;;, + 113;3;-0.016157,-0.000002, 0.155138;;, + 114;3;-0.016157,-0.000002, 0.155138;;, + 115;3;-0.016157,-0.000002, 0.155138;;, + 116;3;-0.016157,-0.000002, 0.155138;;, + 117;3;-0.016157,-0.000002, 0.155138;;, + 118;3;-0.016157,-0.000002, 0.155138;;, + 119;3;-0.016157,-0.000002, 0.155138;;; + } + } + Animation { + {Zombie_Rig_Body} + AnimationKey { // Rotation + 0; + 120; + 0;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 1;4;-0.999998, 0.000539, 0.000000,-0.000000;;, + 2;4;-0.999991, 0.002108, 0.000000,-0.000000;;, + 3;4;-0.999981, 0.004363, 0.000000,-0.000000;;, + 4;4;-0.999971, 0.006619, 0.000000,-0.000000;;, + 5;4;-0.999964, 0.008187, 0.000000,-0.000000;;, + 6;4;-0.999962, 0.008726, 0.000000,-0.000000;;, + 7;4;-0.999965, 0.008223, 0.000000,-0.000000;;, + 8;4;-0.999975, 0.006686, 0.000000,-0.000000;;, + 9;4;-0.999987, 0.004392, 0.000000,-0.000000;;, + 10;4;-0.999997, 0.001985, 0.000000,-0.000000;;, + 11;4;-1.000000,-0.000000, 0.000000,-0.000000;;, + 12;4;-0.999997,-0.001895,-0.000000, 0.000000;;, + 13;4;-0.999988,-0.004112,-0.000000, 0.000000;;, + 14;4;-0.999976,-0.006363,-0.000000, 0.000000;;, + 15;4;-0.999964,-0.008230,-0.000000, 0.000000;;, + 16;4;-0.999955,-0.009391,-0.000000, 0.000000;;, + 17;4;-0.999952,-0.009763,-0.000000, 0.000000;;, + 18;4;-0.999955,-0.009160,-0.000000, 0.000000;;, + 19;4;-0.999964,-0.007405,-0.000000, 0.000000;;, + 20;4;-0.999976,-0.004882,-0.000000, 0.000000;;, + 21;4;-0.999988,-0.002358,-0.000000, 0.000000;;, + 22;4;-0.999997,-0.000603,-0.000000, 0.000000;;, + 23;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 24;4;-0.999998, 0.000000, 0.000000,-0.000551;;, + 25;4;-0.999990, 0.000000, 0.000000,-0.002156;;, + 26;4;-0.999980, 0.000000, 0.000000,-0.004463;;, + 27;4;-0.999970, 0.000000, 0.000000,-0.006769;;, + 28;4;-0.999963, 0.000000, 0.000000,-0.008374;;, + 29;4;-0.999960, 0.000000, 0.000000,-0.008925;;, + 30;4;-0.999963, 0.000000, 0.000000,-0.008577;;, + 31;4;-0.999970, 0.000000, 0.000000,-0.007497;;, + 32;4;-0.999980, 0.000000, 0.000000,-0.005769;;, + 33;4;-0.999990, 0.000000, 0.000000,-0.003703;;, + 34;4;-0.999998, 0.000000, 0.000000,-0.001691;;, + 35;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 36;4;-0.999998, 0.000000,-0.000000, 0.001691;;, + 37;4;-0.999990, 0.000000,-0.000000, 0.003703;;, + 38;4;-0.999980, 0.000000,-0.000000, 0.005769;;, + 39;4;-0.999970, 0.000000,-0.000000, 0.007497;;, + 40;4;-0.999963, 0.000000,-0.000000, 0.008577;;, + 41;4;-0.999960, 0.000000,-0.000000, 0.008925;;, + 42;4;-0.999962, 0.000000,-0.000000, 0.008607;;, + 43;4;-0.999968, 0.000000,-0.000000, 0.007702;;, + 44;4;-0.999977, 0.000000,-0.000000, 0.006286;;, + 45;4;-0.999987, 0.000000,-0.000000, 0.004445;;, + 46;4;-0.999996, 0.000000,-0.000000, 0.002291;;, + 47;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 48;4;-0.999994, 0.000000, 0.000000,-0.002716;;, + 49;4;-0.999980, 0.000000, 0.000000,-0.005841;;, + 50;4;-0.999965, 0.000000, 0.000000,-0.008159;;, + 51;4;-0.999960, 0.000000, 0.000000,-0.008925;;, + 52;4;-0.999966, 0.000000, 0.000000,-0.008042;;, + 53;4;-0.999981, 0.000000, 0.000000,-0.005552;;, + 54;4;-0.999995, 0.000000, 0.000000,-0.002511;;, + 55;4;-1.000000, 0.000000, 0.000000,-0.000000;;, + 56;4;-0.999993, 0.000000, 0.000000, 0.002716;;, + 57;4;-0.999978, 0.000000, 0.000000, 0.005932;;, + 58;4;-0.999965, 0.000000, 0.000000, 0.008200;;, + 59;4;-0.999960, 0.000000, 0.000000, 0.008925;;, + 60;4;-0.999967, 0.000000, 0.000000, 0.007354;;, + 61;4;-0.999983, 0.000000, 0.000000, 0.003846;;, + 62;4;-0.999996, 0.000000, 0.000000, 0.000974;;, + 63;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 64;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 65;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 66;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 67;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 68;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 69;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 70;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 71;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 72;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 73;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 74;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 75;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 76;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 77;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 78;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 79;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 80;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 81;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 82;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 83;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 84;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 85;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 86;4;-1.000000, 0.000000, 0.000000, 0.000000;;, + 87;4;-1.000000, 0.000000,-0.000000, 0.000000;;, + 88;4;-0.997956, 0.004779,-0.000644, 0.000646;;, + 89;4;-0.991776, 0.019225,-0.002591, 0.002598;;, + 90;4;-0.981456, 0.043347,-0.005843, 0.005859;;, + 91;4;-0.967103, 0.076891,-0.010366, 0.010394;;, + 92;4;-0.948971, 0.119261,-0.016080, 0.016123;;, + 93;4;-0.927487, 0.169463,-0.022850, 0.022911;;, + 94;4;-0.903263, 0.226063,-0.030484, 0.030565;;, + 95;4;-0.877092, 0.287215,-0.038731, 0.038835;;, + 96;4;-0.849906, 0.350739,-0.047298, 0.047425;;, + 97;4;-0.822719, 0.414269,-0.055865, 0.056015;;, + 98;4;-0.796546, 0.475439,-0.064113, 0.064284;;, + 99;4;-0.772321, 0.532067,-0.071746, 0.071938;;, + 100;4;-0.750834, 0.582300,-0.078516, 0.078727;;, + 101;4;-0.732700, 0.624704,-0.084230, 0.084456;;, + 102;4;-0.718344, 0.658278,-0.088753, 0.088991;;, + 103;4;-0.708022, 0.682424,-0.092005, 0.092251;;, + 104;4;-0.701841, 0.696885,-0.093952, 0.094204;;, + 105;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 106;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 107;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 108;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 109;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 110;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 111;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 112;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 113;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 114;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 115;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 116;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 117;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 118;4;-0.699797, 0.701670,-0.094597, 0.094850;;, + 119;4;-0.699797, 0.701670,-0.094597, 0.094850;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3; 0.000000, 7.038587, 0.000000;;, + 1;3; 0.000000, 7.038587, 0.008884;;, + 2;3; 0.000000, 7.038587, 0.034735;;, + 3;3; 0.000000, 7.038587, 0.071888;;, + 4;3; 0.000000, 7.038587, 0.109036;;, + 5;3; 0.000000, 7.038587, 0.134877;;, + 6;3; 0.000000, 7.038587, 0.143756;;, + 7;3; 0.000000, 7.038587, 0.135124;;, + 8;3; 0.000000, 7.038587, 0.109000;;, + 9;3; 0.000000, 7.038587, 0.070590;;, + 10;3; 0.000000, 7.038587, 0.031200;;, + 11;3; 0.000000, 7.038587, 0.000000;;, + 12;3; 0.000000, 7.038587,-0.028065;;, + 13;3; 0.000000, 7.038587,-0.059510;;, + 14;3; 0.000000, 7.038587,-0.090452;;, + 15;3; 0.000000, 7.038587,-0.115539;;, + 16;3; 0.000000, 7.038587,-0.130891;;, + 17;3; 0.000000, 7.038587,-0.135770;;, + 18;3; 0.000000, 7.038587,-0.127383;;, + 19;3; 0.000000, 7.038587,-0.102975;;, + 20;3; 0.000000, 7.038587,-0.067887;;, + 21;3; 0.000000, 7.038587,-0.032797;;, + 22;3; 0.000000, 7.038587,-0.008387;;, + 23;3; 0.000000, 7.038587, 0.000000;;, + 24;3; 0.000000, 7.038587, 0.000000;;, + 25;3; 0.000000, 7.038587, 0.000000;;, + 26;3; 0.000000, 7.038587, 0.000000;;, + 27;3; 0.000000, 7.038587, 0.000000;;, + 28;3; 0.000000, 7.038587, 0.000000;;, + 29;3; 0.000000, 7.038587, 0.000000;;, + 30;3; 0.000000, 7.038587, 0.000000;;, + 31;3; 0.000000, 7.038587, 0.000000;;, + 32;3; 0.000000, 7.038587, 0.000000;;, + 33;3; 0.000000, 7.038587, 0.000000;;, + 34;3; 0.000000, 7.038587, 0.000000;;, + 35;3; 0.000000, 7.038587, 0.000000;;, + 36;3; 0.000000, 7.038587, 0.000000;;, + 37;3; 0.000000, 7.038587, 0.000000;;, + 38;3; 0.000000, 7.038587, 0.000000;;, + 39;3; 0.000000, 7.038587, 0.000000;;, + 40;3; 0.000000, 7.038587, 0.000000;;, + 41;3; 0.000000, 7.038587, 0.000000;;, + 42;3; 0.000000, 7.038587, 0.000000;;, + 43;3; 0.000000, 7.038587, 0.000000;;, + 44;3; 0.000000, 7.038587, 0.000000;;, + 45;3; 0.000000, 7.038587, 0.000000;;, + 46;3; 0.000000, 7.038587, 0.000000;;, + 47;3; 0.000000, 7.038587, 0.000000;;, + 48;3; 0.000000, 7.038587, 0.000000;;, + 49;3; 0.000000, 7.038587, 0.000000;;, + 50;3; 0.000000, 7.038587, 0.000000;;, + 51;3; 0.000000, 7.038587, 0.000000;;, + 52;3; 0.000000, 7.038587, 0.000000;;, + 53;3; 0.000000, 7.038587, 0.000000;;, + 54;3; 0.000000, 7.038587, 0.000000;;, + 55;3; 0.000000, 7.038587, 0.000000;;, + 56;3; 0.000000, 7.038587, 0.000000;;, + 57;3; 0.000000, 7.038587, 0.000000;;, + 58;3; 0.000000, 7.038587, 0.000000;;, + 59;3; 0.000000, 7.038587, 0.000000;;, + 60;3; 0.000000, 7.038587, 0.000000;;, + 61;3; 0.000000, 7.038587, 0.000000;;, + 62;3; 0.000000, 7.038587, 0.000000;;, + 63;3; 0.000000, 7.038587, 0.000000;;, + 64;3; 0.000000, 7.038587, 0.000000;;, + 65;3; 0.000000, 7.038587, 0.000000;;, + 66;3; 0.000000, 7.038587, 0.000000;;, + 67;3; 0.000000, 7.038587, 0.000000;;, + 68;3; 0.000000, 7.038587, 0.000000;;, + 69;3; 0.000000, 7.038587, 0.000000;;, + 70;3; 0.000000, 7.038587, 0.000000;;, + 71;3; 0.000000, 7.038587, 0.000000;;, + 72;3; 0.000000, 7.038587, 0.000000;;, + 73;3; 0.000000, 7.038587, 0.000000;;, + 74;3; 0.000000, 7.038587, 0.000000;;, + 75;3; 0.000000, 7.038587, 0.000000;;, + 76;3; 0.000000, 7.038587, 0.000000;;, + 77;3; 0.000000, 7.038587, 0.000000;;, + 78;3; 0.000000, 7.038587, 0.000000;;, + 79;3; 0.000000, 7.038587, 0.000000;;, + 80;3; 0.000000, 7.038587, 0.000000;;, + 81;3; 0.000000, 7.038587, 0.000000;;, + 82;3; 0.000000, 7.038587, 0.000000;;, + 83;3; 0.000000, 7.038587, 0.000000;;, + 84;3; 0.000000, 7.038587, 0.000000;;, + 85;3; 0.000000, 7.038587, 0.000000;;, + 86;3; 0.000000, 7.038587, 0.000000;;, + 87;3; 0.000000, 7.038587, 0.000000;;, + 88;3; 0.006552, 6.999159,-0.024612;;, + 89;3; 0.026357, 6.880946,-0.098769;;, + 90;3; 0.059422, 6.685266,-0.222165;;, + 91;3; 0.105397, 6.415384,-0.393189;;, + 92;3; 0.163463, 6.076896,-0.608599;;, + 93;3; 0.232256, 5.678032,-0.863258;;, + 94;3; 0.309814, 5.229783,-1.150010;;, + 95;3; 0.393609, 4.745754,-1.459770;;, + 96;3; 0.480658, 4.241712,-1.781895;;, + 97;3; 0.567724, 3.734810,-2.104816;;, + 98;3; 0.651565, 3.242593,-2.416846;;, + 99;3; 0.729193, 2.781924,-2.707014;;, + 100;3; 0.798069, 2.368016,-2.965768;;, + 101;3; 0.856221, 2.013717,-3.185424;;, + 102;3; 0.902273, 1.729120,-3.360346;;, + 103;3; 0.935400, 1.521481,-3.486865;;, + 104;3; 0.955244, 1.395404,-3.563043;;, + 105;3; 0.961810, 1.353196,-3.588362;;, + 106;3; 0.961810, 1.353196,-3.588362;;, + 107;3; 0.961810, 1.353196,-3.588362;;, + 108;3; 0.961810, 1.353196,-3.588362;;, + 109;3; 0.961810, 1.353196,-3.588362;;, + 110;3; 0.961810, 1.353196,-3.588362;;, + 111;3; 0.961810, 1.353196,-3.588362;;, + 112;3; 0.961810, 1.353196,-3.588362;;, + 113;3; 0.961810, 1.353196,-3.588362;;, + 114;3; 0.961810, 1.353196,-3.588362;;, + 115;3; 0.961810, 1.353196,-3.588362;;, + 116;3; 0.961810, 1.353196,-3.588362;;, + 117;3; 0.961810, 1.353196,-3.588362;;, + 118;3; 0.961810, 1.353196,-3.588362;;, + 119;3; 0.961810, 1.353196,-3.588362;;; + } + } + Animation { + {Zombie_Rig_Head} + AnimationKey { // Rotation + 0; + 120; + 0;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 1;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 2;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 3;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 4;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 5;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 6;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 7;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 8;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 9;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 10;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 11;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 12;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 13;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 14;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 15;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 16;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 17;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 18;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 19;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 20;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 21;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 22;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 23;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 24;4; 0.000000,-0.001676, 0.999977, 0.000000;;, + 25;4; 0.000000,-0.006553, 0.999911, 0.000000;;, + 26;4; 0.000000,-0.013563, 0.999816, 0.000000;;, + 27;4; 0.000000,-0.020574, 0.999721, 0.000000;;, + 28;4; 0.000000,-0.025451, 0.999655, 0.000000;;, + 29;4; 0.000000,-0.027127, 0.999632, 0.000000;;, + 30;4; 0.000000,-0.026069, 0.999655, 0.000000;;, + 31;4; 0.000000,-0.022786, 0.999721, 0.000000;;, + 32;4; 0.000000,-0.017535, 0.999816, 0.000000;;, + 33;4; 0.000000,-0.011254, 0.999911, 0.000000;;, + 34;4; 0.000000,-0.005139, 0.999977, 0.000000;;, + 35;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 36;4; 0.000000, 0.005139, 0.999977, 0.000000;;, + 37;4; 0.000000, 0.011254, 0.999911, 0.000000;;, + 38;4; 0.000000, 0.017535, 0.999816, 0.000000;;, + 39;4; 0.000000, 0.022786, 0.999721, 0.000000;;, + 40;4; 0.000000, 0.026069, 0.999655, 0.000000;;, + 41;4; 0.000000, 0.027127, 0.999632, 0.000000;;, + 42;4; 0.000000, 0.026160, 0.999653, 0.000000;;, + 43;4; 0.000000, 0.023408, 0.999709, 0.000000;;, + 44;4; 0.000000, 0.019104, 0.999789, 0.000000;;, + 45;4; 0.000000, 0.013509, 0.999880, 0.000000;;, + 46;4; 0.000000, 0.006963, 0.999961, 0.000000;;, + 47;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 48;4; 0.000000,-0.008255, 0.999948, 0.000000;;, + 49;4; 0.000000,-0.017752, 0.999812, 0.000000;;, + 50;4; 0.000000,-0.024799, 0.999681, 0.000000;;, + 51;4; 0.000000,-0.027127, 0.999632, 0.000000;;, + 52;4; 0.000000,-0.024440, 0.999688, 0.000000;;, + 53;4; 0.000000,-0.016875, 0.999827, 0.000000;;, + 54;4; 0.000000,-0.007632, 0.999954, 0.000000;;, + 55;4; 0.000000,-0.000000, 1.000000, 0.000000;;, + 56;4; 0.000000, 0.008253, 0.999940, 0.000000;;, + 57;4; 0.000000, 0.018028, 0.999798, 0.000000;;, + 58;4; 0.000000, 0.024923, 0.999675, 0.000000;;, + 59;4; 0.000000, 0.027127, 0.999632, 0.000000;;, + 60;4; 0.000000, 0.022351, 0.999697, 0.000000;;, + 61;4; 0.000000, 0.011688, 0.999841, 0.000000;;, + 62;4; 0.000000, 0.002960, 0.999960, 0.000000;;, + 63;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 64;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 65;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 66;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 67;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 68;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 69;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 70;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 71;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 72;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 73;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 74;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 75;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 76;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 77;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 78;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 79;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 80;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 81;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 82;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 83;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 84;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 85;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 86;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 87;4; 0.000000, 0.000000, 1.000000, 0.000000;;, + 88;4; 0.000016, 0.002123, 0.999700,-0.000075;;, + 89;4; 0.000067, 0.008859, 0.998746,-0.000314;;, + 90;4; 0.000153, 0.020283, 0.997129,-0.000718;;, + 91;4; 0.000267, 0.035464, 0.994980,-0.001255;;, + 92;4; 0.000396, 0.052562, 0.992560,-0.001861;;, + 93;4; 0.000525, 0.069635, 0.990144,-0.002465;;, + 94;4; 0.000643, 0.085366, 0.987918,-0.003022;;, + 95;4; 0.000767, 0.101835, 0.985588,-0.003605;;, + 96;4; 0.000915, 0.121487, 0.982808,-0.004300;;, + 97;4; 0.001084, 0.143871, 0.979641,-0.005092;;, + 98;4; 0.001267, 0.168123, 0.976210,-0.005950;;, + 99;4; 0.001453, 0.192939, 0.972700,-0.006829;;, + 100;4; 0.001632, 0.216713, 0.969336,-0.007670;;, + 101;4; 0.001791, 0.237826, 0.966350,-0.008417;;, + 102;4; 0.001921, 0.254971, 0.963925,-0.009023;;, + 103;4; 0.002014, 0.267352, 0.962173,-0.009461;;, + 104;4; 0.002069, 0.274682, 0.961137,-0.009721;;, + 105;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 106;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 107;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 108;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 109;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 110;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 111;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 112;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 113;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 114;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 115;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 116;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 117;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 118;4; 0.002087, 0.277060, 0.960801,-0.009805;;, + 119;4; 0.002087, 0.277060, 0.960801,-0.009805;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3; 0.000000, 7.072505,-0.000000;;, + 1;3; 0.000000, 7.072505,-0.000000;;, + 2;3;-0.000000, 7.072505,-0.000000;;, + 3;3; 0.000000, 7.072505, 0.000000;;, + 4;3;-0.000000, 7.072505,-0.000000;;, + 5;3;-0.000000, 7.072505,-0.000000;;, + 6;3;-0.000000, 7.072504, 0.000000;;, + 7;3; 0.000000, 7.072505,-0.000000;;, + 8;3;-0.000000, 7.072505, 0.000000;;, + 9;3;-0.000000, 7.072505, 0.000000;;, + 10;3; 0.000000, 7.072505,-0.000000;;, + 11;3; 0.000000, 7.072505,-0.000000;;, + 12;3; 0.000000, 7.072505, 0.000000;;, + 13;3; 0.000000, 7.072505, 0.000000;;, + 14;3; 0.000000, 7.072505, 0.000000;;, + 15;3; 0.000000, 7.072505, 0.000000;;, + 16;3;-0.000000, 7.072505, 0.000000;;, + 17;3; 0.000000, 7.072505, 0.000000;;, + 18;3; 0.000000, 7.072505, 0.000000;;, + 19;3; 0.000000, 7.072504,-0.000000;;, + 20;3; 0.000000, 7.072505, 0.000000;;, + 21;3; 0.000000, 7.072505,-0.000000;;, + 22;3; 0.000000, 7.072505,-0.000000;;, + 23;3; 0.000000, 7.072505,-0.000000;;, + 24;3;-0.000000, 7.072505,-0.000000;;, + 25;3;-0.000000, 7.072505,-0.000000;;, + 26;3; 0.000000, 7.072504, 0.000000;;, + 27;3;-0.000000, 7.072505,-0.000000;;, + 28;3; 0.000000, 7.072505,-0.000000;;, + 29;3; 0.000000, 7.072505,-0.000000;;, + 30;3; 0.000000, 7.072505,-0.000000;;, + 31;3;-0.000000, 7.072504,-0.000000;;, + 32;3;-0.000000, 7.072505,-0.000000;;, + 33;3; 0.000000, 7.072505, 0.000000;;, + 34;3;-0.000000, 7.072505,-0.000000;;, + 35;3; 0.000000, 7.072505,-0.000000;;, + 36;3; 0.000000, 7.072505,-0.000000;;, + 37;3;-0.000000, 7.072505,-0.000000;;, + 38;3; 0.000000, 7.072505,-0.000000;;, + 39;3; 0.000000, 7.072504,-0.000000;;, + 40;3;-0.000000, 7.072505,-0.000000;;, + 41;3;-0.000000, 7.072505,-0.000000;;, + 42;3; 0.000000, 7.072505,-0.000000;;, + 43;3; 0.000000, 7.072505,-0.000000;;, + 44;3; 0.000000, 7.072505, 0.000000;;, + 45;3; 0.000000, 7.072505,-0.000000;;, + 46;3;-0.000000, 7.072505,-0.000000;;, + 47;3;-0.000000, 7.072505,-0.000000;;, + 48;3; 0.000000, 7.072505, 0.000000;;, + 49;3; 0.000000, 7.072505, 0.000000;;, + 50;3; 0.000000, 7.072505,-0.000000;;, + 51;3; 0.000000, 7.072505, 0.000000;;, + 52;3;-0.000000, 7.072505,-0.000000;;, + 53;3; 0.000000, 7.072505, 0.000000;;, + 54;3;-0.000000, 7.072505,-0.000000;;, + 55;3;-0.000000, 7.072505,-0.000000;;, + 56;3;-0.000000, 7.072506, 0.000000;;, + 57;3;-0.000000, 7.072505,-0.000000;;, + 58;3; 0.000000, 7.072506,-0.000000;;, + 59;3;-0.000000, 7.072505, 0.000000;;, + 60;3;-0.000000, 7.072506,-0.000000;;, + 61;3; 0.000000, 7.072505, 0.000000;;, + 62;3;-0.000000, 7.072505, 0.000000;;, + 63;3; 0.000000, 7.072505,-0.000000;;, + 64;3; 0.000000, 8.139791, 0.000000;;, + 65;3; 0.000000, 8.077065, 0.000000;;, + 66;3; 0.000000, 7.961283, 0.000000;;, + 67;3; 0.000000, 7.825880, 0.000000;;, + 68;3; 0.000000, 7.681700, 0.000000;;, + 69;3; 0.000000, 7.534804, 0.000000;;, + 70;3; 0.000000, 7.390191, 0.000000;;, + 71;3; 0.000000, 7.253890, 0.000000;;, + 72;3; 0.000000, 7.136694, 0.000000;;, + 73;3; 0.000000, 7.072505,-0.000000;;, + 74;3; 0.000000, 7.072505,-0.000000;;, + 75;3; 0.000000, 7.072505,-0.000000;;, + 76;3; 0.000000, 7.072505,-0.000000;;, + 77;3; 0.000000, 7.072505,-0.000000;;, + 78;3; 0.000000, 7.072505,-0.000000;;, + 79;3; 0.000000, 7.072505,-0.000000;;, + 80;3; 0.000000, 7.072505,-0.000000;;, + 81;3; 0.000000, 7.072505,-0.000000;;, + 82;3; 0.000000, 7.072505,-0.000000;;, + 83;3; 0.000000, 7.072505,-0.000000;;, + 84;3; 0.000000, 7.072505,-0.000000;;, + 85;3; 0.000000, 7.072505,-0.000000;;, + 86;3; 0.000000, 7.072505,-0.000000;;, + 87;3; 0.000000, 7.072505,-0.000000;;, + 88;3; 0.076748, 7.236495,-0.005895;;, + 89;3; 0.302640, 7.711771,-0.024680;;, + 90;3; 0.645001, 8.420501,-0.056711;;, + 91;3; 1.032038, 9.212862,-0.099601;;, + 92;3; 1.373232, 9.909703,-0.148379;;, + 93;3; 1.597767,10.370810,-0.197672;;, + 94;3; 1.673938,10.528623,-0.243736;;, + 95;3; 1.656881,10.532469,-0.292594;;, + 96;3; 1.605539,10.544540,-0.351323;;, + 97;3; 1.521522,10.565746,-0.418562;;, + 98;3; 1.409760,10.597163,-0.491685;;, + 99;3; 1.279082,10.640050,-0.566734;;, + 100;3; 1.141642,10.695830,-0.638812;;, + 101;3; 1.010925,10.765886,-0.702965;;, + 102;3; 0.899098,10.850590,-0.755167;;, + 103;3; 0.815013,10.944368,-0.792933;;, + 104;3; 0.763622,10.997724,-0.815328;;, + 105;3; 0.746547,10.398238,-0.822605;;, + 106;3; 0.746547,10.398238,-0.822605;;, + 107;3; 0.746547,10.398238,-0.822605;;, + 108;3; 0.746547,10.398238,-0.822605;;, + 109;3; 0.746547,10.398238,-0.822605;;, + 110;3; 0.746547,10.398238,-0.822605;;, + 111;3; 0.746547,10.398238,-0.822605;;, + 112;3; 0.746547,10.398238,-0.822605;;, + 113;3; 0.746547,10.398238,-0.822605;;, + 114;3; 0.746547,10.398238,-0.822605;;, + 115;3; 0.746547,10.398238,-0.822605;;, + 116;3; 0.746547,10.398238,-0.822605;;, + 117;3; 0.746547,10.398238,-0.822605;;, + 118;3; 0.746547,10.398238,-0.822605;;, + 119;3; 0.746547,10.398238,-0.822605;;; + } + } + Animation { + {Zombie_Rig_Hand_R} + AnimationKey { // Rotation + 0; + 120; + 0;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 1;4;-0.056704, 0.057267,-0.707372, 0.702190;;, + 2;4;-0.058939, 0.059485,-0.707131, 0.701947;;, + 3;4;-0.062603, 0.063122,-0.706735, 0.701549;;, + 4;4;-0.067485, 0.067968,-0.706207, 0.701018;;, + 5;4;-0.073200, 0.073641,-0.705590, 0.700398;;, + 6;4;-0.079212, 0.079609,-0.704940, 0.699744;;, + 7;4;-0.084927, 0.085281,-0.704323, 0.699124;;, + 8;4;-0.089809, 0.090127,-0.703795, 0.698593;;, + 9;4;-0.093473, 0.093764,-0.703399, 0.698195;;, + 10;4;-0.095707, 0.095983,-0.703158, 0.697952;;, + 11;4;-0.096449, 0.096718,-0.703078, 0.697872;;, + 12;4;-0.095831, 0.096096,-0.703145, 0.697940;;, + 13;4;-0.093966, 0.094220,-0.703347, 0.698145;;, + 14;4;-0.090889, 0.091126,-0.703680, 0.698483;;, + 15;4;-0.086734, 0.086953,-0.704129, 0.698939;;, + 16;4;-0.081754, 0.081959,-0.704668, 0.699485;;, + 17;4;-0.076322, 0.076521,-0.705256, 0.700079;;, + 18;4;-0.070882, 0.071090,-0.705844, 0.700673;;, + 19;4;-0.065880, 0.066116,-0.706385, 0.701218;;, + 20;4;-0.061689, 0.061975,-0.706837, 0.701671;;, + 21;4;-0.058565, 0.058923,-0.707174, 0.702006;;, + 22;4;-0.056644, 0.057097,-0.707380, 0.702207;;, + 23;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 24;4;-0.055731, 0.056747,-0.709605, 0.699989;;, + 25;4;-0.055183, 0.057262,-0.715861, 0.693358;;, + 26;4;-0.054432, 0.057969,-0.724851, 0.683829;;, + 27;4;-0.053696, 0.058662,-0.733839, 0.674301;;, + 28;4;-0.053190, 0.059140,-0.740091, 0.667674;;, + 29;4;-0.053017, 0.059303,-0.742239, 0.665397;;, + 30;4;-0.053139, 0.059192,-0.740801, 0.666959;;, + 31;4;-0.053514, 0.058847,-0.736381, 0.671740;;, + 32;4;-0.054104, 0.058301,-0.729415, 0.679230;;, + 33;4;-0.054795, 0.057655,-0.721264, 0.687914;;, + 34;4;-0.055445, 0.057037,-0.713585, 0.695979;;, + 35;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 36;4;-0.056446, 0.056045,-0.701786, 0.707915;;, + 37;4;-0.056991, 0.055487,-0.695466, 0.714098;;, + 38;4;-0.057531, 0.054928,-0.689267, 0.720077;;, + 39;4;-0.057971, 0.054468,-0.684254, 0.724862;;, + 40;4;-0.058241, 0.054184,-0.681192, 0.727762;;, + 41;4;-0.058327, 0.054093,-0.680221, 0.728678;;, + 42;4;-0.058248, 0.054176,-0.681108, 0.727842;;, + 43;4;-0.058022, 0.054414,-0.683669, 0.725418;;, + 44;4;-0.057663, 0.054790,-0.687755, 0.721526;;, + 45;4;-0.057187, 0.055285,-0.693212, 0.716280;;, + 46;4;-0.056611, 0.055877,-0.699863, 0.709807;;, + 47;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 48;4;-0.055117, 0.057351,-0.717460, 0.691928;;, + 49;4;-0.054080, 0.058324,-0.729701, 0.678924;;, + 50;4;-0.053284, 0.059058,-0.739085, 0.668818;;, + 51;4;-0.053017, 0.059303,-0.742240, 0.665397;;, + 52;4;-0.053325, 0.059021,-0.738602, 0.669341;;, + 53;4;-0.054178, 0.058233,-0.728549, 0.680157;;, + 54;4;-0.055183, 0.057288,-0.716678, 0.692748;;, + 55;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 56;4;-0.056721, 0.055763,-0.698609, 0.711011;;, + 57;4;-0.057566, 0.054889,-0.688897, 0.720399;;, + 58;4;-0.058145, 0.054284,-0.682293, 0.726710;;, + 59;4;-0.058327, 0.054093,-0.680221, 0.728678;;, + 60;4;-0.057911, 0.054522,-0.685015, 0.724029;;, + 61;4;-0.056982, 0.055480,-0.695719, 0.713649;;, + 62;4;-0.056221, 0.056265,-0.704481, 0.705152;;, + 63;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 64;4; 0.038369,-0.037119,-0.708624, 0.703563;;, + 65;4; 0.033323,-0.032109,-0.708561, 0.703494;;, + 66;4; 0.023472,-0.022330,-0.708438, 0.703358;;, + 67;4; 0.011644,-0.010587,-0.708291, 0.703196;;, + 68;4;-0.001137, 0.002101,-0.708132, 0.703021;;, + 69;4;-0.014278, 0.015148,-0.707969, 0.702841;;, + 70;4;-0.027293, 0.028069,-0.707808, 0.702662;;, + 71;4;-0.039603, 0.040290,-0.707655, 0.702494;;, + 72;4;-0.050194, 0.050804,-0.707524, 0.702349;;, + 73;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 74;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 75;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 76;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 77;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 78;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 79;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 80;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 81;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 82;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 83;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 84;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 85;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 86;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 87;4;-0.055963, 0.056531,-0.707452, 0.702270;;, + 88;4;-0.053260, 0.051925,-0.704933, 0.701718;;, + 89;4;-0.045087, 0.038003,-0.697318, 0.700047;;, + 90;4;-0.031441, 0.014755,-0.684600, 0.697257;;, + 91;4;-0.012467,-0.017574,-0.666913, 0.693377;;, + 92;4; 0.011499,-0.058411,-0.644568, 0.688475;;, + 93;4; 0.039894,-0.106796,-0.618093, 0.682667;;, + 94;4; 0.071908,-0.161349,-0.588241, 0.676119;;, + 95;4; 0.106495,-0.220289,-0.555988, 0.669044;;, + 96;4; 0.142425,-0.281514,-0.522486, 0.661694;;, + 97;4; 0.178361,-0.342745,-0.488983, 0.654345;;, + 98;4; 0.212963,-0.401700,-0.456729, 0.647269;;, + 99;4; 0.244998,-0.456275,-0.426876, 0.640720;;, + 100;4; 0.273418,-0.504687,-0.400398, 0.634911;;, + 101;4; 0.297410,-0.545551,-0.378052, 0.630008;;, + 102;4; 0.316408,-0.577905,-0.360363, 0.626127;;, + 103;4; 0.330073,-0.601174,-0.347643, 0.623336;;, + 104;4; 0.338257,-0.615109,-0.340027, 0.621665;;, + 105;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 106;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 107;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 108;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 109;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 110;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 111;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 112;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 113;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 114;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 115;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 116;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 117;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 118;4; 0.340965,-0.619719,-0.337507, 0.621112;;, + 119;4; 0.340965,-0.619719,-0.337507, 0.621112;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3; 3.054465, 5.973932,-0.325399;;, + 1;3; 3.054465, 5.973934,-0.325399;;, + 2;3; 3.054465, 5.973932,-0.325399;;, + 3;3; 3.054465, 5.973932,-0.325399;;, + 4;3; 3.054465, 5.973932,-0.325399;;, + 5;3; 3.054465, 5.973931,-0.325399;;, + 6;3; 3.054465, 5.973933,-0.325399;;, + 7;3; 3.054465, 5.973933,-0.325399;;, + 8;3; 3.054465, 5.973933,-0.325399;;, + 9;3; 3.054465, 5.973932,-0.325399;;, + 10;3; 3.054465, 5.973932,-0.325399;;, + 11;3; 3.054465, 5.973932,-0.325399;;, + 12;3; 3.054465, 5.973932,-0.325399;;, + 13;3; 3.054465, 5.973933,-0.325399;;, + 14;3; 3.054465, 5.973933,-0.325399;;, + 15;3; 3.054465, 5.973932,-0.325399;;, + 16;3; 3.054465, 5.973932,-0.325399;;, + 17;3; 3.054465, 5.973932,-0.325399;;, + 18;3; 3.054465, 5.973932,-0.325399;;, + 19;3; 3.054465, 5.973932,-0.325399;;, + 20;3; 3.054465, 5.973933,-0.325399;;, + 21;3; 3.054465, 5.973933,-0.325399;;, + 22;3; 3.054465, 5.973933,-0.325399;;, + 23;3; 3.054465, 5.973932,-0.325399;;, + 24;3; 3.054465, 5.973933,-0.325399;;, + 25;3; 3.054465, 5.973932,-0.325399;;, + 26;3; 3.054465, 5.973933,-0.325399;;, + 27;3; 3.054465, 5.973933,-0.325399;;, + 28;3; 3.054465, 5.973933,-0.325399;;, + 29;3; 3.054465, 5.973932,-0.325399;;, + 30;3; 3.054465, 5.973931,-0.325399;;, + 31;3; 3.054464, 5.973932,-0.325399;;, + 32;3; 3.054464, 5.973932,-0.325399;;, + 33;3; 3.054465, 5.973932,-0.325399;;, + 34;3; 3.054465, 5.973932,-0.325399;;, + 35;3; 3.054465, 5.973932,-0.325399;;, + 36;3; 3.054465, 5.973932,-0.325399;;, + 37;3; 3.054465, 5.973932,-0.325399;;, + 38;3; 3.054465, 5.973932,-0.325399;;, + 39;3; 3.054465, 5.973933,-0.325399;;, + 40;3; 3.054465, 5.973933,-0.325399;;, + 41;3; 3.054464, 5.973932,-0.325399;;, + 42;3; 3.054465, 5.973933,-0.325399;;, + 43;3; 3.054465, 5.973933,-0.325399;;, + 44;3; 3.054465, 5.973931,-0.325399;;, + 45;3; 3.054465, 5.973932,-0.325399;;, + 46;3; 3.054465, 5.973933,-0.325399;;, + 47;3; 3.054465, 5.973932,-0.325399;;, + 48;3; 3.054465, 5.973933,-0.325399;;, + 49;3; 3.054464, 5.973932,-0.325399;;, + 50;3; 3.054464, 5.973933,-0.325399;;, + 51;3; 3.054465, 5.973932,-0.325399;;, + 52;3; 3.054465, 5.973934,-0.325399;;, + 53;3; 3.054465, 5.973932,-0.325399;;, + 54;3; 3.054465, 5.973933,-0.325399;;, + 55;3; 3.054465, 5.973932,-0.325399;;, + 56;3; 3.054465, 5.973932,-0.325399;;, + 57;3; 3.054465, 5.973932,-0.325399;;, + 58;3; 3.054465, 5.973932,-0.325399;;, + 59;3; 3.054465, 5.973932,-0.325399;;, + 60;3; 3.054465, 5.973932,-0.325399;;, + 61;3; 3.054465, 5.973932,-0.325399;;, + 62;3; 3.054465, 5.973932,-0.325399;;, + 63;3; 3.054465, 5.973932,-0.325399;;, + 64;3; 3.647402, 5.973932,-0.325399;;, + 65;3; 3.614733, 5.973931,-0.325242;;, + 66;3; 3.552049, 5.973929,-0.325115;;, + 67;3; 3.477409, 5.973929,-0.325067;;, + 68;3; 3.397135, 5.973929,-0.325077;;, + 69;3; 3.314839, 5.973930,-0.325128;;, + 70;3; 3.233493, 5.973930,-0.325204;;, + 71;3; 3.156641, 5.973931,-0.325291;;, + 72;3; 3.090535, 5.973932,-0.325367;;, + 73;3; 3.054465, 5.973932,-0.325399;;, + 74;3; 3.054465, 5.973932,-0.325399;;, + 75;3; 3.054465, 5.973932,-0.325399;;, + 76;3; 3.054465, 5.973932,-0.325399;;, + 77;3; 3.054465, 5.973932,-0.325399;;, + 78;3; 3.054465, 5.973932,-0.325399;;, + 79;3; 3.054465, 5.973932,-0.325399;;, + 80;3; 3.054465, 5.973932,-0.325399;;, + 81;3; 3.054465, 5.973932,-0.325399;;, + 82;3; 3.054465, 5.973932,-0.325399;;, + 83;3; 3.054465, 5.973932,-0.325399;;, + 84;3; 3.054465, 5.973932,-0.325399;;, + 85;3; 3.054465, 5.973932,-0.325399;;, + 86;3; 3.054465, 5.973932,-0.325399;;, + 87;3; 3.054465, 5.973932,-0.325399;;, + 88;3; 3.054465, 5.973932,-0.325399;;, + 89;3; 3.054465, 5.973932,-0.325399;;, + 90;3; 3.054465, 5.973932,-0.325399;;, + 91;3; 3.054465, 5.973932,-0.325399;;, + 92;3; 3.054465, 5.973932,-0.325399;;, + 93;3; 3.054465, 5.973933,-0.325399;;, + 94;3; 3.054465, 5.973933,-0.325398;;, + 95;3; 3.054465, 5.973933,-0.325399;;, + 96;3; 3.054464, 5.973934,-0.325398;;, + 97;3; 3.054465, 5.973932,-0.325399;;, + 98;3; 3.054464, 5.973932,-0.325399;;, + 99;3; 3.054464, 5.973931,-0.325398;;, + 100;3; 3.054465, 5.973932,-0.325399;;, + 101;3; 3.054465, 5.973933,-0.325399;;, + 102;3; 3.054464, 5.973932,-0.325399;;, + 103;3; 3.054465, 5.973933,-0.325399;;, + 104;3; 3.054465, 5.973932,-0.325399;;, + 105;3; 3.054465, 5.973932,-0.325399;;, + 106;3; 3.054465, 5.973932,-0.325399;;, + 107;3; 3.054465, 5.973932,-0.325399;;, + 108;3; 3.054465, 5.973932,-0.325399;;, + 109;3; 3.054465, 5.973932,-0.325399;;, + 110;3; 3.054465, 5.973932,-0.325399;;, + 111;3; 3.054465, 5.973932,-0.325399;;, + 112;3; 3.054465, 5.973932,-0.325399;;, + 113;3; 3.054465, 5.973932,-0.325399;;, + 114;3; 3.054465, 5.973932,-0.325399;;, + 115;3; 3.054465, 5.973932,-0.325399;;, + 116;3; 3.054465, 5.973932,-0.325399;;, + 117;3; 3.054465, 5.973932,-0.325399;;, + 118;3; 3.054465, 5.973932,-0.325399;;, + 119;3; 3.054465, 5.973932,-0.325399;;; + } + } + Animation { + {Zombie_Rig_Hand_L} + AnimationKey { // Rotation + 0; + 120; + 0;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 1;4;-0.060165, 0.060543, 0.707155,-0.701850;;, + 2;4;-0.062296, 0.062658, 0.706917,-0.701611;;, + 3;4;-0.065790, 0.066126, 0.706526,-0.701220;;, + 4;4;-0.070446, 0.070747, 0.706006,-0.700698;;, + 5;4;-0.075896, 0.076155, 0.705397,-0.700087;;, + 6;4;-0.081630, 0.081846, 0.704757,-0.699445;;, + 7;4;-0.087080, 0.087255, 0.704148,-0.698834;;, + 8;4;-0.091736, 0.091876, 0.703628,-0.698313;;, + 9;4;-0.095230, 0.095343, 0.703238,-0.697921;;, + 10;4;-0.097361, 0.097459, 0.703000,-0.697682;;, + 11;4;-0.098068, 0.098160, 0.702921,-0.697603;;, + 12;4;-0.097474, 0.097571, 0.702988,-0.697669;;, + 13;4;-0.095683, 0.095793, 0.703190,-0.697868;;, + 14;4;-0.092730, 0.092861, 0.703523,-0.698196;;, + 15;4;-0.088743, 0.088904, 0.703972,-0.698639;;, + 16;4;-0.083969, 0.084166, 0.704509,-0.699170;;, + 17;4;-0.078766, 0.079001, 0.705094,-0.699749;;, + 18;4;-0.073563, 0.073836, 0.705678,-0.700330;;, + 19;4;-0.068788, 0.069098, 0.706212,-0.700864;;, + 20;4;-0.064801, 0.065141, 0.706656,-0.701312;;, + 21;4;-0.061846, 0.062209, 0.706982,-0.701647;;, + 22;4;-0.060053, 0.060430, 0.707176,-0.701854;;, + 23;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 24;4;-0.059595, 0.059698, 0.705544,-0.703569;;, + 25;4;-0.059996, 0.059283, 0.700644,-0.708321;;, + 26;4;-0.060574, 0.058687, 0.693605,-0.715148;;, + 27;4;-0.061153, 0.058091, 0.686568,-0.721973;;, + 28;4;-0.061555, 0.057676, 0.681674,-0.726720;;, + 29;4;-0.061694, 0.057534, 0.679993,-0.728350;;, + 30;4;-0.061612, 0.057620, 0.680965,-0.727434;;, + 31;4;-0.061356, 0.057890, 0.684028,-0.724532;;, + 32;4;-0.060940, 0.058326, 0.689042,-0.719745;;, + 33;4;-0.060429, 0.058856, 0.695243,-0.713763;;, + 34;4;-0.059914, 0.059383, 0.701565,-0.707577;;, + 35;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 36;4;-0.058968, 0.060316, 0.713369,-0.695635;;, + 37;4;-0.058354, 0.060894, 0.721050,-0.687567;;, + 38;4;-0.057702, 0.061497, 0.729204,-0.678879;;, + 39;4;-0.057144, 0.062006, 0.736172,-0.671387;;, + 40;4;-0.056790, 0.062327, 0.740593,-0.666603;;, + 41;4;-0.056675, 0.062431, 0.742032,-0.665040;;, + 42;4;-0.056780, 0.062336, 0.740717,-0.666469;;, + 43;4;-0.057078, 0.062067, 0.737006,-0.670486;;, + 44;4;-0.057537, 0.061649, 0.731272,-0.676661;;, + 45;4;-0.058122, 0.061110, 0.723951,-0.684488;;, + 46;4;-0.058788, 0.060487, 0.715627,-0.693279;;, + 47;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 48;4;-0.060179, 0.059113, 0.698300,-0.710784;;, + 49;4;-0.060958, 0.058308, 0.688832,-0.719947;;, + 50;4;-0.061514, 0.057724, 0.682142,-0.726321;;, + 51;4;-0.061694, 0.057534, 0.679992,-0.728350;;, + 52;4;-0.061486, 0.057754, 0.682476,-0.726004;;, + 53;4;-0.060887, 0.058381, 0.689682,-0.719131;;, + 54;4;-0.060127, 0.059167, 0.698945,-0.710153;;, + 55;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 56;4;-0.058652, 0.060612, 0.717319,-0.691468;;, + 57;4;-0.057642, 0.061548, 0.729949,-0.678038;;, + 58;4;-0.056912, 0.062216, 0.739080,-0.668228;;, + 59;4;-0.056675, 0.062431, 0.742032,-0.665040;;, + 60;4;-0.057165, 0.061975, 0.735906,-0.671534;;, + 61;4;-0.058259, 0.060957, 0.722228,-0.686034;;, + 62;4;-0.059154, 0.060124, 0.711031,-0.697904;;, + 63;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 64;4; 0.029798,-0.028752, 0.709103,-0.703888;;, + 65;4; 0.025024,-0.024013, 0.709002,-0.703783;;, + 66;4; 0.015704,-0.014763, 0.708807,-0.703578;;, + 67;4; 0.004513,-0.003654, 0.708572,-0.703332;;, + 68;4;-0.007580, 0.008349, 0.708319,-0.703067;;, + 69;4;-0.020015, 0.020691, 0.708059,-0.702794;;, + 70;4;-0.032330, 0.032915, 0.707801,-0.702524;;, + 71;4;-0.043978, 0.044476, 0.707557,-0.702269;;, + 72;4;-0.053999, 0.054423, 0.707348,-0.702049;;, + 73;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 74;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 75;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 76;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 77;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 78;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 79;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 80;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 81;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 82;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 83;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 84;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 85;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 86;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 87;4;-0.059458, 0.059841, 0.707234,-0.701929;;, + 88;4;-0.055055, 0.056741, 0.706398,-0.699852;;, + 89;4;-0.041745, 0.047372, 0.703874,-0.693570;;, + 90;4;-0.019520, 0.031727, 0.699657,-0.683081;;, + 91;4; 0.011386, 0.009973, 0.693793,-0.668492;;, + 92;4; 0.050425,-0.017504, 0.686385,-0.650062;;, + 93;4; 0.096680,-0.050058, 0.677608,-0.628225;;, + 94;4; 0.148830,-0.086762, 0.667711,-0.603602;;, + 95;4; 0.205174,-0.126417, 0.657018,-0.577000;;, + 96;4; 0.263704,-0.167611, 0.645911,-0.549367;;, + 97;4; 0.322239,-0.208811, 0.634803,-0.521733;;, + 98;4; 0.378599,-0.248482, 0.624110,-0.495130;;, + 99;4; 0.430773,-0.285209, 0.614212,-0.470507;;, + 100;4; 0.477056,-0.317791, 0.605434,-0.448668;;, + 101;4; 0.516124,-0.345297, 0.598025,-0.430238;;, + 102;4; 0.547056,-0.367077, 0.592161,-0.415648;;, + 103;4; 0.569302,-0.382742, 0.587944,-0.405157;;, + 104;4; 0.582625,-0.392125, 0.585418,-0.398876;;, + 105;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 106;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 107;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 108;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 109;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 110;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 111;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 112;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 113;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 114;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 115;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 116;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 117;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 118;4; 0.587033,-0.395229, 0.584583,-0.396798;;, + 119;4; 0.587033,-0.395229, 0.584583,-0.396798;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3;-2.916781, 5.977198,-0.441669;;, + 1;3;-2.916781, 5.977199,-0.441669;;, + 2;3;-2.916781, 5.977198,-0.441669;;, + 3;3;-2.916781, 5.977198,-0.441669;;, + 4;3;-2.916781, 5.977197,-0.441669;;, + 5;3;-2.916781, 5.977198,-0.441669;;, + 6;3;-2.916781, 5.977198,-0.441669;;, + 7;3;-2.916781, 5.977198,-0.441669;;, + 8;3;-2.916781, 5.977198,-0.441669;;, + 9;3;-2.916781, 5.977198,-0.441669;;, + 10;3;-2.916781, 5.977198,-0.441669;;, + 11;3;-2.916781, 5.977198,-0.441669;;, + 12;3;-2.916781, 5.977198,-0.441669;;, + 13;3;-2.916781, 5.977197,-0.441669;;, + 14;3;-2.916781, 5.977198,-0.441669;;, + 15;3;-2.916781, 5.977199,-0.441669;;, + 16;3;-2.916781, 5.977198,-0.441669;;, + 17;3;-2.916781, 5.977197,-0.441669;;, + 18;3;-2.916781, 5.977197,-0.441669;;, + 19;3;-2.916781, 5.977198,-0.441669;;, + 20;3;-2.916781, 5.977198,-0.441669;;, + 21;3;-2.916781, 5.977197,-0.441669;;, + 22;3;-2.916781, 5.977198,-0.441669;;, + 23;3;-2.916781, 5.977198,-0.441669;;, + 24;3;-2.916781, 5.977198,-0.441669;;, + 25;3;-2.916781, 5.977197,-0.441669;;, + 26;3;-2.916781, 5.977198,-0.441669;;, + 27;3;-2.916781, 5.977198,-0.441669;;, + 28;3;-2.916781, 5.977197,-0.441669;;, + 29;3;-2.916781, 5.977198,-0.441669;;, + 30;3;-2.916781, 5.977197,-0.441669;;, + 31;3;-2.916781, 5.977198,-0.441669;;, + 32;3;-2.916781, 5.977197,-0.441669;;, + 33;3;-2.916781, 5.977198,-0.441669;;, + 34;3;-2.916781, 5.977198,-0.441669;;, + 35;3;-2.916781, 5.977198,-0.441669;;, + 36;3;-2.916781, 5.977197,-0.441669;;, + 37;3;-2.916781, 5.977198,-0.441669;;, + 38;3;-2.916781, 5.977198,-0.441669;;, + 39;3;-2.916781, 5.977199,-0.441669;;, + 40;3;-2.916781, 5.977197,-0.441669;;, + 41;3;-2.916781, 5.977198,-0.441669;;, + 42;3;-2.916781, 5.977198,-0.441669;;, + 43;3;-2.916781, 5.977199,-0.441669;;, + 44;3;-2.916781, 5.977197,-0.441669;;, + 45;3;-2.916781, 5.977198,-0.441669;;, + 46;3;-2.916781, 5.977199,-0.441669;;, + 47;3;-2.916781, 5.977198,-0.441669;;, + 48;3;-2.916781, 5.977197,-0.441669;;, + 49;3;-2.916781, 5.977198,-0.441669;;, + 50;3;-2.916781, 5.977197,-0.441669;;, + 51;3;-2.916781, 5.977197,-0.441669;;, + 52;3;-2.916781, 5.977197,-0.441669;;, + 53;3;-2.916781, 5.977198,-0.441669;;, + 54;3;-2.916781, 5.977198,-0.441669;;, + 55;3;-2.916781, 5.977198,-0.441669;;, + 56;3;-2.916781, 5.977199,-0.441669;;, + 57;3;-2.916781, 5.977197,-0.441669;;, + 58;3;-2.916781, 5.977198,-0.441669;;, + 59;3;-2.916781, 5.977197,-0.441669;;, + 60;3;-2.916781, 5.977199,-0.441669;;, + 61;3;-2.916781, 5.977197,-0.441669;;, + 62;3;-2.916781, 5.977198,-0.441669;;, + 63;3;-2.916781, 5.977198,-0.441669;;, + 64;3;-3.806187, 6.214373,-0.441669;;, + 65;3;-3.755449, 6.201633,-0.441134;;, + 66;3;-3.660090, 6.176825,-0.440713;;, + 67;3;-3.547645, 6.147069,-0.440557;;, + 68;3;-3.427366, 6.114938,-0.440595;;, + 69;3;-3.304473, 6.081913,-0.440766;;, + 70;3;-3.183267, 6.049216,-0.441021;;, + 71;3;-3.068904, 6.018294,-0.441309;;, + 72;3;-2.970554, 5.991692,-0.441564;;, + 73;3;-2.916781, 5.977198,-0.441669;;, + 74;3;-2.916781, 5.977198,-0.441669;;, + 75;3;-2.916781, 5.977198,-0.441669;;, + 76;3;-2.916781, 5.977198,-0.441669;;, + 77;3;-2.916781, 5.977198,-0.441669;;, + 78;3;-2.916781, 5.977198,-0.441669;;, + 79;3;-2.916781, 5.977198,-0.441669;;, + 80;3;-2.916781, 5.977198,-0.441669;;, + 81;3;-2.916781, 5.977198,-0.441669;;, + 82;3;-2.916781, 5.977198,-0.441669;;, + 83;3;-2.916781, 5.977198,-0.441669;;, + 84;3;-2.916781, 5.977198,-0.441669;;, + 85;3;-2.916781, 5.977198,-0.441669;;, + 86;3;-2.916781, 5.977198,-0.441669;;, + 87;3;-2.916781, 5.977198,-0.441669;;, + 88;3;-2.916781, 5.977198,-0.441669;;, + 89;3;-2.916781, 5.977197,-0.441669;;, + 90;3;-2.916781, 5.977197,-0.441669;;, + 91;3;-2.916781, 5.977198,-0.441669;;, + 92;3;-2.916781, 5.977197,-0.441668;;, + 93;3;-2.916781, 5.977198,-0.441669;;, + 94;3;-2.916781, 5.977198,-0.441669;;, + 95;3;-2.916781, 5.977198,-0.441668;;, + 96;3;-2.916781, 5.977198,-0.441668;;, + 97;3;-2.916781, 5.977197,-0.441669;;, + 98;3;-2.916781, 5.977198,-0.441669;;, + 99;3;-2.916781, 5.977197,-0.441668;;, + 100;3;-2.916782, 5.977198,-0.441669;;, + 101;3;-2.916781, 5.977198,-0.441669;;, + 102;3;-2.916781, 5.977198,-0.441669;;, + 103;3;-2.916781, 5.977198,-0.441669;;, + 104;3;-2.916781, 5.977197,-0.441669;;, + 105;3;-2.916781, 5.977197,-0.441669;;, + 106;3;-2.916781, 5.977197,-0.441669;;, + 107;3;-2.916781, 5.977197,-0.441669;;, + 108;3;-2.916781, 5.977197,-0.441669;;, + 109;3;-2.916781, 5.977197,-0.441669;;, + 110;3;-2.916781, 5.977197,-0.441669;;, + 111;3;-2.916781, 5.977197,-0.441669;;, + 112;3;-2.916781, 5.977197,-0.441669;;, + 113;3;-2.916781, 5.977197,-0.441669;;, + 114;3;-2.916781, 5.977197,-0.441669;;, + 115;3;-2.916781, 5.977197,-0.441669;;, + 116;3;-2.916781, 5.977197,-0.441669;;, + 117;3;-2.916781, 5.977197,-0.441669;;, + 118;3;-2.916781, 5.977197,-0.441669;;, + 119;3;-2.916781, 5.977197,-0.441669;;; + } + } + Animation { + {Zombie_Rig_Leg_R} + AnimationKey { // Rotation + 0; + 120; + 0;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 22;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 23;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 24;4; 0.007648, 0.999525,-0.000000,-0.000000;;, + 25;4; 0.029907, 0.998142,-0.000000,-0.000000;;, + 26;4; 0.061905, 0.996153,-0.000000,-0.000000;;, + 27;4; 0.093902, 0.994165,-0.000000,-0.000000;;, + 28;4; 0.116160, 0.992782,-0.000000,-0.000000;;, + 29;4; 0.123808, 0.992306,-0.000000,-0.000000;;, + 30;4; 0.118907, 0.992782,-0.000000,-0.000000;;, + 31;4; 0.103739, 0.994165,-0.000000,-0.000000;;, + 32;4; 0.079573, 0.996153,-0.000000,-0.000000;;, + 33;4; 0.050822, 0.998142,-0.000000,-0.000000;;, + 34;4; 0.023054, 0.999525,-0.000000,-0.000000;;, + 35;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 36;4;-0.022668, 0.999572,-0.000000,-0.000000;;, + 37;4;-0.049310, 0.998325,-0.000000,-0.000000;;, + 38;4;-0.076444, 0.996533,-0.000000,-0.000000;;, + 39;4;-0.098994, 0.994742,-0.000000,-0.000000;;, + 40;4;-0.113036, 0.993495,-0.000000,-0.000000;;, + 41;4;-0.117550, 0.993067,-0.000000,-0.000000;;, + 42;4;-0.113425, 0.993459,-0.000000,-0.000000;;, + 43;4;-0.101659, 0.994513,-0.000000,-0.000000;;, + 44;4;-0.083191, 0.996024,-0.000000,-0.000000;;, + 45;4;-0.059071, 0.997732,-0.000000,-0.000000;;, + 46;4;-0.030645, 0.999265,-0.000000,-0.000000;;, + 47;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 48;4; 0.037171, 0.998903,-0.000000,-0.000000;;, + 49;4; 0.080571, 0.996076,-0.000000,-0.000000;;, + 50;4; 0.113034, 0.993330,-0.000000,-0.000000;;, + 51;4; 0.123808, 0.992306,-0.000000,-0.000000;;, + 52;4; 0.111377, 0.993482,-0.000000,-0.000000;;, + 53;4; 0.076544, 0.996383,-0.000000,-0.000000;;, + 54;4; 0.034343, 0.999043,-0.000000,-0.000000;;, + 55;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 56;4;-0.036204, 0.998863,-0.000000,-0.000000;;, + 57;4;-0.078482, 0.996189,-0.000000,-0.000000;;, + 58;4;-0.108112, 0.993874,-0.000000,-0.000000;;, + 59;4;-0.117550, 0.993067,-0.000000,-0.000000;;, + 60;4;-0.096857, 0.994287,-0.000000,-0.000000;;, + 61;4;-0.050656, 0.997013,-0.000000,-0.000000;;, + 62;4;-0.012829, 0.999244,-0.000000,-0.000000;;, + 63;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 64;4;-0.000000, 0.992460, 0.122568,-0.000000;;, + 65;4;-0.000000, 0.992863, 0.116012,-0.000000;;, + 66;4;-0.000000, 0.993650, 0.103215,-0.000000;;, + 67;4;-0.000000, 0.994595, 0.087847,-0.000000;;, + 68;4;-0.000000, 0.995616, 0.071240,-0.000000;;, + 69;4;-0.000000, 0.996667, 0.054165,-0.000000;;, + 70;4;-0.000000, 0.997708, 0.037253,-0.000000;;, + 71;4;-0.000000, 0.998692, 0.021258,-0.000000;;, + 72;4;-0.000000, 0.999539, 0.007496,-0.000000;;, + 73;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 74;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 75;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 76;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 77;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 78;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 79;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 80;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 82;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 83;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 84;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 85;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 86;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 87;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 88;4; 0.012848, 0.997543, 0.001480, 0.002125;;, + 89;4; 0.050854, 0.990276, 0.006317, 0.008410;;, + 90;4; 0.108753, 0.979203, 0.014852, 0.017987;;, + 91;4; 0.174417, 0.966643, 0.026768, 0.028850;;, + 92;4; 0.232307, 0.955571, 0.041007, 0.038427;;, + 93;4; 0.270303, 0.948303, 0.056234, 0.044712;;, + 94;4; 0.283147, 0.945846, 0.071393, 0.046837;;, + 95;4; 0.277964, 0.946069, 0.088362, 0.045965;;, + 96;4; 0.262336, 0.946740, 0.109368, 0.043338;;, + 97;4; 0.236714, 0.947841, 0.133918, 0.039029;;, + 98;4; 0.202576, 0.949307, 0.161027, 0.033289;;, + 99;4; 0.162616, 0.951024, 0.189170, 0.026570;;, + 100;4; 0.120572, 0.952830, 0.216432, 0.019500;;, + 101;4; 0.080604, 0.954547, 0.240853, 0.012781;;, + 102;4; 0.046455, 0.956013, 0.260820, 0.007040;;, + 103;4; 0.020823, 0.957114, 0.275316, 0.002732;;, + 104;4; 0.005186, 0.957785, 0.283936, 0.000105;;, + 105;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 106;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 107;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 108;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 109;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 110;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 111;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 112;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 113;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 114;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 115;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 116;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 117;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 118;4;-0.000000, 0.958008, 0.286742,-0.000767;;, + 119;4;-0.000000, 0.958008, 0.286742,-0.000767;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 0.999999, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3; 1.533431,-0.067529, 0.000001;;, + 1;3; 1.533431,-0.067529, 0.000001;;, + 2;3; 1.533431,-0.067529, 0.000001;;, + 3;3; 1.533431,-0.067529, 0.000001;;, + 4;3; 1.533431,-0.067529, 0.000001;;, + 5;3; 1.533431,-0.067529, 0.000001;;, + 6;3; 1.533431,-0.067529, 0.000001;;, + 7;3; 1.533431,-0.067529, 0.000001;;, + 8;3; 1.533431,-0.067529, 0.000001;;, + 9;3; 1.533431,-0.067529, 0.000001;;, + 10;3; 1.533431,-0.067529, 0.000001;;, + 11;3; 1.533431,-0.067529, 0.000001;;, + 12;3; 1.533431,-0.067529, 0.000001;;, + 13;3; 1.533431,-0.067529, 0.000001;;, + 14;3; 1.533431,-0.067530, 0.000001;;, + 15;3; 1.533431,-0.067529, 0.000001;;, + 16;3; 1.533431,-0.067529, 0.000001;;, + 17;3; 1.533431,-0.067529, 0.000001;;, + 18;3; 1.533431,-0.067530, 0.000001;;, + 19;3; 1.533431,-0.067529, 0.000001;;, + 20;3; 1.533431,-0.067529, 0.000001;;, + 21;3; 1.533431,-0.067529, 0.000001;;, + 22;3; 1.533431,-0.067529, 0.000001;;, + 23;3; 1.533431,-0.067529, 0.000001;;, + 24;3; 1.533430,-0.067529, 0.000001;;, + 25;3; 1.533430,-0.067529, 0.000001;;, + 26;3; 1.533431,-0.067529, 0.000001;;, + 27;3; 1.533431,-0.067529, 0.000001;;, + 28;3; 1.533431,-0.067529, 0.000001;;, + 29;3; 1.533431,-0.067529, 0.000001;;, + 30;3; 1.533431,-0.067529, 0.000001;;, + 31;3; 1.533431,-0.067529, 0.000001;;, + 32;3; 1.533431,-0.067530, 0.000001;;, + 33;3; 1.533430,-0.067529, 0.000001;;, + 34;3; 1.533431,-0.067529, 0.000001;;, + 35;3; 1.533431,-0.067529, 0.000001;;, + 36;3; 1.533431,-0.067530, 0.000001;;, + 37;3; 1.533431,-0.067529, 0.000001;;, + 38;3; 1.533431,-0.067529, 0.000001;;, + 39;3; 1.533430,-0.067529, 0.000001;;, + 40;3; 1.533431,-0.067529, 0.000001;;, + 41;3; 1.533431,-0.067529, 0.000001;;, + 42;3; 1.533431,-0.067530, 0.000001;;, + 43;3; 1.533431,-0.067530, 0.000001;;, + 44;3; 1.533430,-0.067529, 0.000001;;, + 45;3; 1.533431,-0.067529, 0.000001;;, + 46;3; 1.533431,-0.067529, 0.000001;;, + 47;3; 1.533431,-0.067529, 0.000001;;, + 48;3; 1.533431,-0.067529, 0.000001;;, + 49;3; 1.533430,-0.067529, 0.000001;;, + 50;3; 1.533431,-0.067529, 0.000001;;, + 51;3; 1.533431,-0.067529, 0.000001;;, + 52;3; 1.533431,-0.067529, 0.000001;;, + 53;3; 1.533431,-0.067529, 0.000001;;, + 54;3; 1.533431,-0.067529, 0.000001;;, + 55;3; 1.533431,-0.067529, 0.000001;;, + 56;3; 1.533431,-0.067529, 0.000001;;, + 57;3; 1.533431,-0.067530, 0.000001;;, + 58;3; 1.533430,-0.067529, 0.000001;;, + 59;3; 1.533431,-0.067529, 0.000001;;, + 60;3; 1.533431,-0.067529, 0.000001;;, + 61;3; 1.533431,-0.067530, 0.000001;;, + 62;3; 1.533430,-0.067529, 0.000001;;, + 63;3; 1.533431,-0.067529, 0.000001;;, + 64;3; 1.533431,-0.067529, 0.000001;;, + 65;3; 1.533431,-0.067529, 0.000001;;, + 66;3; 1.533431,-0.067529, 0.000001;;, + 67;3; 1.533431,-0.067529, 0.000001;;, + 68;3; 1.533431,-0.067529, 0.000001;;, + 69;3; 1.533431,-0.067529, 0.000001;;, + 70;3; 1.533431,-0.067529, 0.000001;;, + 71;3; 1.533431,-0.067529, 0.000001;;, + 72;3; 1.533431,-0.067529, 0.000001;;, + 73;3; 1.533431,-0.067529, 0.000001;;, + 74;3; 1.533431,-0.067529, 0.000001;;, + 75;3; 1.533431,-0.067529, 0.000001;;, + 76;3; 1.533431,-0.067529, 0.000001;;, + 77;3; 1.533431,-0.067529, 0.000001;;, + 78;3; 1.533431,-0.067529, 0.000001;;, + 79;3; 1.533431,-0.067529, 0.000001;;, + 80;3; 1.533431,-0.067529, 0.000001;;, + 81;3; 1.533431,-0.067529, 0.000001;;, + 82;3; 1.533431,-0.067529, 0.000001;;, + 83;3; 1.533431,-0.067529, 0.000001;;, + 84;3; 1.533431,-0.067529, 0.000001;;, + 85;3; 1.533431,-0.067529, 0.000001;;, + 86;3; 1.533431,-0.067529, 0.000001;;, + 87;3; 1.533431,-0.067529, 0.000001;;, + 88;3; 1.533340,-0.070191, 0.002369;;, + 89;3; 1.533069,-0.078065, 0.009375;;, + 90;3; 1.532658,-0.090060, 0.020050;;, + 91;3; 1.532191,-0.103667, 0.032157;;, + 92;3; 1.531780,-0.115663, 0.042831;;, + 93;3; 1.531510,-0.123536, 0.049837;;, + 94;3; 1.531418,-0.126198, 0.052205;;, + 95;3; 1.531455,-0.125124, 0.051249;;, + 96;3; 1.531566,-0.121886, 0.048368;;, + 97;3; 1.531749,-0.116576, 0.043643;;, + 98;3; 1.531991,-0.109501, 0.037348;;, + 99;3; 1.532275,-0.101220, 0.029979;;, + 100;3; 1.532574,-0.092508, 0.022227;;, + 101;3; 1.532858,-0.084226, 0.014858;;, + 102;3; 1.533101,-0.077152, 0.008563;;, + 103;3; 1.533283,-0.071842, 0.003839;;, + 104;3; 1.533394,-0.068603, 0.000957;;, + 105;3; 1.533430,-0.067529, 0.000001;;, + 106;3; 1.533430,-0.067529, 0.000001;;, + 107;3; 1.533430,-0.067529, 0.000001;;, + 108;3; 1.533430,-0.067529, 0.000001;;, + 109;3; 1.533430,-0.067529, 0.000001;;, + 110;3; 1.533430,-0.067529, 0.000001;;, + 111;3; 1.533430,-0.067529, 0.000001;;, + 112;3; 1.533430,-0.067529, 0.000001;;, + 113;3; 1.533430,-0.067529, 0.000001;;, + 114;3; 1.533430,-0.067529, 0.000001;;, + 115;3; 1.533430,-0.067529, 0.000001;;, + 116;3; 1.533430,-0.067529, 0.000001;;, + 117;3; 1.533430,-0.067529, 0.000001;;, + 118;3; 1.533430,-0.067529, 0.000001;;, + 119;3; 1.533430,-0.067529, 0.000001;;; + } + } + Animation { + {Zombie_Rig_Leg_L} + AnimationKey { // Rotation + 0; + 120; + 0;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 1;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 2;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 3;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 4;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 5;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 6;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 7;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 8;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 9;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 10;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 11;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 12;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 13;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 14;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 15;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 16;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 17;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 18;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 19;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 20;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 21;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 22;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 23;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 24;4;-0.007262, 0.999572,-0.000000,-0.000000;;, + 25;4;-0.028396, 0.998325,-0.000000,-0.000000;;, + 26;4;-0.058777, 0.996533,-0.000000,-0.000000;;, + 27;4;-0.089156, 0.994742,-0.000000,-0.000000;;, + 28;4;-0.110289, 0.993495,-0.000000,-0.000000;;, + 29;4;-0.117550, 0.993067,-0.000000,-0.000000;;, + 30;4;-0.113036, 0.993495,-0.000000,-0.000000;;, + 31;4;-0.098994, 0.994742,-0.000000,-0.000000;;, + 32;4;-0.076444, 0.996534,-0.000000,-0.000000;;, + 33;4;-0.049310, 0.998325,-0.000000,-0.000000;;, + 34;4;-0.022668, 0.999572,-0.000000,-0.000000;;, + 35;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 36;4; 0.023054, 0.999525,-0.000000,-0.000000;;, + 37;4; 0.050822, 0.998142,-0.000000,-0.000000;;, + 38;4; 0.079573, 0.996153,-0.000000,-0.000000;;, + 39;4; 0.103739, 0.994165,-0.000000,-0.000000;;, + 40;4; 0.118907, 0.992781,-0.000000,-0.000000;;, + 41;4; 0.123808, 0.992306,-0.000000,-0.000000;;, + 42;4; 0.119328, 0.992741,-0.000000,-0.000000;;, + 43;4; 0.106611, 0.993911,-0.000000,-0.000000;;, + 44;4; 0.086780, 0.995588,-0.000000,-0.000000;;, + 45;4; 0.061118, 0.997483,-0.000000,-0.000000;;, + 46;4; 0.031308, 0.999184,-0.000000,-0.000000;;, + 47;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 48;4;-0.036280, 0.999012,-0.000000,-0.000000;;, + 49;4;-0.077380, 0.996464,-0.000000,-0.000000;;, + 50;4;-0.107610, 0.993990,-0.000000,-0.000000;;, + 51;4;-0.117550, 0.993067,-0.000000,-0.000000;;, + 52;4;-0.106076, 0.994126,-0.000000,-0.000000;;, + 53;4;-0.073603, 0.996741,-0.000000,-0.000000;;, + 54;4;-0.033565, 0.999137,-0.000000,-0.000000;;, + 55;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 56;4; 0.037230, 0.998738,-0.000000,-0.000000;;, + 57;4; 0.081921, 0.995771,-0.000000,-0.000000;;, + 58;4; 0.113641, 0.993202,-0.000000,-0.000000;;, + 59;4; 0.123808, 0.992306,-0.000000,-0.000000;;, + 60;4; 0.102013, 0.993661,-0.000000,-0.000000;;, + 61;4; 0.053353, 0.996685,-0.000000,-0.000000;;, + 62;4; 0.013512, 0.999161,-0.000000,-0.000000;;, + 63;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 64;4;-0.000000, 0.991212,-0.132287, 0.000000;;, + 65;4;-0.000000, 0.991681,-0.125210, 0.000000;;, + 66;4;-0.000000, 0.992598,-0.111396, 0.000000;;, + 67;4;-0.000000, 0.993700,-0.094809, 0.000000;;, + 68;4;-0.000000, 0.994890,-0.076886,-0.000000;;, + 69;4;-0.000000, 0.996115,-0.058457,-0.000000;;, + 70;4;-0.000000, 0.997328,-0.040205,-0.000000;;, + 71;4;-0.000000, 0.998475,-0.022942,-0.000000;;, + 72;4;-0.000000, 0.999462,-0.008090,-0.000000;;, + 73;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 74;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 75;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 76;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 77;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 78;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 79;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 80;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 81;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 82;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 83;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 84;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 85;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 86;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 87;4;-0.000000, 1.000000,-0.000000,-0.000000;;, + 88;4; 0.012970, 0.997198,-0.002963,-0.000382;;, + 89;4; 0.051337, 0.988910,-0.012292,-0.001510;;, + 90;4; 0.109784, 0.976281,-0.027940,-0.003229;;, + 91;4; 0.176070, 0.961957,-0.048438,-0.005179;;, + 92;4; 0.234509, 0.949329,-0.071104,-0.006899;;, + 93;4; 0.272865, 0.941040,-0.093217,-0.008027;;, + 94;4; 0.285831, 0.938238,-0.113009,-0.008408;;, + 95;4; 0.280599, 0.938289,-0.133163,-0.008238;;, + 96;4; 0.264822, 0.938442,-0.156822,-0.007724;;, + 97;4; 0.238958, 0.938692,-0.183448,-0.006881;;, + 98;4; 0.204497, 0.939025,-0.212030,-0.005758;;, + 99;4; 0.164157, 0.939415,-0.241071,-0.004443;;, + 100;4; 0.121715, 0.939826,-0.268738,-0.003060;;, + 101;4; 0.081369, 0.940216,-0.293199,-0.001746;;, + 102;4; 0.046896, 0.940549,-0.312995,-0.000623;;, + 103;4; 0.021020, 0.940799,-0.327249, 0.000220;;, + 104;4; 0.005235, 0.940952,-0.335670, 0.000734;;, + 105;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 106;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 107;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 108;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 109;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 110;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 111;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 112;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 113;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 114;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 115;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 116;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 117;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 118;4;-0.000000, 0.941003,-0.338398, 0.000905;;, + 119;4;-0.000000, 0.941003,-0.338398, 0.000905;;; + } + AnimationKey { // Scale + 1; + 120; + 0;3; 1.000000, 1.000000, 1.000000;;, + 1;3; 1.000000, 1.000000, 1.000000;;, + 2;3; 1.000000, 1.000000, 1.000000;;, + 3;3; 1.000000, 1.000000, 1.000000;;, + 4;3; 1.000000, 1.000000, 1.000000;;, + 5;3; 1.000000, 1.000000, 1.000000;;, + 6;3; 1.000000, 1.000000, 1.000000;;, + 7;3; 1.000000, 1.000000, 1.000000;;, + 8;3; 1.000000, 1.000000, 1.000000;;, + 9;3; 1.000000, 1.000000, 1.000000;;, + 10;3; 1.000000, 1.000000, 1.000000;;, + 11;3; 1.000000, 1.000000, 1.000000;;, + 12;3; 1.000000, 1.000000, 1.000000;;, + 13;3; 1.000000, 1.000000, 1.000000;;, + 14;3; 1.000000, 1.000000, 1.000000;;, + 15;3; 1.000000, 1.000000, 1.000000;;, + 16;3; 1.000000, 1.000000, 1.000000;;, + 17;3; 1.000000, 1.000000, 1.000000;;, + 18;3; 1.000000, 1.000000, 1.000000;;, + 19;3; 1.000000, 1.000000, 1.000000;;, + 20;3; 1.000000, 1.000000, 1.000000;;, + 21;3; 1.000000, 1.000000, 1.000000;;, + 22;3; 1.000000, 1.000000, 1.000000;;, + 23;3; 1.000000, 1.000000, 1.000000;;, + 24;3; 1.000000, 1.000000, 1.000000;;, + 25;3; 1.000000, 1.000000, 1.000000;;, + 26;3; 1.000000, 1.000000, 1.000000;;, + 27;3; 1.000000, 1.000000, 1.000000;;, + 28;3; 1.000000, 1.000000, 1.000000;;, + 29;3; 1.000000, 1.000000, 1.000000;;, + 30;3; 1.000000, 1.000000, 1.000000;;, + 31;3; 1.000000, 1.000000, 1.000000;;, + 32;3; 1.000000, 1.000000, 1.000000;;, + 33;3; 1.000000, 1.000000, 1.000000;;, + 34;3; 1.000000, 1.000000, 1.000000;;, + 35;3; 1.000000, 1.000000, 1.000000;;, + 36;3; 1.000000, 1.000000, 1.000000;;, + 37;3; 1.000000, 1.000000, 1.000000;;, + 38;3; 1.000000, 1.000000, 1.000000;;, + 39;3; 1.000000, 1.000000, 1.000000;;, + 40;3; 1.000000, 1.000000, 1.000000;;, + 41;3; 1.000000, 1.000000, 1.000000;;, + 42;3; 1.000000, 1.000000, 1.000000;;, + 43;3; 1.000000, 1.000000, 1.000000;;, + 44;3; 1.000000, 1.000000, 1.000000;;, + 45;3; 1.000000, 1.000000, 1.000000;;, + 46;3; 1.000000, 1.000000, 1.000000;;, + 47;3; 1.000000, 1.000000, 1.000000;;, + 48;3; 1.000000, 1.000000, 1.000000;;, + 49;3; 1.000000, 1.000000, 1.000000;;, + 50;3; 1.000000, 1.000000, 1.000000;;, + 51;3; 1.000000, 1.000000, 1.000000;;, + 52;3; 1.000000, 1.000000, 1.000000;;, + 53;3; 1.000000, 1.000000, 1.000000;;, + 54;3; 1.000000, 1.000000, 1.000000;;, + 55;3; 1.000000, 1.000000, 1.000000;;, + 56;3; 1.000000, 1.000000, 1.000000;;, + 57;3; 1.000000, 1.000000, 1.000000;;, + 58;3; 1.000000, 1.000000, 1.000000;;, + 59;3; 1.000000, 1.000000, 1.000000;;, + 60;3; 1.000000, 1.000000, 1.000000;;, + 61;3; 1.000000, 1.000000, 1.000000;;, + 62;3; 1.000000, 1.000000, 1.000000;;, + 63;3; 1.000000, 1.000000, 1.000000;;, + 64;3; 1.000000, 1.000000, 1.000000;;, + 65;3; 1.000000, 1.000000, 1.000000;;, + 66;3; 1.000000, 1.000000, 1.000000;;, + 67;3; 1.000000, 1.000000, 1.000000;;, + 68;3; 1.000000, 1.000000, 1.000000;;, + 69;3; 1.000000, 1.000000, 1.000000;;, + 70;3; 1.000000, 1.000000, 1.000000;;, + 71;3; 1.000000, 1.000000, 1.000000;;, + 72;3; 1.000000, 1.000000, 1.000000;;, + 73;3; 1.000000, 1.000000, 1.000000;;, + 74;3; 1.000000, 1.000000, 1.000000;;, + 75;3; 1.000000, 1.000000, 1.000000;;, + 76;3; 1.000000, 1.000000, 1.000000;;, + 77;3; 1.000000, 1.000000, 1.000000;;, + 78;3; 1.000000, 1.000000, 1.000000;;, + 79;3; 1.000000, 1.000000, 1.000000;;, + 80;3; 1.000000, 1.000000, 1.000000;;, + 81;3; 1.000000, 1.000000, 1.000000;;, + 82;3; 1.000000, 1.000000, 1.000000;;, + 83;3; 1.000000, 1.000000, 1.000000;;, + 84;3; 1.000000, 1.000000, 1.000000;;, + 85;3; 1.000000, 1.000000, 1.000000;;, + 86;3; 1.000000, 1.000000, 1.000000;;, + 87;3; 1.000000, 1.000000, 1.000000;;, + 88;3; 1.000000, 1.000000, 1.000000;;, + 89;3; 1.000000, 1.000000, 1.000000;;, + 90;3; 1.000000, 1.000000, 1.000000;;, + 91;3; 1.000000, 1.000000, 1.000000;;, + 92;3; 1.000000, 1.000000, 1.000000;;, + 93;3; 1.000000, 1.000000, 1.000000;;, + 94;3; 1.000000, 1.000000, 1.000000;;, + 95;3; 1.000000, 1.000000, 1.000000;;, + 96;3; 1.000000, 1.000000, 1.000000;;, + 97;3; 1.000000, 1.000000, 1.000000;;, + 98;3; 1.000000, 1.000000, 1.000000;;, + 99;3; 1.000000, 1.000000, 1.000000;;, + 100;3; 1.000000, 1.000000, 1.000000;;, + 101;3; 1.000000, 1.000000, 1.000000;;, + 102;3; 1.000000, 1.000000, 1.000000;;, + 103;3; 1.000000, 1.000000, 1.000000;;, + 104;3; 1.000000, 1.000000, 1.000000;;, + 105;3; 1.000000, 1.000000, 1.000000;;, + 106;3; 1.000000, 1.000000, 1.000000;;, + 107;3; 1.000000, 1.000000, 1.000000;;, + 108;3; 1.000000, 1.000000, 1.000000;;, + 109;3; 1.000000, 1.000000, 1.000000;;, + 110;3; 1.000000, 1.000000, 1.000000;;, + 111;3; 1.000000, 1.000000, 1.000000;;, + 112;3; 1.000000, 1.000000, 1.000000;;, + 113;3; 1.000000, 1.000000, 1.000000;;, + 114;3; 1.000000, 1.000000, 1.000000;;, + 115;3; 1.000000, 1.000000, 1.000000;;, + 116;3; 1.000000, 1.000000, 1.000000;;, + 117;3; 1.000000, 1.000000, 1.000000;;, + 118;3; 1.000000, 1.000000, 1.000000;;, + 119;3; 1.000000, 1.000000, 1.000000;;; + } + AnimationKey { // Position + 2; + 120; + 0;3;-1.533429,-0.067529, 0.000001;;, + 1;3;-1.533429,-0.067529, 0.000001;;, + 2;3;-1.533429,-0.067529, 0.000001;;, + 3;3;-1.533429,-0.067529, 0.000001;;, + 4;3;-1.533429,-0.067529, 0.000001;;, + 5;3;-1.533429,-0.067529, 0.000001;;, + 6;3;-1.533429,-0.067529, 0.000001;;, + 7;3;-1.533429,-0.067529, 0.000001;;, + 8;3;-1.533429,-0.067529, 0.000001;;, + 9;3;-1.533429,-0.067529, 0.000001;;, + 10;3;-1.533429,-0.067529, 0.000001;;, + 11;3;-1.533429,-0.067529, 0.000001;;, + 12;3;-1.533429,-0.067529, 0.000001;;, + 13;3;-1.533429,-0.067529, 0.000001;;, + 14;3;-1.533429,-0.067530, 0.000001;;, + 15;3;-1.533429,-0.067529, 0.000001;;, + 16;3;-1.533429,-0.067529, 0.000001;;, + 17;3;-1.533429,-0.067529, 0.000001;;, + 18;3;-1.533429,-0.067530, 0.000001;;, + 19;3;-1.533429,-0.067529, 0.000001;;, + 20;3;-1.533429,-0.067529, 0.000001;;, + 21;3;-1.533429,-0.067529, 0.000001;;, + 22;3;-1.533429,-0.067529, 0.000001;;, + 23;3;-1.533429,-0.067529, 0.000001;;, + 24;3;-1.533429,-0.067529, 0.000001;;, + 25;3;-1.533429,-0.067529, 0.000001;;, + 26;3;-1.533429,-0.067529, 0.000001;;, + 27;3;-1.533430,-0.067529, 0.000001;;, + 28;3;-1.533429,-0.067529, 0.000001;;, + 29;3;-1.533430,-0.067529, 0.000001;;, + 30;3;-1.533429,-0.067530, 0.000001;;, + 31;3;-1.533429,-0.067529, 0.000001;;, + 32;3;-1.533429,-0.067529, 0.000001;;, + 33;3;-1.533429,-0.067529, 0.000001;;, + 34;3;-1.533429,-0.067529, 0.000001;;, + 35;3;-1.533429,-0.067529, 0.000001;;, + 36;3;-1.533429,-0.067529, 0.000001;;, + 37;3;-1.533429,-0.067529, 0.000001;;, + 38;3;-1.533430,-0.067530, 0.000001;;, + 39;3;-1.533430,-0.067529, 0.000001;;, + 40;3;-1.533430,-0.067529, 0.000001;;, + 41;3;-1.533429,-0.067529, 0.000001;;, + 42;3;-1.533429,-0.067529, 0.000001;;, + 43;3;-1.533429,-0.067529, 0.000001;;, + 44;3;-1.533429,-0.067530, 0.000001;;, + 45;3;-1.533429,-0.067529, 0.000001;;, + 46;3;-1.533429,-0.067529, 0.000001;;, + 47;3;-1.533429,-0.067529, 0.000001;;, + 48;3;-1.533429,-0.067529, 0.000001;;, + 49;3;-1.533429,-0.067529, 0.000001;;, + 50;3;-1.533429,-0.067529, 0.000001;;, + 51;3;-1.533430,-0.067529, 0.000001;;, + 52;3;-1.533429,-0.067529, 0.000001;;, + 53;3;-1.533430,-0.067529, 0.000001;;, + 54;3;-1.533429,-0.067529, 0.000001;;, + 55;3;-1.533429,-0.067529, 0.000001;;, + 56;3;-1.533430,-0.067529, 0.000001;;, + 57;3;-1.533430,-0.067529, 0.000001;;, + 58;3;-1.533430,-0.067529, 0.000001;;, + 59;3;-1.533429,-0.067529, 0.000001;;, + 60;3;-1.533429,-0.067529, 0.000001;;, + 61;3;-1.533430,-0.067529, 0.000001;;, + 62;3;-1.533429,-0.067529, 0.000001;;, + 63;3;-1.533429,-0.067529, 0.000001;;, + 64;3;-1.533429,-0.067529, 0.000001;;, + 65;3;-1.533429,-0.067529, 0.000001;;, + 66;3;-1.533429,-0.067529, 0.000001;;, + 67;3;-1.533429,-0.067529, 0.000001;;, + 68;3;-1.533429,-0.067529, 0.000001;;, + 69;3;-1.533429,-0.067529, 0.000001;;, + 70;3;-1.533429,-0.067529, 0.000001;;, + 71;3;-1.533429,-0.067529, 0.000001;;, + 72;3;-1.533429,-0.067529, 0.000001;;, + 73;3;-1.533429,-0.067529, 0.000001;;, + 74;3;-1.533429,-0.067529, 0.000001;;, + 75;3;-1.533429,-0.067529, 0.000001;;, + 76;3;-1.533429,-0.067529, 0.000001;;, + 77;3;-1.533429,-0.067529, 0.000001;;, + 78;3;-1.533429,-0.067529, 0.000001;;, + 79;3;-1.533429,-0.067529, 0.000001;;, + 80;3;-1.533429,-0.067529, 0.000001;;, + 81;3;-1.533429,-0.067529, 0.000001;;, + 82;3;-1.533429,-0.067529, 0.000001;;, + 83;3;-1.533429,-0.067529, 0.000001;;, + 84;3;-1.533429,-0.067529, 0.000001;;, + 85;3;-1.533429,-0.067529, 0.000001;;, + 86;3;-1.533429,-0.067529, 0.000001;;, + 87;3;-1.533429,-0.067529, 0.000001;;, + 88;3;-1.533338,-0.064868,-0.002367;;, + 89;3;-1.533068,-0.056994,-0.009373;;, + 90;3;-1.532657,-0.044998,-0.020047;;, + 91;3;-1.532190,-0.031392,-0.032154;;, + 92;3;-1.531778,-0.019395,-0.042829;;, + 93;3;-1.531508,-0.011522,-0.049835;;, + 94;3;-1.531417,-0.008860,-0.052202;;, + 95;3;-1.531454,-0.009934,-0.051247;;, + 96;3;-1.531565,-0.013172,-0.048365;;, + 97;3;-1.531747,-0.018483,-0.043641;;, + 98;3;-1.531990,-0.025557,-0.037345;;, + 99;3;-1.532274,-0.033838,-0.029977;;, + 100;3;-1.532573,-0.042551,-0.022225;;, + 101;3;-1.532857,-0.050832,-0.014856;;, + 102;3;-1.533099,-0.057907,-0.008561;;, + 103;3;-1.533282,-0.063217,-0.003836;;, + 104;3;-1.533393,-0.066455,-0.000954;;, + 105;3;-1.533430,-0.067529, 0.000001;;, + 106;3;-1.533430,-0.067529, 0.000001;;, + 107;3;-1.533430,-0.067529, 0.000001;;, + 108;3;-1.533430,-0.067529, 0.000001;;, + 109;3;-1.533430,-0.067529, 0.000001;;, + 110;3;-1.533430,-0.067529, 0.000001;;, + 111;3;-1.533430,-0.067529, 0.000001;;, + 112;3;-1.533430,-0.067529, 0.000001;;, + 113;3;-1.533430,-0.067529, 0.000001;;, + 114;3;-1.533430,-0.067529, 0.000001;;, + 115;3;-1.533430,-0.067529, 0.000001;;, + 116;3;-1.533430,-0.067529, 0.000001;;, + 117;3;-1.533430,-0.067529, 0.000001;;, + 118;3;-1.533430,-0.067529, 0.000001;;, + 119;3;-1.533430,-0.067529, 0.000001;;; + } + } +} // End of AnimationSet Global diff --git a/mods/mobs_mc/pig.lua b/mods/mobs_mc/pig.lua new file mode 100644 index 000000000..590bf01e5 --- /dev/null +++ b/mods/mobs_mc/pig.lua @@ -0,0 +1,248 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +mobs:register_mob("mobs_mc:pig", { + type = "animal", + hp_max = 25, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + + visual = "mesh", + mesh = "mobs_pig.x", + textures = { + {"mobs_pig.png"} + }, + makes_footstep_sound = true, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mcl_mobitems:pork_raw", + chance = 1, + min = 1, + max = 3,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + fear_height = 3, + sounds = { + random = "Pig2", + death = "Pigdeath", + damage = "Pig2", + }, + animation = { + speed_normal = 24, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + hurt_start = 118, + hurt_end = 154, + death_start = 154, + death_end = 179, + eat_start = 49, + eat_end = 78, + look_start = 78, + look_end = 108, + }, + follow = {"default:apple", "farming:potato", "farming:carrot"}, + view_range = 5, + on_rightclick = function(self, clicker) + if not clicker or not clicker:is_player() then + return + end + + local item = clicker:get_wielded_item() + if item:get_name() == "mobs:saddle" and self.saddle ~= "yes" then + self.object:set_properties({ + textures = {"mobs_pig_with_saddle.png"}, + }) + self.saddle = "yes" + self.tamed = true + self.drops = { + {name = "mcl_mobitems:pork_raw", + chance = 1, + min = 1, + max = 3,}, + {name = "mobs:saddle", + chance = 1, + min = 1, + max = 1,}, + } + if not minetest.setting_getbool("creative_mode") then + local inv = clicker:get_inventory() + local stack = inv:get_stack("main", clicker:get_wield_index()) + stack:take_item() + inv:set_stack("main", clicker:get_wield_index(), stack) + end + return + end + -- from boats mod + local name = clicker:get_player_name() + + if self.driver and clicker == self.driver then + self.driver = nil + clicker:set_detach() + default.player_attached[name] = false + default.player_set_animation(clicker, "stand" , 30) + elseif not self.driver and self.saddle == "yes" then + self.driver = clicker + clicker:set_attach(self.object, "", {x = 0, y = 19, z = 0}, {x = 0, y = 0, z = 0}) + default.player_attached[name] = true + minetest.after(0.2, function() + default.player_set_animation(clicker, "sit" , 30) + end) + ----[[ + -- ridable pigs + if self.name == "mobs:pig" and self.saddle == "yes" and self.driver then + local item = self.driver:get_wielded_item() + if item:get_name() == "mobs:carrotstick" then + local yaw = self.driver:get_look_yaw() - math.pi / 2 + local velo = self.object:getvelocity() + local v = 1.5 + if math.abs(velo.x) + math.abs(velo.z) < .6 then velo.y = 5 end + self.state = "walk" + self:set_animation("walk") + self.object:setyaw(yaw) + self.object:setvelocity({x = -math.sin(yaw) * v, y = velo.y, z = math.cos(yaw) * v}) + + local inv = self.driver:get_inventory() + local stack = inv:get_stack("main", self.driver:get_wield_index()) + stack:add_wear(100) + if stack:get_wear() > 65400 then + stack = {name = "fishing:pole", count = 1} + end + inv:set_stack("main", self.driver:get_wield_index(), stack) + return + end + end + --]] + --self.object:setyaw(clicker:get_look_yaw() - math.pi / 2) + end + --from mobs_animals + if mobs:feed_tame(self, clicker, 8, true, true) then + return + end + mobs:capture_mob(self, clicker, 0, 5, 50, false, nil) + end, +}) + +mobs:register_spawn("mobs_mc:pig", {"default:dirt_with_grass"}, 20, 12, 5000, 1, 31000) + + +-- pork +minetest.register_craftitem(":mobs:pork_raw", { + description = "Raw Porkchop", + inventory_image = "pork_raw.png", + on_use = minetest.item_eat(3), +}) + +minetest.register_craftitem(":mobs:pork_cooked", { + description = "Cooked Porkchop", + inventory_image = "pork_cooked.png", + on_use = minetest.item_eat(8), +}) + +minetest.register_craft({ + type = "cooking", + output = "mobs:pork_cooked", + recipe = "mobs:pork_raw", + cooktime = 5, +}) + + +minetest.register_craftitem(":mobs:saddle", { + description = "Saddle", + inventory_image = "saddle.png", +}) + +minetest.register_tool(":mobs:carrotstick", { + description = "Carrot on a Stick", + inventory_image = "carrot_on_a_stick.png", + stack_max = 1, +}) + +minetest.register_craft({ + output = "mobs:carrotstick", + recipe = { + {"", "", "farming:string" }, + {"", "group:stick", "farming:string" }, + {"group:stick", "", "farming:bread" }, + } +}) + +minetest.register_craft({ + output = "mobs:carrotstick", + recipe = { + {"", "", "farming:string" }, + {"", "group:stick", "farming:string" }, + {"group:stick", "", "farming:carrot" }, + } +}) + +minetest.register_craft({ + type = "shapeless", + output = "mobs:carrotstick", + recipe = {"fishing:pole_wood", "farming:carrot"}, +}) + + +minetest.register_craft({ + output = "mobs:saddle", + recipe = { + {"mobs:leather", "mobs:leather", "mobs:leather"}, + {"farming:string", "", "farming:string"}, + {"default:steel_ingot", "", "default:steel_ingot"} + }, +}) + +--api code to fix +--[[ + + on_step = function(self, dtime) + -- ridable pigs + if self.name == "mobs:pig" and self.saddle == "yes" and self.driver then + local item = self.driver:get_wielded_item() + if item:get_name() == "mobs:carrotstick" then + local yaw = self.driver:get_look_yaw() - math.pi / 2 + local velo = self.object:getvelocity() + local v = 1.5 + if math.abs(velo.x) + math.abs(velo.z) < .6 then velo.y = 5 end + self.state = "walk" + self:set_animation("walk") + self.object:setyaw(yaw) + self.object:setvelocity({x = -math.sin(yaw) * v, y = velo.y, z = math.cos(yaw) * v}) + + local inv = self.driver:get_inventory() + local stack = inv:get_stack("main", self.driver:get_wield_index()) + stack:add_wear(100) + if stack:get_wear() > 65400 then + stack = {name = "fishing:pole", count = 1} + end + inv:set_stack("main", self.driver:get_wield_index(), stack) + return + end + end + end, +]] + + + + + + +-- compatibility +mobs:alias_mob("mobs:pig", "mobs_mc:pig") + +-- spawn eggs +mobs:register_egg("mobs_mc:pig", "Pig", "spawn_egg_pig.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Pig loaded") +end diff --git a/mods/mobs_mc/readme.md b/mods/mobs_mc/readme.md new file mode 100644 index 000000000..9a5072434 --- /dev/null +++ b/mods/mobs_mc/readme.md @@ -0,0 +1,21 @@ + +MC MOBS +WIP +assembled by maikerumine +compatable with mobs redo api + + +Chicken + +- Found in green areas (bamboo biome in ethereal) and lays eggs on flat ground, Can be picked up and placed in inventory and gives 1-2 raw chicken when killed. Feed 8x wheat seed to breed. + +Cow + +- Wanders around eating grass/wheat and can be right-clicked with empty bucket to get milk. Cows will defend themselves when hit and can be right-clicked with 8x wheat to tame and breed. + +Sheep + +- Green grass and wheat munchers that can be clipped using shears to give 1-3 wool. Feed sheep 8x wheat to regrow wool, tame and breed. Will drop 1-3 meat when killed. + + +Note: After breeding animals need to rest for 4 minutes, baby animals take 4 minutes to grow up and feeding them helps them grow quicker... diff --git a/mods/mobs_mc/sheep.lua b/mods/mobs_mc/sheep.lua new file mode 100644 index 000000000..25a78157e --- /dev/null +++ b/mods/mobs_mc/sheep.lua @@ -0,0 +1,159 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +--mcsheep +mobs:register_mob("mobs_mc:sheep", { + type = "animal", + hp_max = 25, + collisionbox = {-0.5, -0.01, -0.5, 0.5, 1.5, 0.5}, + + visual = "mesh", + mesh = "mobs_sheep.x", + textures = { + {"mobs_sheep.png"} + }, + makes_footstep_sound = true, + walk_velocity = 1, + armor = 200, + drops = { + {name = "mcl_mobs:mutton_raw", + chance = 1, + min = 1, + max = 2,}, + {name = "wool:white", + chance = 1, + min = 1, + max = 1,}, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + fear_height = 3, + sounds = { + random = "Sheep3", + death = "Sheep3", + damage = "Sheep3", + }, + animation = { + speed_normal = 24, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + hurt_start = 118, + hurt_end = 154, + death_start = 154, + death_end = 179, + eat_start = 49, + eat_end = 78, + look_start = 78, + look_end = 108, + }, + follow = "farming:wheat", + view_range = 5, + + on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + if item:get_name() == "farming:wheat" then + if not self.tamed then + if not minetest.setting_getbool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + self.tamed = true + elseif self.naked then + if not minetest.setting_getbool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + self.food = (self.food or 0) + 1 + if self.food >= 4 then + self.food = 0 + self.naked = false + self.object:set_properties({ + textures = {"sheep.png"}, + }) + end + end + return + end + if item:get_name() == "mobs:shears" and not self.naked then + self.naked = true + local pos = self.object:getpos() + minetest.sound_play("shears", {pos = pos}) + pos.y = pos.y + 0.5 + if not self.color then + minetest.add_item(pos, ItemStack("wool:white "..math.random(1,3))) + else + minetest.add_item(pos, ItemStack("wool:"..self.color.." "..math.random(1,3))) + end + self.object:set_properties({ + textures = {"sheep_sheared.png"}, + }) + if not minetest.setting_getbool("creative_mode") then + item:add_wear(300) + clicker:get_inventory():set_stack("main", clicker:get_wield_index(), item) + end + end + if minetest.get_item_group(item:get_name(), "dye") == 1 and not self.naked then +print(item:get_name(), minetest.get_item_group(item:get_name(), "dye")) + local name = item:get_name() + local pname = name:split(":")[2] + + self.object:set_properties({ + textures = {"mobs_sheep_"..pname..".png"}, + }) + self.color = pname + self.drops = { + {name = "mcl_mobs:mutton_raw", + chance = 1, + min = 1, + max = 2,}, + {name = "wool:"..self.color, + chance = 1, + min = 1, + max = 1,}, + } + end + end, +}) +--mobs:register_spawn("mobs_mc:sheep", {"default:dirt_with_grass"}, 20, 12, 5000, 2, 31000) + + +--mutton +minetest.register_craftitem(":mobs:mutton_raw", { + description = "Raw Mutton", + inventory_image = "mutton_raw.png", + on_use = minetest.item_eat(4), +}) + +minetest.register_craftitem(":mobs:mutton_cooked", { + description = "Cooked Mutton", + inventory_image = "mutton_cooked.png", + on_use = minetest.item_eat(8), +}) + +minetest.register_craft({ + type = "cooking", + output = "mobs:mutton_cooked", + recipe = "mobs:mutton_raw", + cooktime = 5, +}) + + +-- compatibility +mobs:alias_mob("mobs:sheep", "mobs_mc:sheep") + +-- spawn eggs +mobs:register_egg("mobs_mc:sheep", "Sheep", "spawn_egg_sheep.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Sheep loaded") +end diff --git a/mods/mobs_mc/skeleton.lua b/mods/mobs_mc/skeleton.lua new file mode 100644 index 000000000..4af2f6afd --- /dev/null +++ b/mods/mobs_mc/skeleton.lua @@ -0,0 +1,332 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +mobs:register_mob("mobs_mc:skeleton", { + type = "monster", + hp_max = 30, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + pathfinding = true, + group_attack = true, + visual = "mesh", + mesh = "mobs_skeleton.x", + textures = { + {"mobs_skeleton.png"} + }, + makes_footstep_sound = true, + sounds = { + random = "skeleton1", + death = "skeletondeath", + damage = "skeletonhurt1", + }, + walk_velocity = 1.2, + run_velocity = 2.4, + damage = 1, + armor = 200, + drops = { + {name = "throwing:arrow", + chance = 1, + min = 0, + max = 2,}, + {name = "throwing:bow", + chance = 11, + min = 1, + max = 1,}, + {name = "bonemeal:bone", + chance = 1, + min = 0, + max = 2,}, + }, + animation = { + speed_normal = 30, + speed_run = 60, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + run_start = 24, + run_end = 49, + hurt_start = 85, + hurt_end = 115, + death_start = 117, + death_end = 145, + shoot_start = 50, + shoot_end = 82, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 1, + view_range = 16, + attack_type = "dogshoot", + arrow = "mobs:arrow_entity", + shoot_interval = 2.5, + shoot_offset = 1, + --'dogshoot_switch' allows switching between shoot and dogfight modes inside dogshoot using timer (1 = shoot, 2 = dogfight) + --'dogshoot_count_max' number of seconds before switching above modes. + dogshoot_switch = 1, + dogshoot_count_max =3, +}) +mobs:register_spawn("mobs_mc:skeleton", {"group:crumbly", "group:cracky", "group:choppy", "group:snappy"}, 7, -1, 5000, 4, 31000) + + +mobs:register_mob("mobs_mc:skeleton2", { + type = "monster", + hp_max = 60, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + pathfinding = true, + group_attack = true, + visual = "mesh", + mesh = "mobs_skeleton.x", + textures = { + {"mobs_skeleton2.png"} + }, + makes_footstep_sound = true, + sounds = { + random = "skeleton1", + death = "skeletondeath", + damage = "skeletonhurt1", + }, + walk_velocity = 1.2, + run_velocity = 2.4, + damage = 3, + armor = 200, + drops = { + {name = "throwing:arrow", + chance = 1, + min = 0, + max = 2,}, + {name = "throwing:bow", + chance = 11, + min = 1, + max = 1,}, + {name = "bonemeal:bone", + chance = 1, + min = 0, + max = 2,}, + }, + animation = { + speed_normal = 30, + speed_run = 60, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + run_start = 24, + run_end = 49, + hurt_start = 85, + hurt_end = 115, + death_start = 117, + death_end = 145, + shoot_start = 50, + shoot_end = 82, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 0, + light_damage = 0, + view_range = 16, + attack_type = "dogshoot", + arrow = "mobs:arrow_entity", + shoot_interval = 0.5, + shoot_offset = 1, + --'dogshoot_switch' allows switching between shoot and dogfight modes inside dogshoot using timer (1 = shoot, 2 = dogfight) + --'dogshoot_count_max' number of seconds before switching above modes. + dogshoot_switch = 1, + dogshoot_count_max =6, +}) +mobs:register_spawn("mobs_mc:skeleton2", {"group:crumbly", "group:cracky", "group:choppy", "group:snappy"}, 7, -1, 5000, 4, -3000) + + + +-- leather, feathers, etc. +minetest.register_craftitem(":mobs:feather", { + description = "Feather", + inventory_image = "mobs_feather.png", +}) + + + + +--maikerumines throwing code +--arrow (weapon) +minetest.register_craftitem(":mobs:arrow", { + description = "ESM Arrow", + inventory_image = "arrow.png", +}) + +minetest.register_node(":mobs:arrow_box", { + drawtype = "nodebox", + node_box = { + type = "fixed", + fixed = { + -- Shaft + {-6.5/17, -1.5/17, -1.5/17, 6.5/17, 1.5/17, 1.5/17}, + --Spitze + {-4.5/17, 2.5/17, 2.5/17, -3.5/17, -2.5/17, -2.5/17}, + {-8.5/17, 0.5/17, 0.5/17, -6.5/17, -0.5/17, -0.5/17}, + --Federn + {6.5/17, 1.5/17, 1.5/17, 7.5/17, 2.5/17, 2.5/17}, + {7.5/17, -2.5/17, 2.5/17, 6.5/17, -1.5/17, 1.5/17}, + {7.5/17, 2.5/17, -2.5/17, 6.5/17, 1.5/17, -1.5/17}, + {6.5/17, -1.5/17, -1.5/17, 7.5/17, -2.5/17, -2.5/17}, + + {7.5/17, 2.5/17, 2.5/17, 8.5/17, 3.5/17, 3.5/17}, + {8.5/17, -3.5/17, 3.5/17, 7.5/17, -2.5/17, 2.5/17}, + {8.5/17, 3.5/17, -3.5/17, 7.5/17, 2.5/17, -2.5/17}, + {7.5/17, -2.5/17, -2.5/17, 8.5/17, -3.5/17, -3.5/17}, + } + }, + tiles = {"throwing_arrow.png", "throwing_arrow.png", "throwing_arrow_back.png", "throwing_arrow_front.png", "throwing_arrow_2.png", "throwing_arrow.png"}, + groups = {not_in_creative_inventory=1}, +}) + + + +local THROWING_ARROW_ENTITY={ + physical = false, + timer=0, + visual = "wielditem", + visual_size = {x=0.1, y=0.1}, + textures = {"mobs:arrow_box"}, + --textures = {"esmobs:arrow.png"}, + velocity = 10, + lastpos={}, + collisionbox = {0,0,0,0,0,0}, +} + + +--ARROW CODE +THROWING_ARROW_ENTITY.on_step = function(self, dtime) + self.timer=self.timer+dtime + local pos = self.object:getpos() + local node = minetest.get_node(pos) + +minetest.add_particle({ + pos = pos, + vel = {x=0, y=0, z=0}, + acc = {x=0, y=0, z=0}, + expirationtime = .3, + size = 1, + collisiondetection = false, + vertical = false, + texture = "arrow_particle.png", +}) + + if self.timer>0.2 then + local objs = minetest.get_objects_inside_radius({x=pos.x,y=pos.y,z=pos.z}, 1.5) + for k, obj in pairs(objs) do + if obj:get_luaentity() ~= nil then + if obj:get_luaentity().name ~= "mobs:arrow_entity" and obj:get_luaentity().name ~= "__builtin:item" then + local damage = 3 + minetest.sound_play("damage", {pos = pos}) + obj:punch(self.object, 1.0, { + full_punch_interval=1.0, + damage_groups={fleshy=damage}, + }, nil) + self.object:remove() + end + else + local damage = 3 + minetest.sound_play("damage", {pos = pos}) + obj:punch(self.object, 1.0, { + full_punch_interval=1.0, + damage_groups={fleshy=damage}, + }, nil) + self.object:remove() + end + end + end + + if self.lastpos.x~=nil then + if node.name ~= "air" then + minetest.sound_play("bowhit1", {pos = pos}) + --minetest.punch_node(pos) --this crash game when bones for mobs used + minetest.add_item(self.lastpos, 'mobs:arrow') + self.object:remove() + end + end + self.lastpos={x=pos.x, y=pos.y, z=pos.z} +end + + +minetest.register_entity(":mobs:arrow_entity", THROWING_ARROW_ENTITY) + + +minetest.register_craft({ + output = 'mobs:arrow 48', + recipe = { + {'default:steel_ingot'}, + {'default:stick'}, + {'mobs:feather'}, + } +}) + + +arrows = { + {"mobs:arrow", "mobs:arrow_entity" }, +} + +local throwing_shoot_arrow = function(itemstack, player) + for _,arrow in ipairs(arrows) do + if player:get_inventory():get_stack("main", player:get_wield_index()+1):get_name() == arrow[1] then + if not minetest.setting_getbool("creative_mode") then + player:get_inventory():remove_item("main", arrow[1]) + end + local playerpos = player:getpos() + --local obj = minetest.env:add_entity({x=playerpos.x,y=playerpos.y+1.5,z=playerpos.z}, arrow[2]) --current + local obj = minetest.add_entity({x=playerpos.x,y=playerpos.y+1.5,z=playerpos.z}, arrow[2]) --mc + local dir = player:get_look_dir() + obj:setvelocity({x=dir.x*22, y=dir.y*22, z=dir.z*22}) + obj:setacceleration({x=dir.x*-3, y=-10, z=dir.z*-3}) + obj:setyaw(player:get_look_yaw()+math.pi) + minetest.sound_play("throwing_sound", {pos=playerpos}) + if obj:get_luaentity().player == "" then + obj:get_luaentity().player = player + end + obj:get_luaentity().node = player:get_inventory():get_stack("main", 1):get_name() + return true + end + end + return false +end + +minetest.register_tool(":mobs:bow_wood", { + description = "ESM Wood Bow", + inventory_image = "bow_standby.png", + stack_max = 1, + on_use = function(itemstack, user, pointed_thing) + if throwing_shoot_arrow(itemstack, user, pointed_thing) then + if not minetest.setting_getbool("creative_mode") then + itemstack:add_wear(65535/50) + end + end + return itemstack + end, +}) + +minetest.register_craft({ + output = 'mobs:bow_wood', + recipe = { + {'farming:cotton', 'default:stick', ''}, + {'farming:cotton', '', 'default:stick'}, + {'farming:cotton', 'default:stick', ''}, + } +}) +--end maikerumine code + + +-- compatibility +mobs:alias_mob("mobs:skeleton", "mobs_mc:skeleton") + +-- spawn eggs +mobs:register_egg("mobs_mc:skeleton", "Skeleton", "spawn_egg_skeleton.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Skeleton loaded") +end diff --git a/mods/mobs_mc/slimes.lua b/mods/mobs_mc/slimes.lua new file mode 100644 index 000000000..2bc4de280 --- /dev/null +++ b/mods/mobs_mc/slimes.lua @@ -0,0 +1,368 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +mobs:register_mob("mobs_mc:greensmall", { + type = "monster", + pathfinding = true, + group_attack = true, + hp_max = 5, + collisionbox = {-0.2, -0.4, -0.2, 0.2, 0.2, 0.2}, + visual_size = {x=0.5, y=0.5}, + textures = { + {"green_slime_top.png", "green_slime_bottom.png", "green_slime_front.png", "green_slime_sides.png", "green_slime_sides.png", "green_slime_sides.png"} + }, + visual = "cube", + blood_texture ="green_slime_blood.png", + rotate = 270, + makes_footstep_sound = true, + sounds = { + jump = "green_slime_jump", + death = "green_slime_death", + damage = "green_slime_damage", + attack = "green_slime_attack", + }, + walk_velocity = .8, + run_velocity = 2.6, + damage = 1, + armor = 100, + drops = { + {name = "mesecons_materials:glue 1", + chance = 3, + min = 1, + max = 4,}, + {name = "default:grass", + chance = 1, + min = 1, + max = 5,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 10, + light_damage = 0, + fall_damage = 0, + view_range = 16, + attack_type = "dogfight", + passive = false, + jump = true, + jump_height = 4, + jump_chance = 98, + fear_height = 12, +}) + +mobs:register_mob("mobs_mc:greenmedium", { + type = "monster", + pathfinding = true, + group_attack = true, + hp_max = 10, + collisionbox = {-0.55, -0.55, -0.55, 0.55, 0.55, 0.55}, + visual_size = {x=1.0, y=1.0}, + textures = { + {"green_slime_top.png", "green_slime_bottom.png", "green_slime_front.png", "green_slime_sides.png", "green_slime_sides.png", "green_slime_sides.png"} + }, + visual = "cube", + blood_texture ="green_slime_blood.png", + rotate = 270, + makes_footstep_sound = true, + sounds = { + jump = "green_slime_jump", + death = "green_slime_death", + damage = "green_slime_damage", + attack = "green_slime_attack", + }, + walk_velocity = .8, + run_velocity = 2.0, + damage = 2, + armor = 100, + drops = { + {name = "default:mossycobble", + chance = 2, + min = 1, + max = 1,}, + {name = "default:leaves", + chance = 1, + min = 1, + max = 5,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 10, + light_damage = 0, + fall_damage = 0, + view_range = 16, + attack_type = "dogfight", + passive = false, + jump = true, + jump_height = 8, + jump_chance = 100, + fear_height = 60, + on_die =function(self, pos) + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:greensmall") + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:greensmall") + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:greensmall") + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:greensmall") + ent = lavasmall:get_luaentity() + end +}) + +mobs:register_mob("mobs_mc:greenbig", { + type = "monster", + pathfinding = true, + group_attack = true, + hp_max = 25, + collisionbox = {-0.75, -0.75, -0.75, 0.75, 0.75, 0.75}, + visual_size = {x=1.5, y=1.5}, + textures = { + {"green_slime_top.png", "green_slime_bottom.png", "green_slime_front.png", "green_slime_sides.png", "green_slime_sides.png", "green_slime_sides.png"} + }, + visual = "cube", + blood_texture ="green_slime_blood.png", + rotate = 270, + makes_footstep_sound = true, + sounds = { + jump = "green_slime_jump", + death = "green_slime_death", + damage = "green_slime_damage", + attack = "green_slime_attack", + }, + walk_velocity = .8, + run_velocity = 1.6, + damage = 2, + armor = 100, + drops = { + {name = "default:leaves", + chance = 2, + min = 1, + max = 1,}, + {name = "default:papyrus", + chance = 1, + min = 1, + max = 5,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 10, + light_damage = 0, + fall_damage = 0, + view_range = 16, + attack_type = "dogfight", + passive = false, + jump = true, + jump_height = 8, + jump_chance = 100, + fear_height = 60, + on_die =function(self, pos) + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:greenmedium") + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:greenmedium") + ent = lavasmall:get_luaentity() + end +}) +mobs:register_spawn("mobs_mc:greensmall", {"default:flowing_water", "default:mossycobble"}, 7, -1, 5000, 4, 31000) +mobs:register_spawn("mobs_mc:greenmedium", {"default:flowing_water", "default:mossycobble"}, 7, -1, 5000, 4, 31000) +mobs:register_spawn("mobs_mc:greenbig", {"default:flowing_water", "default:mossycobble"}, 7, -1, 5000, 4, 31000) + + + + +mobs:register_mob("mobs_mc:lavasmall", { + type = "monster", + pathfinding = true, + group_attack = true, + hp_max = 15, + collisionbox = {-0.2, -0.4, -0.2, 0.2, 0.2, 0.2}, + visual_size = {x=0.5, y=0.5}, + textures = { + {"lava_slime_top.png", "lava_slime_bottom.png", "lava_slime_front.png", "lava_slime_sides.png", "lava_slime_sides.png", "lava_slime_sides.png"} + }, + visual = "cube", + blood_texture ="lava_slime_blood.png", + rotate = 270, + makes_footstep_sound = true, + sounds = { + jump = "green_slime_jump", + death = "green_slime_death", + damage = "green_slime_damage", + attack = "green_slime_attack", + }, + walk_velocity = .8, + run_velocity = 2.6, + damage = 1, + armor = 100, + drops = { + {name = "tnt:gunpowder", + chance = 3, + min = 1, + max = 1,}, + {name = "default:coal", + chance = 1, + min = 1, + max = 5,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + drawtype = "front", + water_damage = 10, + lava_damage = 0, + light_damage = 0, + fall_damage = 0, + view_range = 16, + attack_type = "dogfight", + passive = false, + jump = true, + jump_height = 4, + jump_chance = 98, + fear_height = 12, +}) + +mobs:register_mob("mobs_mc:lavabig", { + type = "monster", + pathfinding = true, + group_attack = true, + hp_max = 15, + collisionbox = {-0.75, -0.75, -0.75, 0.75, 0.75, 0.75}, + visual_size = {x=1.5, y=1.5}, + textures = { + {"lava_slime_top.png", "lava_slime_bottom.png", "lava_slime_front.png", "lava_slime_sides.png", "lava_slime_sides.png", "lava_slime_sides.png"} + }, + visual = "cube", + blood_texture ="lava_slime_blood.png", + rotate = 270, + makes_footstep_sound = true, + sounds = { + jump = "green_slime_jump", + death = "green_slime_death", + damage = "green_slime_damage", + attack = "green_slime_attack", + }, + walk_velocity = .8, + run_velocity = 1.6, + damage = 2, + armor = 100, + drops = { + {name = "tnt:gunpowder", + chance = 2, + min = 1, + max = 1,}, + {name = "mobs_mc:lavasmall", + chance = 1, + min = 1, + max = 5,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + drawtype = "front", + water_damage = 10, + lava_damage = 0, + light_damage = 0, + fall_damage = 0, + view_range = 16, + attack_type = "dogfight", + passive = false, + jump = true, + jump_height = 8, + jump_chance = 100, + fear_height = 60, + on_die =function(self, pos) + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:lavasmall") + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:lavasmall") + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:lavasmall") + lavasmall = minetest.add_entity(self.object:getpos(), "mobs_mc:lavasmall") + ent = lavasmall:get_luaentity() + end +}) + +mobs:register_spawn("mobs_mc:lavasmall", {"nether:rack", "default:lava"}, 7, -1, 5000, 4, 31000) +mobs:register_spawn("mobs_mc:lavabig", {"nether:rack", "default:lava"}, 7, -1, 5000, 4, 31000) + +-- compatibility +mobs:alias_mob("mobs:lavasmall", "mobs_mc:lavasmall") +mobs:alias_mob("mobs:lavabig", "mobs_mc:lavabig") +mobs:alias_mob("mobs:greensmall", "mobs_mc:greensmall") +mobs:alias_mob("mobs:greenmediuml", "mobs_mc:greenmedium") +mobs:alias_mob("mobs:greenbig", "mobs_mc:greenbig") + +mobs:alias_mob("slimes:lavasmall", "mobs_mc:lavasmall") +mobs:alias_mob("slimes:lavabig", "mobs_mc:lavabig") +mobs:alias_mob("slimes:greensmall", "mobs_mc:greensmall") +mobs:alias_mob("slimes:greenmediuml", "mobs_mc:greenmedium") +mobs:alias_mob("slimes:greenbig", "mobs_mc:greenbig") + + +-- spawn eggs +mobs:register_egg("mobs_mc:lavabig", "Magma Cube", "spawn_egg_magma_cube.png") +mobs:register_egg("mobs_mc:greenbig", "Green Slime", "spawn_egg_slime.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Slimes loaded") +end diff --git a/mods/mobs_mc/sounds/Chicken1.ogg b/mods/mobs_mc/sounds/Chicken1.ogg new file mode 100644 index 000000000..05f7aa831 Binary files /dev/null and b/mods/mobs_mc/sounds/Chicken1.ogg differ diff --git a/mods/mobs_mc/sounds/Chickenhurt1.ogg b/mods/mobs_mc/sounds/Chickenhurt1.ogg new file mode 100644 index 000000000..a56a08d72 Binary files /dev/null and b/mods/mobs_mc/sounds/Chickenhurt1.ogg differ diff --git a/mods/mobs_mc/sounds/Chickenplop.ogg b/mods/mobs_mc/sounds/Chickenplop.ogg new file mode 100644 index 000000000..b609080b7 Binary files /dev/null and b/mods/mobs_mc/sounds/Chickenplop.ogg differ diff --git a/mods/mobs_mc/sounds/Cow1.ogg b/mods/mobs_mc/sounds/Cow1.ogg new file mode 100644 index 000000000..bc6d9d270 Binary files /dev/null and b/mods/mobs_mc/sounds/Cow1.ogg differ diff --git a/mods/mobs_mc/sounds/Cowhurt1.ogg b/mods/mobs_mc/sounds/Cowhurt1.ogg new file mode 100644 index 000000000..a45f97a98 Binary files /dev/null and b/mods/mobs_mc/sounds/Cowhurt1.ogg differ diff --git a/mods/mobs_mc/sounds/Creeper4.ogg b/mods/mobs_mc/sounds/Creeper4.ogg new file mode 100644 index 000000000..c115443b6 Binary files /dev/null and b/mods/mobs_mc/sounds/Creeper4.ogg differ diff --git a/mods/mobs_mc/sounds/Creeperdeath.ogg b/mods/mobs_mc/sounds/Creeperdeath.ogg new file mode 100644 index 000000000..9a14fc45b Binary files /dev/null and b/mods/mobs_mc/sounds/Creeperdeath.ogg differ diff --git a/mods/mobs_mc/sounds/Fuse.ogg b/mods/mobs_mc/sounds/Fuse.ogg new file mode 100644 index 000000000..199f20674 Binary files /dev/null and b/mods/mobs_mc/sounds/Fuse.ogg differ diff --git a/mods/mobs_mc/sounds/Pig2.ogg b/mods/mobs_mc/sounds/Pig2.ogg new file mode 100644 index 000000000..bf6740670 Binary files /dev/null and b/mods/mobs_mc/sounds/Pig2.ogg differ diff --git a/mods/mobs_mc/sounds/Pigdeath.ogg b/mods/mobs_mc/sounds/Pigdeath.ogg new file mode 100644 index 000000000..959e98b33 Binary files /dev/null and b/mods/mobs_mc/sounds/Pigdeath.ogg differ diff --git a/mods/mobs_mc/sounds/Sheep3.ogg b/mods/mobs_mc/sounds/Sheep3.ogg new file mode 100644 index 000000000..2d333f309 Binary files /dev/null and b/mods/mobs_mc/sounds/Sheep3.ogg differ diff --git a/mods/mobs_mc/sounds/Villager1.ogg b/mods/mobs_mc/sounds/Villager1.ogg new file mode 100644 index 000000000..4596d850c Binary files /dev/null and b/mods/mobs_mc/sounds/Villager1.ogg differ diff --git a/mods/mobs_mc/sounds/Villageraccept.ogg b/mods/mobs_mc/sounds/Villageraccept.ogg new file mode 100644 index 000000000..7dc0bce60 Binary files /dev/null and b/mods/mobs_mc/sounds/Villageraccept.ogg differ diff --git a/mods/mobs_mc/sounds/Villagerdead.ogg b/mods/mobs_mc/sounds/Villagerdead.ogg new file mode 100644 index 000000000..412fe5c59 Binary files /dev/null and b/mods/mobs_mc/sounds/Villagerdead.ogg differ diff --git a/mods/mobs_mc/sounds/Villagerdeny.ogg b/mods/mobs_mc/sounds/Villagerdeny.ogg new file mode 100644 index 000000000..082829f69 Binary files /dev/null and b/mods/mobs_mc/sounds/Villagerdeny.ogg differ diff --git a/mods/mobs_mc/sounds/Villagerhurt1.ogg b/mods/mobs_mc/sounds/Villagerhurt1.ogg new file mode 100644 index 000000000..91ec4976b Binary files /dev/null and b/mods/mobs_mc/sounds/Villagerhurt1.ogg differ diff --git a/mods/mobs_mc/sounds/Villagertrade.ogg b/mods/mobs_mc/sounds/Villagertrade.ogg new file mode 100644 index 000000000..de9417903 Binary files /dev/null and b/mods/mobs_mc/sounds/Villagertrade.ogg differ diff --git a/mods/mobs_mc/sounds/bowhit1.ogg b/mods/mobs_mc/sounds/bowhit1.ogg new file mode 100644 index 000000000..75953fba8 Binary files /dev/null and b/mods/mobs_mc/sounds/bowhit1.ogg differ diff --git a/mods/mobs_mc/sounds/default_punch3.ogg b/mods/mobs_mc/sounds/default_punch3.ogg new file mode 100644 index 000000000..71d829ecb Binary files /dev/null and b/mods/mobs_mc/sounds/default_punch3.ogg differ diff --git a/mods/mobs_mc/sounds/explo.ogg b/mods/mobs_mc/sounds/explo.ogg new file mode 100644 index 000000000..0cc772e17 Binary files /dev/null and b/mods/mobs_mc/sounds/explo.ogg differ diff --git a/mods/mobs_mc/sounds/green_slime_attack.ogg b/mods/mobs_mc/sounds/green_slime_attack.ogg new file mode 100644 index 000000000..7afa4cbb1 Binary files /dev/null and b/mods/mobs_mc/sounds/green_slime_attack.ogg differ diff --git a/mods/mobs_mc/sounds/green_slime_damage.ogg b/mods/mobs_mc/sounds/green_slime_damage.ogg new file mode 100644 index 000000000..966ff77ed Binary files /dev/null and b/mods/mobs_mc/sounds/green_slime_damage.ogg differ diff --git a/mods/mobs_mc/sounds/green_slime_death.ogg b/mods/mobs_mc/sounds/green_slime_death.ogg new file mode 100644 index 000000000..7eef1f4ce Binary files /dev/null and b/mods/mobs_mc/sounds/green_slime_death.ogg differ diff --git a/mods/mobs_mc/sounds/green_slime_jump.ogg b/mods/mobs_mc/sounds/green_slime_jump.ogg new file mode 100644 index 000000000..2c836e415 Binary files /dev/null and b/mods/mobs_mc/sounds/green_slime_jump.ogg differ diff --git a/mods/mobs_mc/sounds/green_slime_land.ogg b/mods/mobs_mc/sounds/green_slime_land.ogg new file mode 100644 index 000000000..449031712 Binary files /dev/null and b/mods/mobs_mc/sounds/green_slime_land.ogg differ diff --git a/mods/mobs_mc/sounds/mobs_eerie.ogg b/mods/mobs_mc/sounds/mobs_eerie.ogg new file mode 100644 index 000000000..988509bd4 Binary files /dev/null and b/mods/mobs_mc/sounds/mobs_eerie.ogg differ diff --git a/mods/mobs_mc/sounds/mobs_fireball.ogg b/mods/mobs_mc/sounds/mobs_fireball.ogg new file mode 100644 index 000000000..bdc4ac21f Binary files /dev/null and b/mods/mobs_mc/sounds/mobs_fireball.ogg differ diff --git a/mods/mobs_mc/sounds/mobs_sandmonster.ogg b/mods/mobs_mc/sounds/mobs_sandmonster.ogg new file mode 100644 index 000000000..2feae6ae0 Binary files /dev/null and b/mods/mobs_mc/sounds/mobs_sandmonster.ogg differ diff --git a/mods/mobs_mc/sounds/mobs_sheep.ogg b/mods/mobs_mc/sounds/mobs_sheep.ogg new file mode 100644 index 000000000..4e7e2329b Binary files /dev/null and b/mods/mobs_mc/sounds/mobs_sheep.ogg differ diff --git a/mods/mobs_mc/sounds/mobs_spider.ogg b/mods/mobs_mc/sounds/mobs_spider.ogg new file mode 100644 index 000000000..41050067a Binary files /dev/null and b/mods/mobs_mc/sounds/mobs_spider.ogg differ diff --git a/mods/mobs_mc/sounds/skeleton1.ogg b/mods/mobs_mc/sounds/skeleton1.ogg new file mode 100644 index 000000000..57a0c75cc Binary files /dev/null and b/mods/mobs_mc/sounds/skeleton1.ogg differ diff --git a/mods/mobs_mc/sounds/skeletondeath.ogg b/mods/mobs_mc/sounds/skeletondeath.ogg new file mode 100644 index 000000000..fa79cdf90 Binary files /dev/null and b/mods/mobs_mc/sounds/skeletondeath.ogg differ diff --git a/mods/mobs_mc/sounds/skeletonhurt1.ogg b/mods/mobs_mc/sounds/skeletonhurt1.ogg new file mode 100644 index 000000000..7dd4ca480 Binary files /dev/null and b/mods/mobs_mc/sounds/skeletonhurt1.ogg differ diff --git a/mods/mobs_mc/sounds/zombie1.ogg b/mods/mobs_mc/sounds/zombie1.ogg new file mode 100644 index 000000000..8ebc98127 Binary files /dev/null and b/mods/mobs_mc/sounds/zombie1.ogg differ diff --git a/mods/mobs_mc/sounds/zombiedeath.ogg b/mods/mobs_mc/sounds/zombiedeath.ogg new file mode 100644 index 000000000..9bbb6bff4 Binary files /dev/null and b/mods/mobs_mc/sounds/zombiedeath.ogg differ diff --git a/mods/mobs_mc/sounds/zombiehurt1.ogg b/mods/mobs_mc/sounds/zombiehurt1.ogg new file mode 100644 index 000000000..cda126c97 Binary files /dev/null and b/mods/mobs_mc/sounds/zombiehurt1.ogg differ diff --git a/mods/mobs_mc/spider.lua b/mods/mobs_mc/spider.lua new file mode 100644 index 000000000..3ea41565c --- /dev/null +++ b/mods/mobs_mc/spider.lua @@ -0,0 +1,104 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +-- Spider by AspireMint (fishyWET (CC-BY-SA 3.0 license for texture) +mobs:register_mob("mobs_mc:spider", { + type = "monster", + passive = false, + attack_type = "dogfight", + pathfinding = true, + damage = 2, + hp_min = 12, + hp_max = 20, + armor = 100, + collisionbox = {-0.9, -0.01, -0.7, 0.7, 0.6, 0.7}, + visual = "mesh", + mesh = "mobs_spider.x", + textures = { + {"mobs_spider.png"} + }, + visual_size = {x=5,y=5}, + makes_footstep_sound = false, + sounds = { + random = "mobs_spider", + attack = "mobs_spider", + }, + walk_velocity = 1.7, + run_velocity = 3.3, + jump = true, + view_range = 15, + floats = 0, + group_attack = true, + replace_rate = 5, + replace_what = {"default:torch"}, + replace_with = "air", + replace_offset = -1, + peaceful = false, + drops = { + {name = "default:string", + chance = 1, min = 1, max = 5,}, + {name = "mcl_mobitems:meat_raw", + chance = 1, min = 0, max = 1,}, + }, + water_damage = 5, + lava_damage = 50, + light_damage = 0, + fear_height = 14, + animation = { + speed_normal = 15, speed_run = 15, + stand_start = 1, stand_end = 1, + walk_start = 20, walk_end = 40, + run_start = 20, run_end = 40, + punch_start = 50, punch_end = 90, + }, +}) +mobs:register_spawn("mobs_mc:spider", {"default:stone" ,"default:gravel","default:cobble","group:crumbly", "group:cracky", "group:choppy", "group:snappy"}, 4, -1, 17000, 2, 3000) + + +-- Cobweb +minetest.register_node(":mobs:cobweb", { + description = "Cobweb", + drawtype = "plantlike", + visual_scale = 1.1, + tiles = {"mobs_cobweb.png"}, + inventory_image = "mobs_cobweb.png", + paramtype = "light", + sunlight_propagates = true, + liquid_viscosity = 11, + liquidtype = "source", + liquid_alternative_flowing = "mobs:cobweb", + liquid_alternative_source = "mobs:cobweb", + liquid_renewable = false, + liquid_range = 0, + walkable = false, + groups = {snappy=1,liquid=3}, + drop = "farming:cotton", + sounds = default.node_sound_leaves_defaults(), +}) + +minetest.register_craft({ + output = "mobs:cobweb", + recipe = { + {"farming:string", "", "farming:string"}, + {"", "farming:string", ""}, + {"farming:string", "", "farming:string"}, + } +}) + + +-- compatibility +mobs:alias_mob("mobs:spider", "mobs_mc:spider") +mobs:alias_mob("esmobs:spider", "mobs_mc:spider") + +-- spawn eggs +mobs:register_egg("mobs_mc:spider", "Spider", "mobs_cobweb.png", 1) + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Spiders loaded") +end diff --git a/mods/mobs_mc/textures/Original_Zombiepig_Man_by_Fedora_P.png b/mods/mobs_mc/textures/Original_Zombiepig_Man_by_Fedora_P.png new file mode 100644 index 000000000..7125326ce Binary files /dev/null and b/mods/mobs_mc/textures/Original_Zombiepig_Man_by_Fedora_P.png differ diff --git a/mods/mobs_mc/textures/bones_bottom.png b/mods/mobs_mc/textures/bones_bottom.png new file mode 100644 index 000000000..899ae3b38 Binary files /dev/null and b/mods/mobs_mc/textures/bones_bottom.png differ diff --git a/mods/mobs_mc/textures/bones_front.png b/mods/mobs_mc/textures/bones_front.png new file mode 100644 index 000000000..326129065 Binary files /dev/null and b/mods/mobs_mc/textures/bones_front.png differ diff --git a/mods/mobs_mc/textures/bones_rear.png b/mods/mobs_mc/textures/bones_rear.png new file mode 100644 index 000000000..bf66d5f38 Binary files /dev/null and b/mods/mobs_mc/textures/bones_rear.png differ diff --git a/mods/mobs_mc/textures/bones_side.png b/mods/mobs_mc/textures/bones_side.png new file mode 100644 index 000000000..88fdfddf3 Binary files /dev/null and b/mods/mobs_mc/textures/bones_side.png differ diff --git a/mods/mobs_mc/textures/bones_top.png b/mods/mobs_mc/textures/bones_top.png new file mode 100644 index 000000000..08b156db6 Binary files /dev/null and b/mods/mobs_mc/textures/bones_top.png differ diff --git a/mods/mobs_mc/textures/carrot_on_a_stick.png b/mods/mobs_mc/textures/carrot_on_a_stick.png new file mode 100644 index 000000000..75547418d Binary files /dev/null and b/mods/mobs_mc/textures/carrot_on_a_stick.png differ diff --git a/mods/mobs_mc/textures/ghast_front.png b/mods/mobs_mc/textures/ghast_front.png new file mode 100644 index 000000000..e06373b98 Binary files /dev/null and b/mods/mobs_mc/textures/ghast_front.png differ diff --git a/mods/mobs_mc/textures/ghast_white.png b/mods/mobs_mc/textures/ghast_white.png new file mode 100644 index 000000000..ab1fb50d2 Binary files /dev/null and b/mods/mobs_mc/textures/ghast_white.png differ diff --git a/mods/mobs_mc/textures/green_slime_blood.png b/mods/mobs_mc/textures/green_slime_blood.png new file mode 100644 index 000000000..5086778ac Binary files /dev/null and b/mods/mobs_mc/textures/green_slime_blood.png differ diff --git a/mods/mobs_mc/textures/green_slime_bottom.png b/mods/mobs_mc/textures/green_slime_bottom.png new file mode 100644 index 000000000..20a7dd812 Binary files /dev/null and b/mods/mobs_mc/textures/green_slime_bottom.png differ diff --git a/mods/mobs_mc/textures/green_slime_front.png b/mods/mobs_mc/textures/green_slime_front.png new file mode 100644 index 000000000..fe02badae Binary files /dev/null and b/mods/mobs_mc/textures/green_slime_front.png differ diff --git a/mods/mobs_mc/textures/green_slime_sides.png b/mods/mobs_mc/textures/green_slime_sides.png new file mode 100644 index 000000000..44f512c50 Binary files /dev/null and b/mods/mobs_mc/textures/green_slime_sides.png differ diff --git a/mods/mobs_mc/textures/green_slime_top.png b/mods/mobs_mc/textures/green_slime_top.png new file mode 100644 index 000000000..b83cee698 Binary files /dev/null and b/mods/mobs_mc/textures/green_slime_top.png differ diff --git a/mods/mobs_mc/textures/lava_slime_blood.png b/mods/mobs_mc/textures/lava_slime_blood.png new file mode 100644 index 000000000..bf29b1c44 Binary files /dev/null and b/mods/mobs_mc/textures/lava_slime_blood.png differ diff --git a/mods/mobs_mc/textures/lava_slime_bottom.png b/mods/mobs_mc/textures/lava_slime_bottom.png new file mode 100644 index 000000000..a3a3ab704 Binary files /dev/null and b/mods/mobs_mc/textures/lava_slime_bottom.png differ diff --git a/mods/mobs_mc/textures/lava_slime_front.png b/mods/mobs_mc/textures/lava_slime_front.png new file mode 100644 index 000000000..8c924eeca Binary files /dev/null and b/mods/mobs_mc/textures/lava_slime_front.png differ diff --git a/mods/mobs_mc/textures/lava_slime_sides.png b/mods/mobs_mc/textures/lava_slime_sides.png new file mode 100644 index 000000000..f84c99817 Binary files /dev/null and b/mods/mobs_mc/textures/lava_slime_sides.png differ diff --git a/mods/mobs_mc/textures/lava_slime_top.png b/mods/mobs_mc/textures/lava_slime_top.png new file mode 100644 index 000000000..8b1496135 Binary files /dev/null and b/mods/mobs_mc/textures/lava_slime_top.png differ diff --git a/mods/mobs_mc/textures/mobs_blood.png b/mods/mobs_mc/textures/mobs_blood.png new file mode 100644 index 000000000..77cfbdaa6 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_blood.png differ diff --git a/mods/mobs_mc/textures/mobs_bucket_milk.png b/mods/mobs_mc/textures/mobs_bucket_milk.png new file mode 100644 index 000000000..8b46f30ee Binary files /dev/null and b/mods/mobs_mc/textures/mobs_bucket_milk.png differ diff --git a/mods/mobs_mc/textures/mobs_chicken.png b/mods/mobs_mc/textures/mobs_chicken.png new file mode 100644 index 000000000..9875eef58 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_chicken.png differ diff --git a/mods/mobs_mc/textures/mobs_chicken_egg.png b/mods/mobs_mc/textures/mobs_chicken_egg.png new file mode 100644 index 000000000..be8a4e1cf Binary files /dev/null and b/mods/mobs_mc/textures/mobs_chicken_egg.png differ diff --git a/mods/mobs_mc/textures/mobs_chicken_egg_fried.png b/mods/mobs_mc/textures/mobs_chicken_egg_fried.png new file mode 100644 index 000000000..ad144a50d Binary files /dev/null and b/mods/mobs_mc/textures/mobs_chicken_egg_fried.png differ diff --git a/mods/mobs_mc/textures/mobs_chicken_egg_overlay.png b/mods/mobs_mc/textures/mobs_chicken_egg_overlay.png new file mode 100644 index 000000000..e81716a59 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_chicken_egg_overlay.png differ diff --git a/mods/mobs_mc/textures/mobs_cobweb.png b/mods/mobs_mc/textures/mobs_cobweb.png new file mode 100644 index 000000000..05b4fdcf4 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_cobweb.png differ diff --git a/mods/mobs_mc/textures/mobs_cow.png b/mods/mobs_mc/textures/mobs_cow.png new file mode 100644 index 000000000..8f4728c2c Binary files /dev/null and b/mods/mobs_mc/textures/mobs_cow.png differ diff --git a/mods/mobs/models/mobs_creeper.png b/mods/mobs_mc/textures/mobs_creeper.png similarity index 100% rename from mods/mobs/models/mobs_creeper.png rename to mods/mobs_mc/textures/mobs_creeper.png diff --git a/mods/mobs_mc/textures/mobs_creeper_front.png b/mods/mobs_mc/textures/mobs_creeper_front.png new file mode 100644 index 000000000..145be1b7f Binary files /dev/null and b/mods/mobs_mc/textures/mobs_creeper_front.png differ diff --git a/mods/mobs_mc/textures/mobs_creeper_side.png b/mods/mobs_mc/textures/mobs_creeper_side.png new file mode 100644 index 000000000..a44bb033c Binary files /dev/null and b/mods/mobs_mc/textures/mobs_creeper_side.png differ diff --git a/mods/mobs_mc/textures/mobs_creeper_top.png b/mods/mobs_mc/textures/mobs_creeper_top.png new file mode 100644 index 000000000..518883491 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_creeper_top.png differ diff --git a/mods/mobs_mc/textures/mobs_dog.png b/mods/mobs_mc/textures/mobs_dog.png new file mode 100644 index 000000000..d2279521b Binary files /dev/null and b/mods/mobs_mc/textures/mobs_dog.png differ diff --git a/mods/mobs_mc/textures/mobs_endermen.png b/mods/mobs_mc/textures/mobs_endermen.png new file mode 100644 index 000000000..044d4f4e9 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_endermen.png differ diff --git a/mods/mobs_mc/textures/mobs_endermen_front.png b/mods/mobs_mc/textures/mobs_endermen_front.png new file mode 100644 index 000000000..d3439d645 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_endermen_front.png differ diff --git a/mods/mobs_mc/textures/mobs_endermen_side.png b/mods/mobs_mc/textures/mobs_endermen_side.png new file mode 100644 index 000000000..4b4fab7b1 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_endermen_side.png differ diff --git a/mods/mobs_mc/textures/mobs_endermen_top.png b/mods/mobs_mc/textures/mobs_endermen_top.png new file mode 100644 index 000000000..33c782515 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_endermen_top.png differ diff --git a/mods/mobs_mc/textures/mobs_farmer.png b/mods/mobs_mc/textures/mobs_farmer.png new file mode 100644 index 000000000..bd6f2b5f7 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_farmer.png differ diff --git a/mods/mobs_mc/textures/mobs_feather.png b/mods/mobs_mc/textures/mobs_feather.png new file mode 100644 index 000000000..5fc423db2 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_feather.png differ diff --git a/mods/mobs_mc/textures/mobs_fireball.png b/mods/mobs_mc/textures/mobs_fireball.png new file mode 100644 index 000000000..1ca4522f1 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_fireball.png differ diff --git a/mods/mobs_mc/textures/mobs_ghast_front.png b/mods/mobs_mc/textures/mobs_ghast_front.png new file mode 100644 index 000000000..ba61b38cb Binary files /dev/null and b/mods/mobs_mc/textures/mobs_ghast_front.png differ diff --git a/mods/mobs_mc/textures/mobs_horse_ara_inv.png b/mods/mobs_mc/textures/mobs_horse_ara_inv.png new file mode 100644 index 000000000..c69b08845 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horse_ara_inv.png differ diff --git a/mods/mobs_mc/textures/mobs_horse_inv.png b/mods/mobs_mc/textures/mobs_horse_inv.png new file mode 100644 index 000000000..134048ede Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horse_inv.png differ diff --git a/mods/mobs_mc/textures/mobs_horse_peg_inv.png b/mods/mobs_mc/textures/mobs_horse_peg_inv.png new file mode 100644 index 000000000..16348b3a9 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horse_peg_inv.png differ diff --git a/mods/mobs_mc/textures/mobs_horsearah.png b/mods/mobs_mc/textures/mobs_horsearah.png new file mode 100644 index 000000000..7068bf9e7 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horsearah.png differ diff --git a/mods/mobs_mc/textures/mobs_horsearah1.png b/mods/mobs_mc/textures/mobs_horsearah1.png new file mode 100644 index 000000000..43bf548a1 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horsearah1.png differ diff --git a/mods/mobs_mc/textures/mobs_horseh.png b/mods/mobs_mc/textures/mobs_horseh.png new file mode 100644 index 000000000..e0c6f613f Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horseh.png differ diff --git a/mods/mobs_mc/textures/mobs_horseh1.png b/mods/mobs_mc/textures/mobs_horseh1.png new file mode 100644 index 000000000..7bdea0a17 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horseh1.png differ diff --git a/mods/mobs_mc/textures/mobs_horsepegh.png b/mods/mobs_mc/textures/mobs_horsepegh.png new file mode 100644 index 000000000..f4a7e76f9 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horsepegh.png differ diff --git a/mods/mobs_mc/textures/mobs_horsepegh1.png b/mods/mobs_mc/textures/mobs_horsepegh1.png new file mode 100644 index 000000000..d79a12f6d Binary files /dev/null and b/mods/mobs_mc/textures/mobs_horsepegh1.png differ diff --git a/mods/mobs_mc/textures/mobs_mc_chicken.png b/mods/mobs_mc/textures/mobs_mc_chicken.png new file mode 100644 index 000000000..9875eef58 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_mc_chicken.png differ diff --git a/mods/mobs_mc/textures/mobs_mc_cow.png b/mods/mobs_mc/textures/mobs_mc_cow.png new file mode 100644 index 000000000..8f4728c2c Binary files /dev/null and b/mods/mobs_mc/textures/mobs_mc_cow.png differ diff --git a/mods/mobs_mc/textures/mobs_pig.png b/mods/mobs_mc/textures/mobs_pig.png new file mode 100644 index 000000000..17f41ffb9 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_pig.png differ diff --git a/mods/mobs_mc/textures/mobs_pig_with_saddle.png b/mods/mobs_mc/textures/mobs_pig_with_saddle.png new file mode 100644 index 000000000..2b0fe8412 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_pig_with_saddle.png differ diff --git a/mods/mobs_mc/textures/mobs_rotten_flesh.png b/mods/mobs_mc/textures/mobs_rotten_flesh.png new file mode 100644 index 000000000..079225022 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_rotten_flesh.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep.png b/mods/mobs_mc/textures/mobs_sheep.png new file mode 100644 index 000000000..5d4a556c2 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_black.png b/mods/mobs_mc/textures/mobs_sheep_black.png new file mode 100644 index 000000000..84e4f07c5 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_black.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_blue.png b/mods/mobs_mc/textures/mobs_sheep_blue.png new file mode 100644 index 000000000..c0678aa55 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_blue.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_brown.png b/mods/mobs_mc/textures/mobs_sheep_brown.png new file mode 100644 index 000000000..86beed492 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_brown.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_cyan.png b/mods/mobs_mc/textures/mobs_sheep_cyan.png new file mode 100644 index 000000000..1ddb86c96 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_cyan.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_dark_green.png b/mods/mobs_mc/textures/mobs_sheep_dark_green.png new file mode 100644 index 000000000..c05b6a7eb Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_dark_green.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_dark_grey.png b/mods/mobs_mc/textures/mobs_sheep_dark_grey.png new file mode 100644 index 000000000..045c3251a Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_dark_grey.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_green.png b/mods/mobs_mc/textures/mobs_sheep_green.png new file mode 100644 index 000000000..d96f30989 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_green.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_grey.png b/mods/mobs_mc/textures/mobs_sheep_grey.png new file mode 100644 index 000000000..0c04ec4b9 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_grey.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_light_blue.png b/mods/mobs_mc/textures/mobs_sheep_light_blue.png new file mode 100644 index 000000000..9914881c7 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_light_blue.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_magenta.png b/mods/mobs_mc/textures/mobs_sheep_magenta.png new file mode 100644 index 000000000..198db17a1 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_magenta.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_orange.png b/mods/mobs_mc/textures/mobs_sheep_orange.png new file mode 100644 index 000000000..6844219d4 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_orange.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_pink.png b/mods/mobs_mc/textures/mobs_sheep_pink.png new file mode 100644 index 000000000..f5434592b Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_pink.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_red.png b/mods/mobs_mc/textures/mobs_sheep_red.png new file mode 100644 index 000000000..9be3f28df Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_red.png differ diff --git a/mods/mobs/models/sheep.png b/mods/mobs_mc/textures/mobs_sheep_sheared.png similarity index 100% rename from mods/mobs/models/sheep.png rename to mods/mobs_mc/textures/mobs_sheep_sheared.png diff --git a/mods/mobs_mc/textures/mobs_sheep_violet.png b/mods/mobs_mc/textures/mobs_sheep_violet.png new file mode 100644 index 000000000..a8c80c3b7 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_violet.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_white.png b/mods/mobs_mc/textures/mobs_sheep_white.png new file mode 100644 index 000000000..6ca525a2e Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_white.png differ diff --git a/mods/mobs_mc/textures/mobs_sheep_yellow.png b/mods/mobs_mc/textures/mobs_sheep_yellow.png new file mode 100644 index 000000000..7c8b65e29 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_sheep_yellow.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton.png b/mods/mobs_mc/textures/mobs_skeleton.png new file mode 100644 index 000000000..78113e105 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton2.png b/mods/mobs_mc/textures/mobs_skeleton2.png new file mode 100644 index 000000000..5e3f5166b Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton2.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton2_front.png b/mods/mobs_mc/textures/mobs_skeleton2_front.png new file mode 100644 index 000000000..21fa36277 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton2_front.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton2_side.png b/mods/mobs_mc/textures/mobs_skeleton2_side.png new file mode 100644 index 000000000..90ad9cfc1 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton2_side.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton2_top.png b/mods/mobs_mc/textures/mobs_skeleton2_top.png new file mode 100644 index 000000000..4cc3dfe61 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton2_top.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton_front.png b/mods/mobs_mc/textures/mobs_skeleton_front.png new file mode 100644 index 000000000..06cb1e2e3 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton_front.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton_side.png b/mods/mobs_mc/textures/mobs_skeleton_side.png new file mode 100644 index 000000000..db80a5e0e Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton_side.png differ diff --git a/mods/mobs_mc/textures/mobs_skeleton_top.png b/mods/mobs_mc/textures/mobs_skeleton_top.png new file mode 100644 index 000000000..2c174e835 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_skeleton_top.png differ diff --git a/mods/mobs_mc/textures/mobs_spider.png b/mods/mobs_mc/textures/mobs_spider.png new file mode 100644 index 000000000..2b992d138 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_spider.png differ diff --git a/mods/mobs_mc/textures/mobs_spider_front.png b/mods/mobs_mc/textures/mobs_spider_front.png new file mode 100644 index 000000000..16eb6f5c0 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_spider_front.png differ diff --git a/mods/mobs_mc/textures/mobs_spider_side.png b/mods/mobs_mc/textures/mobs_spider_side.png new file mode 100644 index 000000000..b9a334c02 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_spider_side.png differ diff --git a/mods/mobs_mc/textures/mobs_spider_top.png b/mods/mobs_mc/textures/mobs_spider_top.png new file mode 100644 index 000000000..fd5cfaa58 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_spider_top.png differ diff --git a/mods/mobs_mc/textures/mobs_wolf.png b/mods/mobs_mc/textures/mobs_wolf.png new file mode 100644 index 000000000..dc45bb989 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_wolf.png differ diff --git a/mods/mobs_mc/textures/mobs_zombie.png b/mods/mobs_mc/textures/mobs_zombie.png new file mode 100644 index 000000000..99d1c0395 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombie.png differ diff --git a/mods/mobs_mc/textures/mobs_zombie_front.png b/mods/mobs_mc/textures/mobs_zombie_front.png new file mode 100644 index 000000000..53627a50a Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombie_front.png differ diff --git a/mods/mobs_mc/textures/mobs_zombie_pigman.png b/mods/mobs_mc/textures/mobs_zombie_pigman.png new file mode 100644 index 000000000..151aa7b3b Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombie_pigman.png differ diff --git a/mods/mobs_mc/textures/mobs_zombie_side.png b/mods/mobs_mc/textures/mobs_zombie_side.png new file mode 100644 index 000000000..a97d5c95a Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombie_side.png differ diff --git a/mods/mobs_mc/textures/mobs_zombie_top.png b/mods/mobs_mc/textures/mobs_zombie_top.png new file mode 100644 index 000000000..e1d59f247 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombie_top.png differ diff --git a/mods/mobs_mc/textures/mobs_zombiepig_front.png b/mods/mobs_mc/textures/mobs_zombiepig_front.png new file mode 100644 index 000000000..fc7ce1bbd Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombiepig_front.png differ diff --git a/mods/mobs_mc/textures/mobs_zombiepig_side.png b/mods/mobs_mc/textures/mobs_zombiepig_side.png new file mode 100644 index 000000000..df4871c98 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombiepig_side.png differ diff --git a/mods/mobs_mc/textures/mobs_zombiepig_top.png b/mods/mobs_mc/textures/mobs_zombiepig_top.png new file mode 100644 index 000000000..2043396e0 Binary files /dev/null and b/mods/mobs_mc/textures/mobs_zombiepig_top.png differ diff --git a/mods/mobs_mc/textures/mutton_cooked.png b/mods/mobs_mc/textures/mutton_cooked.png new file mode 100644 index 000000000..b43114d64 Binary files /dev/null and b/mods/mobs_mc/textures/mutton_cooked.png differ diff --git a/mods/mobs_mc/textures/mutton_raw.png b/mods/mobs_mc/textures/mutton_raw.png new file mode 100644 index 000000000..197a626d7 Binary files /dev/null and b/mods/mobs_mc/textures/mutton_raw.png differ diff --git a/mods/mobs_mc/textures/saddle.png b/mods/mobs_mc/textures/saddle.png new file mode 100644 index 000000000..e80099cec Binary files /dev/null and b/mods/mobs_mc/textures/saddle.png differ diff --git a/mods/mobs_mc/textures/spawn_egg.png b/mods/mobs_mc/textures/spawn_egg.png new file mode 100644 index 000000000..de87b179f Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_chicken.png b/mods/mobs_mc/textures/spawn_egg_chicken.png new file mode 100644 index 000000000..363a91adf Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_chicken.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_cow.png b/mods/mobs_mc/textures/spawn_egg_cow.png new file mode 100644 index 000000000..48eb66821 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_cow.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_creeper.png b/mods/mobs_mc/textures/spawn_egg_creeper.png new file mode 100644 index 000000000..cd50ac0e6 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_creeper.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_guardian.png b/mods/mobs_mc/textures/spawn_egg_guardian.png new file mode 100644 index 000000000..cf4c8871a Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_guardian.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_magma_cube.png b/mods/mobs_mc/textures/spawn_egg_magma_cube.png new file mode 100644 index 000000000..a9eee66a7 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_magma_cube.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_overlay.png b/mods/mobs_mc/textures/spawn_egg_overlay.png new file mode 100644 index 000000000..5661a2856 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_overlay.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_pig.png b/mods/mobs_mc/textures/spawn_egg_pig.png new file mode 100644 index 000000000..d98768c53 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_pig.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_sheep.png b/mods/mobs_mc/textures/spawn_egg_sheep.png new file mode 100644 index 000000000..28e0f7450 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_sheep.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_skeleton.png b/mods/mobs_mc/textures/spawn_egg_skeleton.png new file mode 100644 index 000000000..6595834d7 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_skeleton.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_slime.png b/mods/mobs_mc/textures/spawn_egg_slime.png new file mode 100644 index 000000000..8c5ea7b22 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_slime.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_villager.png b/mods/mobs_mc/textures/spawn_egg_villager.png new file mode 100644 index 000000000..ff634e8a8 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_villager.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_zombie.png b/mods/mobs_mc/textures/spawn_egg_zombie.png new file mode 100644 index 000000000..0a3ba2660 Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_zombie.png differ diff --git a/mods/mobs_mc/textures/spawn_egg_zombie_pigman.png b/mods/mobs_mc/textures/spawn_egg_zombie_pigman.png new file mode 100644 index 000000000..90ea8dccf Binary files /dev/null and b/mods/mobs_mc/textures/spawn_egg_zombie_pigman.png differ diff --git a/mods/mobs_mc/textures/trading_formspec_bg.png b/mods/mobs_mc/textures/trading_formspec_bg.png new file mode 100644 index 000000000..3effd9878 Binary files /dev/null and b/mods/mobs_mc/textures/trading_formspec_bg.png differ diff --git a/mods/mobs_mc/villager.lua b/mods/mobs_mc/villager.lua new file mode 100644 index 000000000..6fcf3362d --- /dev/null +++ b/mods/mobs_mc/villager.lua @@ -0,0 +1,190 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +mobs:register_mob("mobs_mc:villager", { + type = "npc", + hp_min = 35, + hp_max = 75, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.95, 0.4}, + textures = { + {"mobs_farmer.png"} + }, + visual = "mesh", + mesh = "mobs_villager.x", + makes_footstep_sound = true, + damage = 2, + walk_velocity = 1.2, + run_velocity = 2.4, + damage = 1, + group_attack = true, + attack_type = "dogfight", + drops = { + {name = "default:apple", + chance = 10, + min = 1, + max = 2,}, + }, + armor = 90, + sounds = { + random = "Villager1", + death = "Villagerdead", + damage = "Villagerhurt1", + }, + animation = { + speed_normal = 30, + speed_run = 60, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 49, + run_start = 24, + run_end = 49, + hurt_start = 85, + hurt_end = 115, + death_start = 117, + death_end = 145, + shoot_start = 50, + shoot_end = 82, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 0, + view_range = 16, + fear_height = 5, + --[[ + on_rightclick = function(self, clicker) + local inv + inv = minetest.get_inventory({type="detached", name="trading_inv"}) + if not inv then + inv = minetest.create_detached_inventory("trading_inv", { + allow_take = function(inv, listname, index, stack, player) + if listname == "output" then + inv:remove_item("input", inv:get_stack("wanted", 1)) + minetest.sound_play("Villageraccept", {to_player = player:get_player_name()}) + end + if listname == "input" or listname == "output" then + --return 1000 + return 0 + else + return 0 + end + end, + allow_put = function(inv, listname, index, stack, player) + if listname == "input" then + return 1000 + else + return 0 + end + end, + on_put = function(inv, listname, index, stack, player) + if inv:contains_item("input", inv:get_stack("wanted", 1)) then + inv:set_stack("output", 1, inv:get_stack("offered", 1)) + minetest.sound_play("Villageraccept", {to_player = player:get_player_name()}) + else + inv:set_stack("output", 1, ItemStack("")) + minetest.sound_play("Villagerdeny", {to_player = player:get_player_name()}) + end + end, + on_move = function(inv, from_list, from_index, to_list, to_index, count, player) + if inv:contains_item("input", inv:get_stack("wanted", 1)) then + inv:set_stack("output", 1, inv:get_stack("offered", 1)) + minetest.sound_play("Villageraccept", {to_player = player:get_player_name()}) + else + inv:set_stack("output", 1, ItemStack("")) + minetest.sound_play("Villagerdeny", {to_player = player:get_player_name()}) + end + end, + on_take = function(inv, listname, index, stack, player) + if inv:contains_item("input", inv:get_stack("wanted", 1)) then + inv:set_stack("output", 1, inv:get_stack("offered", 1)) + minetest.sound_play("Villageraccept", {to_player = player:get_player_name()}) + else + inv:set_stack("output", 1, ItemStack("")) + minetest.sound_play("Villagerdeny", {to_player = player:get_player_name()}) + + end + end, + }) + end + inv:set_size("input", 1) + inv:set_size("output", 1) + inv:set_size("wanted", 1) + inv:set_size("offered", 1) + + local trades = { + {"default:apple 12", "default:clay_lump 1"}, + {"default:coal_lump 20", "default:clay_lump 1"}, + {"default:paper 30", "default:clay_lump 1"}, + {"mobs:leather 10", "default:clay_lump 1"}, + {"default:book 2", "default:clay_lump 1"}, + {"default:clay_lump 3", "default:clay_lump 1"}, + {"farming:potato 15", "default:clay_lump 1"}, + {"farming:wheat 20", "default:clay_lump 1"}, + {"farming:carrot 15", "default:clay_lump 1"}, + {"farming:melon_8 8", "default:clay_lump 1"}, + {"mobs:rotten_flesh 40", "default:clay_lump 1"}, + {"default:gold_ingot 10", "default:clay_lump 1"}, + {"farming:cotton 10", "default:clay_lump 1"}, + {"wool:white 15", "default:clay_lump 1"}, + {"farming:pumpkin 8", "default:clay_lump 1"}, + + {"default:clay_lump 1", "mobs:beef_cooked 5"}, + {"default:clay_lump 1", "mobs:chicken_cooked 7"}, + {"default:clay_lump 1", "farming:cookie 6"}, + {"default:clay_lump 1", "farming:pumpkin_bread 3"}, + {"default:clay_lump 1", "mobs:arrow 10"}, + {"default:clay_lump 3", "mobs:bow_wood 1"}, + {"default:clay_lump 8", "fishing:pole_wood 1"}, + --{"default:clay_lump 4", "potionspack:healthii 1"}, + {"default:clay_lump 1", "cake:cake 1"}, + {"default:clay_lump 10", "mobs:saddle 1"}, + {"default:clay_lump 10", "clock:1 1"}, + {"default:clay_lumpd 10", "compass:0 1"}, + {"default:clay_lump 1", "default:glass 5"}, + {"default:clay_lump 1", "nether:glowstone 3"}, + {"default:clay_lump 3", "mobs:shears 1"}, + {"default:clay_lump 10", "default:sword_diamond 1"}, + {"default:clay_lump 20", "3d_armor:chestplate_diamond 1"}, + } + local tradenum = math.random(#trades) + inv:set_stack("wanted", 1, ItemStack(trades[tradenum][1])) + inv:set_stack("offered", 1, ItemStack(trades[tradenum][2])) + + local formspec = + "size[9,8.75]".. + "background[-0.19,-0.25;9.41,9.49;trading_formspec_bg.png]".. + "bgcolor[#080808BB;true]".. + "listcolors[#9990;#FFF7;#FFF0;#160816;#D4D2FF]".. + "list[current_player;main;0,4.5;9,3;9]".. + "list[current_player;main;0,7.74;9,1;]" + .."list[detached:trading_inv;wanted;2,1;1,1;]" + .."list[detached:trading_inv;offered;5.75,1;1,1;]" + .."list[detached:trading_inv;input;2,2.5;1,1;]" + .."list[detached:trading_inv;output;5.75,2.5;1,1;]" + minetest.sound_play("Villagertrade", {to_player = clicker:get_player_name()}) + minetest.show_formspec(clicker:get_player_name(), "tradespec", formspec) + end, + + ]] +}) +--mobs:register_spawn("mobs_mc:villager", {"default:gravel"}, 20, 8, 50, 8, 31000) +mobs:register_spawn("mobs_mc:villager", {"default:gravel"}, 20, 8, 500, 2, 31000) + + +-- compatibility +mobs:alias_mob("mobs:villager", "mobs_mc:villager") + +-- spawn eggs +mobs:register_egg("mobs_mc:villager", "Villager", "spawn_egg_villager.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC mobs loaded") +end \ No newline at end of file diff --git a/mods/mobs_mc/wolf.lua b/mods/mobs_mc/wolf.lua new file mode 100644 index 000000000..5cea05f1b --- /dev/null +++ b/mods/mobs_mc/wolf.lua @@ -0,0 +1,198 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +-- Dog +mobs:register_mob("mobs_mc:dog", { + type = "npc", + passive = true, + hp_min = 55, + hp_max = 75, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + visual = "mesh", + mesh = "mobs_wolf.x", + textures = { + {"mobs_dog.png"}, + }, + makes_footstep_sound = true, + sounds = { + war_cry = "mobs_wolf_attack", + }, + view_range = 15, + stepheight = 1.1, + owner = "", + order = "follow", + floats = {x=0,y=0,z=0}, + walk_velocity = 4, + run_velocity = 4, + stepheight = 1.1, + damage = 3, + group_attack = true, + armor = 100, + attacks_monsters = true, + attack_type = "dogfight", + drops = { + {name = "mcl_mobitems:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 5, + light_damage = 0, + on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + if item:get_name() == "mobs:meat_raw" then + local hp = self.object:get_hp() + if hp + 4 > self.hp_max then return end + if not minetest.setting_getbool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + self.object:set_hp(hp+4) + else + if self.owner == "" then + self.owner = clicker:get_player_name() + else + local formspec = "size[8,4]" + formspec = formspec .. "textlist[2.85,0;2.1,0.5;dialog;What can I do for you?]" + formspec = formspec .. "button_exit[1,1;2,2;dfollow;follow]" + formspec = formspec .. "button_exit[5,1;2,2;dstand;stand]" + formspec = formspec .. "button_exit[0,2;4,4;dfandp;follow and protect]" + formspec = formspec .. "button_exit[4,2;4,4;dsandp;stand and protect]" + formspec = formspec .. "button_exit[1,2;2,2;dgohome; go home]" + formspec = formspec .. "button_exit[5,2;2,2;dsethome; sethome]" + minetest.show_formspec(clicker:get_player_name(), "order", formspec) + minetest.register_on_player_receive_fields(function(clicker, formname, fields) + if fields.dfollow then + self.order = "follow" + self.attacks_monsters = false + end + if fields.dstand then + self.order = "stand" + self.attacks_monsters = false + end + if fields.dfandp then + self.order = "follow" + self.attacks_monsters = true + end + if fields.dsandp then + self.order = "stand" + self.attacks_monsters = true + end + if fields.dsethome then + self.floats = self.object:getpos() + end + if fields.dgohome then + if self.floats then + self.order = "stand" + self.object:setpos(self.floats) + end + end + end) + end + end + end, + animation = { + speed_normal = 20, + speed_run = 30, + stand_start = 10, + stand_end = 20, + walk_start = 75, + walk_end = 100, + run_start = 100, + run_end = 130, + punch_start = 135, + punch_end = 155, + }, + jump = true, + step = 1, + blood_texture = "mobs_blood.png", +}) + + +-- Wolf by KrupnoPavel +mobs:register_mob("mobs_mc:wolf", { + type = "animal", + hp_min = 55, + hp_max = 75, + passive = false, + group_attack = true, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4}, + visual = "mesh", + mesh = "mobs_wolf.x", + textures = { + {"mobs_wolf.png"}, + }, + makes_footstep_sound = true, + sounds = { + war_cry = "mobs_wolf_attack", + }, + view_range = 7, + walk_velocity = 2, + run_velocity = 3, + stepheight = 1.1, + damage = 3, + armor = 200, + attack_type = "dogfight", + drops = { + {name = "mobs:meat_raw", + chance = 1, + min = 2, + max = 3,}, + }, + drawtype = "front", + water_damage = 0, + lava_damage = 5, + light_damage = 0, + on_rightclick = function(self, clicker) + tool = clicker:get_wielded_item() + local dog + local ent + if tool:get_name() == "mobs:meat_raw" then + clicker:get_inventory():remove_item("main", "mobs:meat_raw") + dog = minetest.add_entity(self.object:getpos(), "mobs_mc:dog") + ent = dog:get_luaentity() + ent.owner = clicker:get_player_name() + self.object:remove() + end + end, + animation = { + speed_normal = 20, + speed_run = 30, + stand_start = 10, + stand_end = 20, + walk_start = 75, + walk_end = 100, + run_start = 100, + run_end = 130, + punch_start = 135, + punch_end = 155, + }, + jump = true, + step = 0.5, + blood_texture = "mobs_blood.png", +}) +mobs:register_spawn("mobs_mc:wolf", {"default:dirt_with_grass","default:dirt","default:snow", "default:snowblock"}, 20, 0, 19000, 1, 31000) + + +-- compatibility +mobs:alias_mob("mobs:wolf", "mobs_mc:wolf") +mobs:alias_mob("mobs:dog", "mobs_mc:dog") +mobs:alias_mob("esmobs:wolf", "mobs_mc:wolf") +mobs:alias_mob("esmobs:dog", "mobs_mc:dog") + +-- spawn eggs +mobs:register_egg("mobs_mc:wolf", "Wolf", "wool_grey.png", 1) +mobs:register_egg("mobs_mc:dog", "Dog", "wool_brown.png", 1) + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Wolf loaded") +end diff --git a/mods/mobs_mc/zombie.lua b/mods/mobs_mc/zombie.lua new file mode 100644 index 000000000..891d6a0aa --- /dev/null +++ b/mods/mobs_mc/zombie.lua @@ -0,0 +1,100 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + + +mobs:register_mob("mobs_mc:zombie", { + type = "monster", + hp_max = 35, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + textures = { + {"mobs_zombie.png"} + }, + visual = "mesh", + mesh = "mobs_zombie.x", + makes_footstep_sound = true, + sounds = { + random = "zombie1", + death = "zombiedeath", + damage = "zombiehurt1", + attack = "default_punch3", + }, + walk_velocity = .8, + run_velocity = 1.6, + damage = 1, + pathfinding = true, + group_attack = true, + armor = 200, + drops = { + {name = "mcl_mobitems:rotten_flesh", + chance = 1, + min = 1, + max = 1,}, + {name = "default:steel_ingot", + chance = 3, + min = 0, + max = 2,}, + {name = "default:shovel_steel", + chance = 4, + min = 1, + max = 1,}, + {name = "default:sword_steel", + chance = 8, + min = 1, + max = 1,}, + {name = "farming:carrot", + chance = 10, + min = 1, + max = 1,}, + {name = "farming:potato", + chance = 10, + min = 1, + max = 1,}, + }, + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 1, + view_range = 16, + attack_type = "dogfight", +}) +mobs:register_spawn("mobs_mc:zombie", {"group:crumbly", "group:cracky", "group:choppy", "group:snappy"}, 7, -1, 5000, 4, 31000) + + +-- meat rotted +minetest.register_craftitem(":mobs:rotten_flesh", { + description = "Rotten Flesh", + inventory_image = "mobs_rotten_flesh.png", + on_use = minetest.item_eat(4), +}) + + +-- compatibility +mobs:alias_mob("mobs:zombie", "mobs_mc:zombie") + +-- spawn eggs +mobs:register_egg("mobs_mc:zombie", "Zombie", "spawn_egg_zombie.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Zombie loaded") +end diff --git a/mods/mobs_mc/zombiepig.lua b/mods/mobs_mc/zombiepig.lua new file mode 100644 index 000000000..fbb9a53cc --- /dev/null +++ b/mods/mobs_mc/zombiepig.lua @@ -0,0 +1,117 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +mobs:register_mob("mobs_mc:pigman", { + type = "monster", + hp_max = 35, + --old zombie mesh code + --collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, + --textures = { + --{"mobs_zombie_pigman.png"} + --}, + --visual = "mesh", + --mesh = "mobs_zombie.x", + + --Tried to get a sword in pig hand + --http://minetest.fensta.bplaced.net/#page=20 + --Author: Fedora P + --License: CC BY-SA 3.0 + collisionbox = {-0.3, -1.0, -0.3, 0.3, 0.8, 0.3}, + visual = "mesh", + mesh = "3d_armor_character.b3d", + textures = {{"Original_Zombiepig_Man_by_Fedora_P.png", + "3d_armor_trans.png", + minetest.registered_items["default:sword_gold"].inventory_image, + }}, + + makes_footstep_sound = true, + walk_velocity = .8, + run_velocity = 2.6, + damage = 2, + armor = 80, + pathfinding = true, + group_attack = true, + drops = { + {name = "mcl_mobitems:rotten_flesh", + chance = 1, + min = 1, + max = 1,}, + {name = "default:gold_ingot", + chance = 13, + min = 0, + max = 2,}, + {name = "default:sword_gold", + chance = 8, + min = 1, + max = 1,}, + {name = "default:sword_gold", + chance = 8, + min = 1, + max = 1,}, + }, + sounds = { + random = "Pig2", + death = "Pigdeath", + damage = "zombiehurt1", + attack = "default_punch3", + }, + --[[ + animation = { + speed_normal = 24, + speed_run = 48, + stand_start = 0, + stand_end = 23, + walk_start = 24, + walk_end = 47, + run_start = 48, + run_end = 62, + hurt_start = 64, + hurt_end = 86, + death_start = 88, + death_end = 118, + }, + ]] + animation = { + speed_normal = 30, speed_run = 30, + stand_start = 0, stand_end = 79, + walk_start = 168, walk_end = 187, + run_start = 168, run_end = 187, + punch_start = 200, punch_end = 219, + }, + drawtype = "front", + water_damage = 1, + lava_damage = 5, + light_damage = 1, + fear_height = 3, + view_range = 16, + attack_type = "dogfight", +}) +mobs:register_spawn("mobs_mc:pigman", {"nether:rack"}, 17, -1, 5000, 3, -2000) +mobs:register_spawn("mobs_mc:pigman", {"nether:portal"}, 15, -1, 500, 4, 31000) +mobs:register_spawn("mobs_mc:pigman", {"default:obsidian"}, 17, -1, 1900, 1, 31000) + + +-- meat rotted +minetest.register_craftitem(":mobs:rotten_flesh", { + description = "Rotten Flesh", + inventory_image = "mobs_rotten_flesh.png", + on_use = minetest.item_eat(4), +}) + + +-- compatibility +mobs:alias_mob("mobs:pigman", "mobs_mc:pigman") + +-- spawn eggs +mobs:register_egg("mobs_mc:pigman", "Zombie Pigman", "spawn_egg_zombie_pigman.png") + + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Pigmen loaded") +end diff --git a/mods/throwing/arrow.lua b/mods/throwing/arrow.lua index 6acaf0c2a..c3afea9c9 100644 --- a/mods/throwing/arrow.lua +++ b/mods/throwing/arrow.lua @@ -86,6 +86,6 @@ minetest.register_craft({ recipe = { {'default:flint'}, {'default:stick'}, - {'mobs:feather'} + {'mcl_mobitems:feather'} } })