diff --git a/GROUPS.md b/GROUPS.md index d95611603..c1b6f4eb5 100644 --- a/GROUPS.md +++ b/GROUPS.md @@ -43,6 +43,7 @@ Please read to learn how digging times * `soil_sapling=1`: Artificial soil (such as farmland) for saplings. Some saplings will not grow on this * `soil_sugarcane=1`: Sugar canes will grow on this near water * `soil_nether_wart=1`: Nether wart will grow on this +* `enderman_takable=1`: Block can be taken and placed by endermen * `disable_suffocation=1`: Disables suffocation for full solid cubes (1) * `destroys_items=1`: If an item happens to be *inside* this node, the item will be destroyed * `no_eat_delay=1`: Only for foodstuffs. When eating this, all eating delays are ignored. diff --git a/mods/ENTITIES/mobs_mc/0_gameconfig.lua b/mods/ENTITIES/mobs_mc/0_gameconfig.lua new file mode 100644 index 000000000..c52c1ce5c --- /dev/null +++ b/mods/ENTITIES/mobs_mc/0_gameconfig.lua @@ -0,0 +1,284 @@ +--[[ This table contains the concrete itemstrings to be used by this mod. +All mobs in this mod must use variables in this table, instead +of hardcoding the itemstring. +This way, external mods are enabled to replace the itemstrings to provide +their own items and subgame integration is made much simpler. + +An item IDs is supposed to be overwritten by adding +mobs_mc.override.items["example:item"] in a subgame mod +with name "mobs_mc_gameconfig". ]] + + +-- Standard items + +-- If true, mobs_mc adds the monster egg nodes (needs default mod). +-- Set to false in your gameconfig mod if you create your own monster egg nodes. +mobs_mc.create_monster_egg_nodes = true + +mobs_mc.items = {} + +mobs_mc.items = { + -- Items defined in mobs_mc + blaze_rod = "mobs_mc:blaze_rod", + blaze_powder = "mobs_mc:blaze_powder", + chicken_raw = "mobs_mc:chicken_raw", + chicken_cooked = "mobs_mc:chicken_cooked", + feather = "mobs_mc:feather", + beef_raw = "mobs_mc:beef_raw", + beef_cooked = "mobs_mc:beef_cooked", + bowl = "mobs_mc:bowl", + mushroom_stew = "mobs_mc:mushroom_stew", + milk = "mobs_mc:milk_bucket", + dragon_egg = "mobs_mc:dragon_egg", + egg = "mobs_mc:egg", + ender_eye = "mobs_mc:ender_eye", + ghast_tear = "mobs_mc:ghast_tear", + saddle = "mobs:saddle", + iron_horse_armor = "mobs_mc:iron_horse_armor", + gold_horse_armor = "mobs_mc:gold_horse_armor", + diamond_horse_armor = "mobs_mc:diamond_horse_armor", + porkchop_raw = "mobs_mc:porkchop_raw", + porkchop_cooked = "mobs_mc:porkchop_cooked", + carrot_on_a_stick = "mobs_mc:carrot_on_a_stick", + rabbit_raw = "mobs_mc:rabbit_raw", + rabbit_cooked = "mobs_mc:rabbit_cooked", + rabbit_hide = "mobs_mc:rabbit_hide", + mutton_raw = "mobs_mc:mutton_raw", + mutton_cooked = "mobs_mc:mutton_cooked", + shulker_shell = "mobs_mc:shulker_shell", + magma_cream = "mobs_mc:magma_cream", + spider_eye = "mobs_mc:spider_eye", + snowball = "mobs_mc:snowball", + totem = "mobs_mc:totem", + rotten_flesh = "mobs_mc:rotten_flesh", + nether_star = "mobs_mc:nether_star", + bone = "mobs_mc:bone", + slimeball = "mobs_mc:slimeball", + arrow = "mobs_mc:arrow", + bow = "mobs_mc:bow_wood", + head_creeper = "mobs_mc:head_creeper", + head_zombie = "mobs_mc:head_zombie", + head_skeleton = "mobs_mc:head_skeleton", + head_wither_skeleton = "mobs_mc:head_wither_skeleton", + + -- External items + -- Mobs Redo + leather = "mobs:leather", + shears = "mobs:shears", + + -- Minetest Game + top_snow = "default:snow", + snow_block = "default:snowblock", + mushroom_red = "flowers:mushroom_red", + bucket = "bucket:bucket_empty", + grass_block = "default:dirt_with_grass", + string = "farming:string", + stick = "default:stick", + flint = "default:flint", + iron_ingot = "default:steel_ingot", + iron_block = "default:steelblock", + fire = "fire:basic_flame", + gunpowder = "tnt:gunpowder", + flint_and_steel = "fire:flint_and_steel", + water_source = "default:water_source", + black_dye = "dye:black", + poppy = "flowers:rose", + dandelion = "flowers:dandelion_yellow", + coal = "default:coal_lump", + emerald = "default:diamond", + iron_axe = "default:axe_steel", + gold_sword = "default:sword_mese", + gold_ingot = "default:gold_ingot", + gold_nugget = "default:gold_lump", + glowstone_dust = "default:mese_crystal_fragment", + redstone = "default:mese_crystal_fragment", + glass_bottle = "vessels:glass_bottle", + sugar = "default:papyrus", + wheat = "farming:wheat", + hay_bale = "farming:straw", + prismarine_shard = "default:mese_crystal_fragment", + prismarine_crystals = "default:mese_crystal", + apple = "default:apple", + golden_apple = "default:apple", + rabbit_foot = "mobs_mc:rabbit_foot", + + -- Boss items + wet_sponge = "default:gold_block", -- only dropped by elder guardian; there is no equivalent block in Minetest Game + + -- Other + nether_brick_block = "nether:brick", + mycelium = "ethereal:mushroom_dirt", + carrot = "farming:carrot", + potato = "farming:potato", + golden_carrot = "farming:carrot_gold", + fishing_rod = "fishing:pole_wood", + fish_raw = "fishing:fish_raw", + salmon_raw = "fishing:carp_raw", + clownfish_raw = "fishing:clownfish_raw", + pufferfish_raw = "fishing:pike_raw", + + cookie = "farming:cookie", + + + -- TODO: Add actual ender pearl + ender_pearl = "farorb:farorb", + + nether_portal = "nether:portal", + netherrack = "nether:rack", + nether_brick_block = "nether:brick", + + -- Wool (Minecraft color scheme) + wool_white = "wool:white", + wool_light_grey = "wool:grey", + wool_grey = "wool:dark_grey", + wool_blue = "wool:blue", + wool_lime = "wool:green", + wool_green = "wool:dark_green", + wool_purple = "wool:violet", + wool_pink = "wool:pink", + wool_yellow = "wool:yellow", + wool_orange = "wool:orange", + wool_brown = "wool:brown", + wool_red = "wool:red", + wool_cyan = "wool:cyan", + wool_magenta = "wool:magenta", + wool_black = "wool:black", + -- Light blue intentionally missing + + -- Special items + music_discs = {}, -- No music discs by default; used by creeper. Override this if your subgame has music discs. +} + +-- Tables for attracting, feeding and breeding mobs +mobs_mc.follow = { + sheep = { mobs_mc.items.wheat }, + cow = { mobs_mc.items.wheat }, + chicken = { "farming:seed_wheat", "farming:seed_cotton" }, -- seeds in general + parrot = { "farming:seed_wheat", "farming:seed_cotton" }, -- seeds in general + horse = { mobs_mc.items.apple, mobs_mc.items.sugar, mobs_mc.items.wheat, mobs_mc.items.hay_bale, mobs_mc.items.golden_apple, mobs_mc.items.golden_carrot }, + pig = { mobs_mc.items.potato, mobs_mc.items.carrot, mobs_mc.items.carrot_on_a_stick, + mobs_mc.items.apple, -- Minetest Game extra + }, + rabbit = { mobs_mc.items.dandelion, mobs_mc.items.carrot, mobs_mc.items.golden_carrot, "farming_plus:carrot_item", }, + ocelot = { mobs_mc.items.fish_raw, mobs_mc.items.salmon_raw, mobs_mc.items.clownfish_raw, mobs_mc.items.pufferfish_raw, + mobs_mc.items.chicken_raw, -- Minetest Game extra + }, + wolf = { mobs_mc.items.bone }, + dog = { mobs_mc.items.rabbit_raw, mobs_mc.items.rabbit_cooked, mobs_mc.items.mutton_raw, mobs_mc.items.mutton_cooked, mobs_mc.items.beef_raw, mobs_mc.items.beef_cooked, mobs_mc.items.chicken_raw, mobs_mc.items.chicken_cooked, mobs_mc.items.rotten_flesh, + -- Mobs Redo items + "mobs:meat", "mobs:meat_raw" }, +e +} + +-- Contents for replace_what +mobs_mc.replace = { + -- Rabbits reduce carrot growth stage by 1 + rabbit = { + -- Farming Redo carrots + {"farming:carrot_8", "farming:carrot_7", 0}, + {"farming:carrot_7", "farming:carrot_6", 0}, + {"farming:carrot_6", "farming:carrot_5", 0}, + {"farming:carrot_5", "farming:carrot_4", 0}, + {"farming:carrot_4", "farming:carrot_3", 0}, + {"farming:carrot_3", "farming:carrot_2", 0}, + {"farming:carrot_2", "farming:carrot_1", 0}, + {"farming:carrot_1", "air", 0}, + -- Farming Plus carrots + {"farming_plus:carrot", "farming_plus:carrot_7", 0}, + {"farming_plus:carrot_6", "farming_plus:carrot_5", 0}, + {"farming_plus:carrot_5", "farming_plus:carrot_4", 0}, + {"farming_plus:carrot_4", "farming_plus:carrot_3", 0}, + {"farming_plus:carrot_3", "farming_plus:carrot_2", 0}, + {"farming_plus:carrot_2", "farming_plus:carrot_1", 0}, + {"farming_plus:carrot_1", "air", 0}, + }, + -- Sheep eat grass + sheep = { + -- Grass Block + { "default:dirt_with_grass", "default:dirt", -1 }, + -- “Tall Grass” + { "default:grass_5", "air", 0 }, + { "default:grass_4", "air", 0 }, + { "default:grass_3", "air", 0 }, + { "default:grass_2", "air", 0 }, + { "default:grass_1", "air", 0 }, + }, + -- Silverfish populate stone, etc. with monster eggs + silverfish = { + {"default:stone", "mobs_mc:monster_egg_stone", -1}, + {"default:cobble", "mobs_mc:monster_egg_cobble", -1}, + {"default:mossycobble", "mobs_mc:monster_egg_mossycobble", -1}, + {"default:stonebrick", "mobs_mc:monster_egg_stonebrick", -1}, + {"default:stone_block", "mobs_mc:monster_egg_stone_block", -1}, + }, +} + +-- List of nodes which endermen can take +mobs_mc.enderman_takable = { + -- Generic handling, useful for entensions + "group:enderman_takable", + + -- Generic nodes + "group:sand", + "group:flower", + + -- Minetest Game + "default:dirt", + "default:dirt_with_grass", + "default:dirt_with_dry_grass", + "default:dirt_with_snow", + "default:dirt_with_rainforest_litter", + "default:dirt_with_grass_footsteps", + "default:cactus", + "default:gravel", + "default:clay", + "flowers:mushroom_red", + "flowers:mushroom_brown", + "tnt:tnt", + + -- Nether mod + "nether:rack", +} + +-- List of nodes on which mobs can spawn +mobs_mc.spawn = { + solid = { "group:cracky", "group:crumbly", "group:shovely", "group:pickaxey" }, -- spawn on "solid" nodes (this is mostly just guessing) + + grassland = { mobs_mc.items.grass_block, "ethereal:prairie_dirt" }, + savanna = { "default:dirt_with_dry_grass" }, + grassland_savanna = { mobs_mc.items.grass_block, "default:dirt_with_dry_grass" }, + desert = { "default:desert_sand", "group:sand" }, + jungle = { "default:dirt_with_rainforest_litter", "default:jungleleaves", "default:junglewood", "mcl_core:jungleleaves", "mcl_core:junglewood" }, + snow = { "default:snow", "default:snowblock", "default:dirt_with_snow" }, + end_city = { "default:cobble", "mcl_end:purpur_block", "mcl_end:end_stone", "mcl_portals:void"}, + wolf = { mobs_mc.items.grass_block, "default:dirt_with_rainforest_litter", "default:dirt", "default:dirt_with_snow", "default:snow", "default:snowblock" }, + + -- These probably don't need overrides + mushroom_island = { mobs_mc.items.mycelium, "mcl_core:mycelium" }, + nether_fortress = { mobs_mc.items.nether_brick_block, "mcl_nether:nether_brick", "mcl_portals:nether_air" }, + nether = { mobs_mc.items.netherrack, "mcl_nether:netherrack", "mcl_portals:nether_air" }, + nether_portal = { mobs_mc.items.nether_portal, "mcl_portals:portal" }, + water = { mobs_mc.items.water_source, "mcl_core:water_source", "default:water_source" }, +} + +mobs_mc.misc = { + shears_wear = 276, -- Wear to add per shears usage (238 uses) +} + +-- Item name overrides from mobs_mc_gameconfig (if present) +if minetest.get_modpath("mobs_mc_gameconfig") and mobs_mc.override then + local tables = {"items", "follow", "replace", "spawn", "misc"} + for t=1, #tables do + local tbl = tables[t] + if mobs_mc.override[tbl] then + for k, v in pairs(mobs_mc.override[tbl]) do + mobs_mc[tbl][k] = v + end + end + end + + if mobs_mc.override.enderman_takable then + mobs_mc.enderman_takable = mobs_mc.override.enderman_takable + end +end + diff --git a/mods/ENTITIES/mobs_mc/1_items_default.lua b/mods/ENTITIES/mobs_mc/1_items_default.lua new file mode 100644 index 000000000..9e7d36c32 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/1_items_default.lua @@ -0,0 +1,595 @@ +--MCmobs v0.5 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + + +--dofile(minetest.get_modpath("mobs").."/api.lua") +--THIS IS THE MASTER ITEM LIST TO USE WITH DEFAULT + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +local c = mobs_mc.is_item_variable_overridden + +-- Blaze +if c("blaze_rod") then + minetest.register_craftitem("mobs_mc:blaze_rod", { + description = S("Blaze Rod"), + _doc_items_longdesc = S("This is a crafting component dropped from dead blazes."), + wield_image = "mcl_mobitems_blaze_rod.png", + inventory_image = "mcl_mobitems_blaze_rod.png", + }) + + -- Make blaze rod furnace-burnable. 1.5 times the burn time of a coal lump + local coalcraft, burntime + if minetest.get_modpath("default") then + coalcraft = minetest.get_craft_result({method="fuel", width=1, items={"default:coal_lump"}}) + end + if coalcraft then + burntime = math.floor(coalcraft.time * 1.5) + end + if burntime == nil or burntime == 0 then + burntime = 60 + end + + minetest.register_craft({ + type = "fuel", + burntime = burntime, + recipe = "mobs_mc:blaze_rod", + }) +end + +if c("blaze_powder") then + minetest.register_craftitem("mobs_mc:blaze_powder", { + description = S("Blaze Powder"), + _doc_items_longdesc = S("This item is mainly used for brewing potions and crafting."), + wield_image = "mcl_mobitems_blaze_powder.png", + inventory_image = "mcl_mobitems_blaze_powder.png", + }) +end + +if c("blaze_rod") and c("blaze_powder") then + minetest.register_craft({ + output = "mobs_mc:blaze_powder 2", + recipe = {{ "mobs_mc:blaze_rod" }}, + }) +end + +-- Chicken +if c("chicken_raw") then + minetest.register_craftitem("mobs_mc:chicken_raw", { + description = S("Raw Chicken"), + _doc_items_longdesc = S("Raw chicken is a food item and can be eaten safely. Cooking it will increase its nutritional value."), + inventory_image = "mcl_mobitems_chicken_raw.png", + groups = { food = 2, eatable = 2 }, + on_use = minetest.item_eat(2), + }) +end + +if c("chicken_cooked") then + minetest.register_craftitem("mobs_mc:chicken_cooked", { + description = S("Cooked Chicken"), + _doc_items_longdesc = S("A cooked chicken is a healthy food item which can be eaten."), + inventory_image = "mcl_mobitems_chicken_cooked.png", + groups = { food = 2, eatable = 6 }, + on_use = minetest.item_eat(6), + }) +end + +if c("chicken_raw") and c("chicken_cooked") then + minetest.register_craft({ + type = "cooking", + output = "mobs_mc:chicken_cooked", + recipe = "mobs_mc:chicken_raw", + cooktime = 5, + }) +end + +if c("feather") then + minetest.register_craftitem("mobs_mc:feather", { + description = S("Feather"), + _doc_items_longdesc = S("Feathers are used in crafting and are dropped from chickens."), + inventory_image = "mcl_mobitems_feather.png", + }) +end + +-- Cow and mooshroom +if c("beef_raw") then + minetest.register_craftitem("mobs_mc:beef_raw", { + description = S("Raw Beef"), + _doc_items_longdesc = S("Raw beef is the flesh from cows and can be eaten safely. Cooking it will greatly increase its nutritional value."), + inventory_image = "mcl_mobitems_beef_raw.png", + groups = { food = 2, eatable = 3 }, + on_use = minetest.item_eat(3), + }) +end + +if c("beef_cooked") then + minetest.register_craftitem("mobs_mc:beef_cooked", { + description = S("Steak"), + _doc_items_longdesc = S("Steak is cooked beef from cows and can be eaten."), + inventory_image = "mcl_mobitems_beef_cooked.png", + groups = { food = 2, eatable = 8 }, + on_use = minetest.item_eat(8), + }) +end + +if c("beef_raw") and c("beef_cooked") then + minetest.register_craft({ + type = "cooking", + output = "mobs_mc:beef_cooked", + recipe = "mobs_mc:beef_raw", + cooktime = 5, + }) +end + + +if c("milk") then + -- milk + minetest.register_craftitem("mobs_mc:milk_bucket", { + description = S("Milk"), + _doc_items_longdesc = S("Milk is a food item obtained by using a bucket on a cow."), + inventory_image = "mobs_bucket_milk.png", + groups = { food = 3, eatable = 1 }, + on_use = minetest.item_eat(1, "bucket:bucket_empty"), + stack_max = 1, + }) +end + +if c("bowl") then + minetest.register_craftitem("mobs_mc:bowl", { + description = S("Bowl"), + _doc_items_longdesc = S("Bowls are mainly used to hold tasty soups."), + inventory_image = "mcl_core_bowl.png", + }) + + minetest.register_craft({ + output = "mobs_mc:bowl", + recipe = { + { "group:wood", "", "group:wood" }, + { "", "group:wood", "", }, + } + }) + + minetest.register_craft({ + type = "fuel", + recipe = "mobs_mc:bowl", + burntime = 5, + }) +end + +if c("mushroom_stew") then + minetest.register_craftitem("mobs_mc:mushroom_stew", { + description = S("Mushroom Stew"), + _doc_items_longdesc = S("Mushroom stew is a healthy soup."), + inventory_image = "farming_mushroom_stew.png", + groups = { food = 3, eatable = 6 }, + on_use = minetest.item_eat(6, "mobs_mc:bowl"), + stack_max = 1, + }) +end + +-- Ender dragon +if c("dragon_egg") then + + local dragon_egg_sounds + if minetest.get_modpath("default") then + dragon_egg_sounds = default.node_sound_stone_defaults() + end + + --ender dragon + minetest.register_node("mobs_mc:dragon_egg", { + description = S("Dragon Egg"), + tiles = { + "mcl_end_dragon_egg.png", + "mcl_end_dragon_egg.png", + "mcl_end_dragon_egg.png", + "mcl_end_dragon_egg.png", + "mcl_end_dragon_egg.png", + "mcl_end_dragon_egg.png", + }, + drawtype = "nodebox", + is_ground_content = false, + paramtype = "light", + light_source = 1, + node_box = { + type = "fixed", + fixed = { + {-0.375, -0.5, -0.375, 0.375, -0.4375, 0.375}, + {-0.5, -0.4375, -0.5, 0.5, -0.1875, 0.5}, + {-0.4375, -0.1875, -0.4375, 0.4375, 0, 0.4375}, + {-0.375, 0, -0.375, 0.375, 0.125, 0.375}, + {-0.3125, 0.125, -0.3125, 0.3125, 0.25, 0.3125}, + {-0.25, 0.25, -0.25, 0.25, 0.3125, 0.25}, + {-0.1875, 0.3125, -0.1875, 0.1875, 0.375, 0.1875}, + {-0.125, 0.375, -0.125, 0.125, 0.4375, 0.125}, + {-0.0625, 0.4375, -0.0625, 0.0625, 0.5, 0.0625}, + } + }, + selection_box = { + type = "regular", + }, + groups = {snappy = 1, falling_node = 1, deco_block = 1, not_in_creative_inventory = 1, dig_by_piston = 1 }, + sounds = dragon_egg_sounds, + -- TODO: Make dragon egg teleport on punching + }) +end + +local longdesc_craftitem +if minetest.get_modpath("doc_items") then + longdesc_craftitem = doc.sub.items.temp.craftitem +end + +-- Enderman +if c("ender_eye") then + minetest.register_craftitem("mobs_mc:ender_eye", { + description = S("Eye of Ender"), + _doc_items_longdesc = longdesc_craftitem, + inventory_image = "mcl_end_ender_eye.png", + groups = { craftitem = 1 }, + }) +end + +if c("ender_eye") and c("blaze_powder") and c("blaze_rod") then + minetest.register_craft({ + type = "shapeless", + output = 'mobs_mc:ender_eye', + recipe = { 'mobs_mc:blaze_powder', 'mobs_mc:blaze_rod'}, + }) +end + +-- Ghast +if c("ghast_tear") then + minetest.register_craftitem("mobs_mc:ghast_tear", { + description = S("Ghast Tear"), + _doc_items_longdesc = S("A ghast tear is an item used in potion brewing. It is dropped from dead ghasts."), + wield_image = "mcl_mobitems_ghast_tear.png", + inventory_image = "mcl_mobitems_ghast_tear.png", + groups = { brewitem = 1 }, + }) +end + +-- Saddle +if c("saddle") then + -- Overwrite the saddle from Mobs Redo + minetest.register_craftitem(":mobs:saddle", { + description = S("Saddle"), + _doc_items_longdesc = S("Saddles can be put on horses, donkeys, mules and pigs in order to mount them."), + _doc_items_usagehelp = S("Rightclick an animal while holding a saddle to put on the saddle. You can now mount the animal by rightclicking it again."), + inventory_image = "mcl_mobitems_saddle.png", + stack_max = 1, + }) +end + +if c("saddle") and c("lether") and c("string") and c("iron_ingot") then + minetest.register_craft({ + output = "mobs_mc:saddle", + recipe = { + {"mobs:leather", "mobs:leather", "mobs:leather"}, + {"farming:string", "", "farming:string"}, + {"default:steel_ingot", "", "default:steel_ingot"} + }, + }) +end + +-- Horse Armor +local horse_armor_use = S("Rightclick a horse to put on the horse armor. Donkeys and mules can't wear horse armor.") +-- TODO: Balance the horse armor strength, compare with MC armor strength +if c("iron_horse_armor") then + minetest.register_craftitem("mobs_mc:iron_horse_armor", { + description = S("Iron Horse Armor"), + _doc_items_longdesc = S("Iron horse armor can be worn by horses to increase their protection from harm a bit."), + _doc_items_usagehelp = horse_armor_use, + inventory_image = "mobs_mc_iron_horse_armor.png", + _horse_overlay_image = "mobs_mc_horse_armor_iron.png", + stack_max = 1, + groups = { horse_armor = 85 }, + }) +end +if c("gold_horse_armor") then + minetest.register_craftitem("mobs_mc:gold_horse_armor", { + description = S("Golden Horse Armor"), + _doc_items_longdesc = S("Golden horse armor can be worn by horses to increase their protection from harm."), + _doc_items_usagehelp = horse_armor_use, + inventory_image = "mobs_mc_gold_horse_armor.png", + _horse_overlay_image = "mobs_mc_horse_armor_gold.png", + stack_max = 1, + groups = { horse_armor = 60 }, + }) +end +if c("diamond_horse_armor") then + minetest.register_craftitem("mobs_mc:diamond_horse_armor", { + description = S("Diamond Horse Armor"), + _doc_items_longdesc = S("Diamond horse armor can be worn by horses to greatly increase their protection from harm."), + _doc_items_usagehelp = horse_armor_use, + inventory_image = "mobs_mc_diamond_horse_armor.png", + _horse_overlay_image = "mobs_mc_horse_armor_diamond.png", + stack_max = 1, + groups = { horse_armor = 45 }, + }) +end + +-- Pig +if c("porkchop_raw") then + minetest.register_craftitem("mobs_mc:porkchop_raw", { + description = S("Raw Porkchop"), + _doc_items_longdesc = S("A raw porkchop is the flesh from a pig and can be eaten safely. Cooking it will greatly increase its nutritional value."), + inventory_image = "mcl_mobitems_porkchop_raw.png", + groups = { food = 2, eatable = 3 }, + on_use = minetest.item_eat(3), + }) +end + +if c("porkchop_cooked") then + minetest.register_craftitem("mobs_mc:porkchop_cooked", { + description = S("Cooked Porkchop"), + _doc_items_longdesc = "Cooked porkchop is the cooked flesh of a pig and is used as food.", + inventory_image = "mcl_mobitems_porkchop_cooked.png", + groups = { food = 2, eatable = 8 }, + on_use = minetest.item_eat(8), + }) +end + +if c("porkchop_raw") and c("porkchop_cooked") then + minetest.register_craft({ + type = "cooking", + output = "mobs_mc:porkchop_raw", + recipe = "mobs_mc:porkchop_cooked", + cooktime = 5, + }) +end + +if c("carrot_on_a_stick") then + minetest.register_tool("mobs_mc:carrot_on_a_stick", { + description = S("Carrot on a Stick"), + _doc_items_longdesc = S("A carrot on a stick can be used on saddled pigs to ride them. Pigs will also follow anyone who holds a carrot on a stick near them."), + _doc_items_usagehelp = S("Rightclick a saddled pig with the carrot on a stick to mount it. You can now ride it like a horse."), + wield_image = "mcl_mobitems_carrot_on_a_stick.png", + inventory_image = "mcl_mobitems_carrot_on_a_stick.png", + sounds = { breaks = "default_tool_breaks" }, + }) +end + +-- Poor-man's recipes for carrot on a stick +if c("carrot_on_a_stick") and c("stick") and c("string") and minetest.get_modpath("farming") then + minetest.register_craft({ + output = "mobs_mc:carrot_on_a_stick", + recipe = { + {"", "", "farming:string" }, + {"", "group:stick", "farming:string" }, + {"group:stick", "", "farming:bread" }, + } + }) + +-- FIXME: Identify correct farming mod (check if it includes the carrot item) + minetest.register_craft({ + output = "mobs_mc:carrot_on_a_stick", + recipe = { + {"", "", "farming:string" }, + {"", "group:stick", "farming:string" }, + {"group:stick", "", "farming:carrot" }, + } + }) +end + +if c("carrot_on_a_stick") and c("stick") and c("string") and minetest.get_modpath("fishing") and minetest.get_modpath("farming") then + minetest.register_craft({ + type = "shapeless", + output = "mobs_mc:carrot_on_a_stick", + recipe = {"fishing:pole_wood", "farming:carrot"}, + }) +end + +-- Rabbit +if c("rabbit_raw") then + minetest.register_craftitem("mobs_mc:rabbit_raw", { + description = S("Raw Rabbit"), + _doc_items_longdesc = S("Raw rabbit is a food item from a dead rabbit. It can be eaten safely. Cooking it will increase its nutritional value."), + inventory_image = "mcl_mobitems_rabbit_raw.png", + groups = { food = 2, eatable = 3 }, + on_use = minetest.item_eat(3), + }) +end + +if c("rabbit_cooked") then + minetest.register_craftitem("mobs_mc:rabbit_cooked", { + description = S("Cooked Rabbit"), + _doc_items_longdesc = S("This is a food item which can be eaten."), + inventory_image = "mcl_mobitems_rabbit_cooked.png", + groups = { food = 2, eatable = 5 }, + on_use = minetest.item_eat(5), + }) +end + +if c("rabbit_raw") and c("rabbit_cooked") then + minetest.register_craft({ + type = "cooking", + output = "mobs_mc:rabbit_cooked", + recipe = "mobs_mc:rabbit_raw", + cooktime = 5, + }) +end + +if c("rabbit_hide") then + minetest.register_craftitem("mobs_mc:rabbit_hide", { + description = S("Rabbit Hide"), + _doc_items_longdesc = S("Rabbit hide is used to create leather."), + inventory_image = "mcl_mobitems_rabbit_hide.png" + }) +end + +if c("leather") and c("rabbit_hide") then + minetest.register_craft({ + output = "mobs:leather", + recipe = { + { "mobs_mc:rabbit_hide", "mobs_mc:rabbit_hide" }, + { "mobs_mc:rabbit_hide", "mobs_mc:rabbit_hide" }, + } + }) +end + +if c("rabbit_foot") then + minetest.register_craftitem("mobs_mc:rabbit_foot", { + description = S("Rabbit's Foot"), + _doc_items_longdesc = S("This item is used in brewing."), + inventory_image = "mcl_mobitems_rabbit_foot.png" + }) +end + +-- Sheep +if c("mutton_raw") then + minetest.register_craftitem("mobs_mc:mutton_raw", { + description = S("Raw Mutton"), + _doc_items_longdesc = S("Raw mutton is the flesh from a sheep and can be eaten safely. Cooking it will greatly increase its nutritional value."), + inventory_image = "mcl_mobitems_mutton_raw.png", + groups = { food = 2, eatable = 4 }, + on_use = minetest.item_eat(4), + }) +end + +if c("mutton_cooked") then + minetest.register_craftitem("mobs_mc:mutton_cooked", { + description = S("Cooked Mutton"), + _doc_items_longdesc = S("Cooked mutton is the cooked flesh from a sheep and is used as food."), + inventory_image = "mcl_mobitems_mutton_cooked.png", + groups = { food = 2, eatable = 8 }, + on_use = minetest.item_eat(8), + }) +end + +if c("mutton_raw") and c("mutton_cooked") then + minetest.register_craft({ + type = "cooking", + output = "mobs_mc:mutton_cooked", + recipe = "mobs_mc:mutton_raw", + cooktime = 5, + }) +end + +-- Shulker +if c("shulker_shell") then + minetest.register_craftitem("mobs_mc:shulker_shell", { + description = S("Shulker Shell"), + _doc_items_longdesc = S("Shulker shells are used in crafting. They are dropped from dead shulkers."), + inventory_image = "mcl_mobitems_shulker_shell.png", + groups = { craftitem = 1 }, + }) +end + +-- Magma cube +if c("magma_cream") then + minetest.register_craftitem("mobs_mc:magma_cream", { + description = S("Magma Cream"), + _doc_items_longdesc = S("Magma cream is a crafting component."), + wield_image = "mcl_mobitems_magma_cream.png", + inventory_image = "mcl_mobitems_magma_cream.png", + groups = { brewitem = 1 }, + }) +end + +-- Slime +if c("slimeball") then + minetest.register_craftitem("mobs_mc:slimeball", { + description = S("Slimeball"), + _doc_items_longdesc = S("Slimeballs are used in crafting. They are dropped from slimes."), + inventory_image = "mcl_mobitems_slimeball.png" + }) + if minetest.get_modpath("mesecons_materials") then + minetest.register_craft({ + output = "mesecons_materials:glue", + recipe = {{ "mobs_mc:slimeball" }}, + }) + end +end + +-- Spider +if c("spider_eye") then + minetest.register_craftitem("mobs_mc:spider_eye", { + description = S("Spider Eye"), + _doc_items_longdesc = S("Spider eyes are used mainly in crafting and brewing. Spider eyes can be eaten, but they poison you and reduce your health by 2 hit points."), + inventory_image = "mcl_mobitems_spider_eye.png", + wield_image = "mcl_mobitems_spider_eye.png", + -- Simplified poisonous food + groups = { food = 2, eatable = -2 }, + on_use = minetest.item_eat(-2), + }) +end + +-- Evoker +if c("totem") then + -- TODO: Implement actual MC totem behaviour + minetest.register_craftitem("mobs_mc:totem", { + description = S("Totem of Undying"), + _doc_items_longdesc = S("A totem of undying is a rare artifact which may safe you from certain death."), + _doc_items_usagehelp = S("Hold it in your hand and punch once to instantly get back to full health. The totem gets destroyed in the process."), + wield_image = "mcl_mobitems_totem.png", + inventory_image = "mcl_mobitems_totem.png", + stack_max = 1, + on_use = function(itemstack, user, pointed_thing) + user:set_hp(20) + if not minetest.settings:get_bool("creative_mode") then + itemstack:take_item() + end + return itemstack + end, + }) +end + +-- Rotten flesh +if c("rotten_flesh") then + minetest.register_craftitem("mobs_mc:rotten_flesh", { + description = S("Rotten Flesh"), + _doc_items_longdesc = S("Yuck! This piece of flesh clearly has seen better days. Eating it will only poison you and reduces your health by 4 hit points. But tamed wolves can eat it just fine."), + inventory_image = "mcl_mobitems_rotten_flesh.png", + -- Simplified poisonous food + groups = { food = 2, eatable = -4 }, + on_use = minetest.item_eat(-4), + }) +end + +-- Misc. +if c("nether_star") then + minetest.register_craftitem("mobs_mc:nether_star", { + description = S("Nether Star"), + _doc_items_longdesc = S("A nether star is a crafting component. It is dropped from the Wither."), + inventory_image = "mcl_mobitems_nether_star.png" + }) +end + +if c("snowball") and minetest.get_modpath("default") then + minetest.register_craft({ + output = "mobs_mc:snowball 2", + recipe = { + {"default:snow"}, + }, + }) + minetest.register_craft({ + output = "default:snow 2", + recipe = { + {"mobs_mc:snowball", "mobs_mc:snowball"}, + {"mobs_mc:snowball", "mobs_mc:snowball"}, + }, + }) + -- Change the appearance of default snow to avoid confusion with snowball + minetest.override_item("default:snow", { + inventory_image = "", + wield_image = "", + }) +end + +if c("bone") then + minetest.register_craftitem("mobs_mc:bone", { + description = S("Bone"), + _doc_items_longdesc = S("Bones can be used to tame wolves so they will protect you. They are also useful as a crafting ingredient."), + _doc_items_usagehelp = S("Hold the bone in your hand near wolves to attract them. Rightclick the wolf to give it a bone and tame it."), + inventory_image = "mcl_mobitems_bone.png" + }) + if minetest.get_modpath("bones") then + minetest.register_craft({ + output = "mobs_mc:bone 3", + recipe = {{ "bones:bones" }}, + }) + end +end diff --git a/mods/ENTITIES/mobs_mc/2_throwing.lua b/mods/ENTITIES/mobs_mc/2_throwing.lua new file mode 100644 index 000000000..458c60ede --- /dev/null +++ b/mods/ENTITIES/mobs_mc/2_throwing.lua @@ -0,0 +1,393 @@ +--MCmobs v0.5 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--maikerumines throwing code +--arrow (weapon) + +local c = mobs_mc.is_item_variable_overridden + +minetest.register_node("mobs_mc: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 = {"mcl_throwing_arrow.png^[transformFX", "mcl_throwing_arrow.png^[transformFX", "mcl_throwing_arrow_back.png", "mcl_throwing_arrow_front.png", "mcl_throwing_arrow.png", "mcl_throwing_arrow.png^[transformFX"}, + 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_mc:arrow_box"}, + 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 = "mobs_mc_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_mc: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.add_item(self.lastpos, 'mobs_mc:arrow') + self.object:remove() + end + end + self.lastpos={x=pos.x, y=pos.y, z=pos.z} +end + +minetest.register_entity("mobs_mc:arrow_entity", THROWING_ARROW_ENTITY) + +arrows = { + {"mobs_mc:arrow", "mobs_mc: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.settings:get_bool("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 + +if c("arrow") then + minetest.register_craftitem("mobs_mc:arrow", { + description = S("Arrow"), + _doc_items_longdesc = S("Arrows are ammunition for bows."), + _doc_items_usagehelp = S("To use arrows as ammunition for a bow, put them in the inventory slot following the bow. Slots are counted left to right, top to bottom."), + inventory_image = "mcl_throwing_arrow_inv.png", + }) +end + +if c("arrow") and c("flint") and c("feather") and c("stick") then + minetest.register_craft({ + output = 'mobs_mc:arrow 4', + recipe = { + {mobs_mc.items.flint}, + {mobs_mc.items.stick}, + {mobs_mc.items.feather}, + } + }) +end + +if c("bow") then + minetest.register_tool("mobs_mc:bow_wood", { + description = S("Bow"), + _doc_items_longdesc = S("Bows are ranged weapons to shoot arrows at your foes."), + _doc_items_usagehelp = S("To use the bow, you first need to have at least one arrow in slot following the bow. Leftclick to shoot. Each hit deals 3 damage."), + inventory_image = "mcl_throwing_bow.png", + on_use = function(itemstack, user, pointed_thing) + if throwing_shoot_arrow(itemstack, user, pointed_thing) then + if not minetest.settings:get_bool("creative_mode") then + itemstack:add_wear(65535/50) + end + end + return itemstack + end, + }) + + minetest.register_craft({ + output = 'mobs_mc:bow_wood', + recipe = { + {mobs_mc.items.string, mobs_mc.items.stick, ''}, + {mobs_mc.items.string, '', mobs_mc.items.stick}, + {mobs_mc.items.string, mobs_mc.items.stick, ''}, + } + }) +end + +local how_to_throw = "Hold it in your and and leftclick to throw." + +-- egg throwing item +-- egg entity +if c("egg") then + local egg_GRAVITY = 9 + local egg_VELOCITY = 19 + + mobs:register_arrow("mobs_mc:egg_entity", { + visual = "sprite", + visual_size = {x=.5, y=.5}, + textures = {"mobs_chicken_egg.png"}, + velocity = egg_velocity, + + hit_player = function(self, player) + player:punch(minetest.get_player_by_name(self.playername) or self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {}, + }, nil) + end, + + hit_mob = function(self, player) + player:punch(minetest.get_player_by_name(self.playername) or self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {}, + }, nil) + end, + + hit_node = function(self, pos, node) + + if math.random(1, 10) > 1 then + return + end + + pos.y = pos.y + 1 + + local nod = minetest.get_node_or_nil(pos) + + if not nod + or not minetest.registered_nodes[nod.name] + or minetest.registered_nodes[nod.name].walkable == true then + return + end + + local mob = minetest.add_entity(pos, "mobs_mc:chicken") + local ent2 = mob:get_luaentity() + + mob:set_properties({ + visual_size = { + x = ent2.base_size.x / 2, + y = ent2.base_size.y / 2 + }, + collisionbox = { + ent2.base_colbox[1] / 2, + ent2.base_colbox[2] / 2, + ent2.base_colbox[3] / 2, + ent2.base_colbox[4] / 2, + ent2.base_colbox[5] / 2, + ent2.base_colbox[6] / 2 + }, + }) + + ent2.child = true + ent2.tamed = true + ent2.owner = self.playername + end + }) + + -- shoot egg + local mobs_shoot_egg = function (item, player, pointed_thing) + + local playerpos = player:getpos() + + minetest.sound_play("default_place_node_hard", { + pos = playerpos, + gain = 1.0, + max_hear_distance = 5, + }) + + local obj = minetest.add_entity({ + x = playerpos.x, + y = playerpos.y +1.5, + z = playerpos.z + }, "mobs_mc:egg_entity") + + local ent = obj:get_luaentity() + local dir = player:get_look_dir() + + ent.velocity = egg_VELOCITY -- needed for api internal timing + ent.switch = 1 -- needed so that egg doesn't despawn straight away + + obj:setvelocity({ + x = dir.x * egg_VELOCITY, + y = dir.y * egg_VELOCITY, + z = dir.z * egg_VELOCITY + }) + + obj:setacceleration({ + x = dir.x * -3, + y = -egg_GRAVITY, + z = dir.z * -3 + }) + + -- pass player name to egg for chick ownership + local ent2 = obj:get_luaentity() + ent2.playername = player:get_player_name() + + if not minetest.settings:get_bool("creative_mode") then + item:take_item() + end + + return item + end + + minetest.register_craftitem("mobs_mc:egg", { + description = S("Egg"), + _doc_items_longdesc = S("Eggs can be thrown and break on impact. There is a small chance that 1 or even 4 chicks will pop out"), + _doc_items_usagehelp = how_to_throw, + inventory_image = "mobs_chicken_egg.png", + on_use = mobs_shoot_egg, + }) +end + +-- Snowball + +local snowball_GRAVITY = 9 +local snowball_VELOCITY = 19 + +mobs:register_arrow("mobs_mc:snowball_entity", { + visual = "sprite", + visual_size = {x=.5, y=.5}, + textures = {"mcl_throwing_snowball.png"}, + velocity = snowball_VELOCITY, + + hit_player = function(self, player) + -- FIXME: No knockback + player:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {}, + }, nil) + end, + + hit_mob = function(self, mob) + -- Hurt blazes, but not damage to anything else + local dmg = {} + if mob:get_luaentity().name == "mobs_mc:blaze" then + dmg = {fleshy = 3} + end + -- FIXME: No knockback + mob:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = dmg, + }, nil) + end, + +}) + +if c("snowball") then + -- shoot snowball + local mobs_shoot_snowball = function (item, player, pointed_thing) + + local playerpos = player:getpos() + + local obj = minetest.add_entity({ + x = playerpos.x, + y = playerpos.y +1.5, + z = playerpos.z + }, "mobs_mc:snowball_entity") + + local ent = obj:get_luaentity() + local dir = player:get_look_dir() + + ent.velocity = snowball_VELOCITY -- needed for api internal timing + ent.switch = 1 -- needed so that egg doesn't despawn straight away + + obj:setvelocity({ + x = dir.x * snowball_VELOCITY, + y = dir.y * snowball_VELOCITY, + z = dir.z * snowball_VELOCITY + }) + + obj:setacceleration({ + x = dir.x * -3, + y = -snowball_GRAVITY, + z = dir.z * -3 + }) + + -- pass player name to egg for chick ownership + local ent2 = obj:get_luaentity() + ent2.playername = player:get_player_name() + + if not minetest.settings:get_bool("creative_mode") then + item:take_item() + end + + return item + end + + + -- Snowball + minetest.register_craftitem("mobs_mc:snowball", { + description = S("Snowball"), + _doc_items_longdesc = S("Snowballs can be thrown at your enemies. A snowball deals 3 damage to blazes, but is harmless to anything else."), + _doc_items_usagehelp = how_to_throw, + inventory_image = "mcl_throwing_snowball.png", + on_use = mobs_shoot_snowball, + }) +end + +--end maikerumine code + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC mobs loaded") +end diff --git a/mods/ENTITIES/mobs_mc/3_shared.lua b/mods/ENTITIES/mobs_mc/3_shared.lua new file mode 100644 index 000000000..84a43dfe0 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/3_shared.lua @@ -0,0 +1,63 @@ +local pr = PseudoRandom(os.time()*5) + +local offsets = {} +for x=-2, 2 do + for z=-2, 2 do + table.insert(offsets, {x=x, y=0, z=z}) + end +end + +--[[ Periodically check and teleport mob to owner if not sitting (order ~= "sit") and +the owner is too far away. To be used with do_custom. Note: Optimized for mobs smaller than 1×1×1. +Larger mobs might have space problems after teleportation. + +* dist: Minimum required distance from owner to teleport. Default: 12 +* teleport_check_interval: Optional. Interval in seconds to check the mob teleportation. Default: 4 ]] +mobs_mc.make_owner_teleport_function = function(dist, teleport_check_interval) + return function(self, dtime) + -- No teleportation if no owner or if sitting + if not self.owner or self.order == "sit" then + return + end + if not teleport_check_interval then + teleport_check_interval = 4 + end + if not dist then + dist = 12 + end + if self._teleport_timer == nil then + self._teleport_timer = teleport_check_interval + return + end + self._teleport_timer = self._teleport_timer - dtime + if self._teleport_timer <= 0 then + self._teleport_timer = teleport_check_interval + local mob_pos = self.object:getpos() + local owner = minetest.get_player_by_name(self.owner) + if not owner then + -- No owner found, no teleportation + return + end + local owner_pos = owner:getpos() + local dist_from_owner = vector.distance(owner_pos, mob_pos) + if dist_from_owner > dist then + -- Check for nodes below air in a 5×1×5 area around the owner position + local check_offsets = table.copy(offsets) + -- Attempt to place mob near player. Must be placed on walkable node below a non-walkable one. Place inside that air node. + while #check_offsets > 0 do + local r = pr:next(1, #check_offsets) + local telepos = vector.add(owner_pos, check_offsets[r]) + local telepos_below = {x=telepos.x, y=telepos.y-1, z=telepos.z} + table.remove(check_offsets, r) + -- Long story short, spawn on a platform + if minetest.registered_nodes[minetest.get_node(telepos).name].walkable == false and + minetest.registered_nodes[minetest.get_node(telepos_below).name].walkable == true then + -- Correct position found! Let's teleport. + self.object:setpos(telepos) + return + end + end + end + end + end +end diff --git a/mods/ENTITIES/mobs_mc/4_heads.lua b/mods/ENTITIES/mobs_mc/4_heads.lua new file mode 100644 index 000000000..80c971988 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/4_heads.lua @@ -0,0 +1,61 @@ +--MC Heads for minetest +--maikerumine + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +-- Heads system + +local sounds +if minetest.get_modpath("default") then + sounds = default.node_sound_defaults({ + footstep = {name="default_hard_footstep", gain=0.3} + }) +end + +local function addhead(mobname, desc, longdesc) + if not mobs_mc.is_item_variable_overridden("head_"..mobname) then + return + end + minetest.register_node("mobs_mc:head_"..mobname, { + description = desc, + _doc_items_longdesc = longdesc, + drawtype = "nodebox", + is_ground_content = false, + node_box = { + type = "fixed", + fixed = { + { -0.25, -0.5, -0.25, 0.25, 0.0, 0.25, }, + }, + }, + groups = { oddly_breakable_by_hand=3, head=1, }, + -- The head textures are based off the textures of an actual mob. + -- FIXME: This code assumes 16×16 textures for the mob textures! + tiles = { + -- Note: bottom texture is overlaid over top texture to get rid of possible transparency. + -- This is required for skeleton skull and wither skeleton skull. + "[combine:16x16:-4,4=mobs_mc_"..mobname..".png", -- top + "([combine:16x16:-4,4=mobs_mc_"..mobname..".png)^([combine:16x16:-12,4=mobs_mc_"..mobname..".png)", -- bottom + "[combine:16x16:-12,0=mobs_mc_"..mobname..".png", -- left + "[combine:16x16:4,0=mobs_mc_"..mobname..".png", -- right + "[combine:16x16:-20,0=mobs_mc_"..mobname..".png", -- back + "[combine:16x16:-4,0=mobs_mc_"..mobname..".png", -- front + }, + paramtype = "light", + paramtype2 = "facedir", + sunlight_propagates = true, + walkable = true, + sounds = sounds, + selection_box = { + type = "fixed", + fixed = { -0.25, -0.5, -0.25, 0.25, 0.0, 0.25, }, + }, + }) +end + +-- Add heads +addhead("zombie", S("Zombie Head"), S("A zombie head is a small decorative block which resembles the head of a zombie.")) +addhead("creeper", S("Creeper Head"), S("A creeper head is a small decorative block which resembles the head of a creeper.")) +addhead("skeleton", S("Skeleton Skull"), S("A skeleton skull is a small decorative block which resembles the skull of a skeleton.")) +addhead("wither_skeleton", S("Wither Skeleton Skull"), S("A wither skeleton skull is a small decorative block which resembles the skull of a wither skeleton.")) diff --git a/mods/ENTITIES/mobs_mc/LICENSE b/mods/ENTITIES/mobs_mc/LICENSE new file mode 100644 index 000000000..9cecc1d46 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + {one line to give the program's name and a brief idea of what it does.} + Copyright (C) {year} {name of author} + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + {project} Copyright (C) {year} {fullname} + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/mods/ENTITIES/mobs_mc/LICENSE-media.md b/mods/ENTITIES/mobs_mc/LICENSE-media.md new file mode 100644 index 000000000..73b62feb7 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/LICENSE-media.md @@ -0,0 +1,70 @@ +# Credits licensing for media files in `mobs_mc` + +## Licenses used + +The following media licenses are used: + +* [CC0](https://creativecommons.org/choose/zero/) +* [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/) +* [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) +* [GPL v3](https://www.gnu.org/licenses/gpl-3.0.html]) +* [MIT License](https://opensource.org/licenses/MIT) +* [LGPL v2.1](https://www.gnu.org/licenses/lgpl-2.1.html) + +Note: A “`*`” in a file name below is a placeholder which can stand for any text. + +## Models +All models were done by [22i](https://github.com/22i) and are licensed under GPLv3. + +Origin of those models: + +* [Mod “amc”](https://github.com/22i/amc/) +* [Repository with Blender source files for models](https://github.com/22i/minecraft-voxel-blender-models) + +## Textures + +* Most mob and item textures from [Pixel Perfection](https://www.planetminecraft.com/texture_pack/131pixel-perfection/), a texture pack for Minecraft. + * Author: [XSSheep](https://www.planetminecraft.com/member/xssheep/) + * License: CC BY-SA 4.0 +* “Spawn egg” textures (`mobs_mc_spawn_icon_*`) by 22i +* Any other texture not mentioned here are licensed under the MIT License + +## Sounds + +* PilzAdam and Wuzzy (CC0) + * `mobs_mc_chicken_lay_egg.ogg` +* Randomation (CC0) + * `green_slime_damage.ogg` + * `green_slime_attack.ogg` + * Source: +* [Dr. Minky](http://www.freesound.org/people/DrMinky/sounds/) (CC BY 3.0) + * `green_slime_jump.ogg` + * `green_slime_land.ogg` + * `green_slime_death.ogg` +* Zozzy from Freesound.org (CC0) + * `mobs_mc_cow.ogg` + * Source: +* [NPXcoot](https://github.com/NPXcoot1) (CC BY-SA 4.0) + * `mobs_mc_ender_dragon_*` +* Blender Foundation (CC BY 3.0) + * `mobs_sheep.ogg`, +* daufinsyd (MIT License) + * `mobs_mc_blaze_breath.ogg` + * `mobs_mc_blaze_died.ogg` + * `mobs_mc_squid_hurt.ogg` +* [thefilmbakery](https://freesound.org/people/thefilmbakery/) (CC0) + * `mobs_mc_blaze_hurt.ogg` + * Source: +* TenPlus1, from `mobs_monster` or `mobs_animal` mod (MIT License) + * `mobs_chicken.ogg` + * `mobs_fireball.ogg` + * `mobs_kitten.ogg` + * `mobs_mc_llama.ogg` + * `mobs_pig.ogg` + * `mobs_pig_angry.ogg` + * `mobs_rat.ogg` + * `mobs_sandmonster.ogg` + * `mobs_spider.ogg` +* BrandonReese (LGPL v2.1) + * `mobs_eerie.ogg` + diff --git a/mods/ENTITIES/mobs_mc/README.md b/mods/ENTITIES/mobs_mc/README.md index 94eb77a60..6803451a4 100644 --- a/mods/ENTITIES/mobs_mc/README.md +++ b/mods/ENTITIES/mobs_mc/README.md @@ -1,64 +1,88 @@ -MC MOBS -WIP -assembled by maikerumine -compatable with Mobs Redo API +# MC-like mobs [`mobs_mc`] -## LICENSING -Note: In the following file name lists, the asterisk (“`*`”) is a placeholder which stands for any sequence of characters. -Everything not explicitly mentioned or with no license mentioned falls under the license of the MineClone 2 project (see README.md in the top directory of MineClone 2). +This mod adds mobs which closely resemble the mobs from the game Minecraft, version 1.12. -### Code -MIT License +## Credits -by PilzAdam and others +* [maikerumine](https://github.com/maikerumine): Coding behaviour, spawning, drops, and misc. +* [Wuzzy2](https://github.com/Wuzzy2): Zombies, husks, item textures, and code +* [toby109tt](https://github.com/tobyplowy): Mapping fixes - better 2D planes +* [22i](https://github.com/22i): Models (done in Blender) and mob icons for spawn eggs +* [XSSheep](https://www.planetminecraft.com/member/xssheep/): Mob and item textures (from [Pixel Perfection](https://www.planetminecraft.com/texture_pack/131pixel-perfection/) +* See `LICENSE_media.md` for detailed credits about each file -### Sound files +## Licensing -- `mobs_mc_squid_hurt.ogg` - - Author: daufinsyd -- `mobs_mc_chicken_lay_egg.ogg` - - WTFPL, by PilzAdam and Wuzzy -- `mobs_mc_cow.ogg` - - CC0, by Freesound.org user Zozzy - - Source: -- `mobs_*.ogg` (except the files above) - - MIT License, from `mobs_animal` and `mobs_monster` by TenPlus1 -- `blaze_breath.ogg` -- `blaze_died1.ogg` - - Author: daufinsyd -- `blaze_hurt1.ogg` - - CC0, by freesound.org user thefilmbakery - - Source: -- `green_slime_death.ogg` - - CC BY 3.0 - - By freesound.org user DrMinky - - Source: -- `green_slime_*.ogg` - - MIT License -- `mobs_sheep.ogg` - - [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/), created by the Blender Foundation +* Code: GNU General Public License, version 3 (see `LICENSE`) +* Media: MIT, CC0, CC BY 3.0 CC BY-SA 4.0, LGPLv2.1, GPLv3. See `LICENSE_media.md` for details -### Textures +## Useful information for developers -- `mobs_squid.png` -- `mobs_blaze.png` - - GPLv3 by 22i -- `mobs_bunny_*.png` - - MIT License, by ExeterDad -- `spawn_egg_squid.png` -- `spawn_egg_blaze.png` - - Author: daufinsyd -- `spawn_egg_rabbit.png` - - MIT License, by Wuzzy -- `mobs_skeleton2.png` - - MIT License, originally from Faithful texture pack - (see MineClone 2 main readme file), edited by kingoscargames +### Subgame integration +Want to include this mod in your subgame? Read `gameconfig.md`. -### Models -- `mobs_bunny.b3d` - - MIT License, by ExeterDad +### Links -Everything else: +* [`mobs_mc`](https://github.com/maikerumine/mobs_mc) +* [Blender models](https://github.com/22i/minecraft-voxel-blender-models) +* [How to recreate mobs from textures with Blender and Gimp](http://imgur.com/a/Iqg88) -Faithful 1.11 - - MIT License, by Vattic, xMrVizzy and contributors +## List of mobs + +**Note**: Many of these are incomplete. + +### Monsters + +* Zombie +* Husk +* Skeleton +* Stray +* Creeper +* Slime +* Spider +* Cave Spider +* Enderman +* Zombie Villager +* Zombie Pigman +* Wither Skeleton +* Magma Cube +* Blaze +* Ghast +* Evoker +* Vex +* Vindicator +* Witch +* Guardian +* Silverfish +* Endermite +* Shulker +* Ender Dragon +* Wither +* Elder Guardian + +### Peaceful mobs + +* Chicken +* Cow +* Pig +* Rabbit +* Sheep +* Squid +* Polar Bear +* Bat +* Mooshroom +* Horse +* Donkey +* Llama +* Mule +* Skeleton Horse +* Zombie Horse + +### Helpful mobs + +* Wolf +* Villager +* Iron golem +* Snow golem +* Ocelot/Cat +* Parrot diff --git a/mods/ENTITIES/mobs_mc/bat.lua b/mods/ENTITIES/mobs_mc/bat.lua new file mode 100644 index 000000000..5de504f84 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/bat.lua @@ -0,0 +1,66 @@ +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +mobs:register_mob("mobs_mc:bat", { + type = "animal", + passive = true, + hp_min = 6, + hp_max = 6, + collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.89, 0.25}, + visual = "mesh", + mesh = "mobs_mc_bat.b3d", + textures = { + {"mobs_mc_bat.png"}, + }, + visual_size = {x=1, y=1}, + sounds = { + random = "mobs_rat", -- TODO: This sound is supposed to be very high-pitched and scary + distance = 16, + }, + walk_velocity = 4.5, + run_velocity = 6.0, + -- TODO: Hang upside down + animation = { + walk_speed = 80, stand_speed = 80, run_speed = 80, + stand_start = 0, stand_end = 40, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + }, + + water_damage = 1, + lava_damage = 4, + light_damage = 0, + fall_damage = 0, + view_range = 16, + + fly = true, + fly_in = "air", +}) + + +-- Spawning + +--[[ If the game has been launched between the 20th of October and the 3rd of November system time, +-- the maximum spawn light level is increased. ]] +local date = os.date("*t") +local maxlight +if (date.month == 10 and date.day >= 20) or (date.month == 11 and date.day <= 3) then + maxlight = 6 +else + maxlight = 3 +end + +-- Spawn on solid blocks at or below Sea level and the selected light level +mobs:spawn_specific("mobs_mc:bat", mobs_mc.spawn.solid,{"air"},0, maxlight, 20, 5000, 2, -500, 0) + + +-- spawn eggs +mobs:register_egg("mobs_mc:bat", S("Bat"), "mobs_mc_spawn_icon_bat.png", 0) + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Bat loaded") +end diff --git a/mods/ENTITIES/mobs_mc/blaze.lua b/mods/ENTITIES/mobs_mc/blaze.lua index 1f092a7e5..6ee6a069c 100644 --- a/mods/ENTITIES/mobs_mc/blaze.lua +++ b/mods/ENTITIES/mobs_mc/blaze.lua @@ -3,37 +3,40 @@ -- Model and mobs_blaze.png see https://github.com/22i/minecraft-voxel-blender-models -- blaze.lua partial copy of mobs_mc/ghast.lua - +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") --dofile(minetest.get_modpath("mobs").."/api.lua") - +--################### +--################### BLAZE +--################### mobs:register_mob("mobs_mc:blaze", { type = "monster", hp_min = 20, hp_max = 20, - collisionbox = {-0.4, 0.4, -0.4, 0.4, 1.9, 0.4}, - textures = { - {"mobs_blaze.png"} - }, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.79, 0.3}, + rotate = -180, visual = "mesh", - mesh = "mobs_blaze.b3d", - makes_footstep_sound = true, + mesh = "mobs_mc_blaze.b3d", + textures = { + {"mobs_mc_blaze.png"}, + }, + visual_size = {x=3, y=3}, sounds = { - random = "blaze_breath", - death = "blaze_died", - damage = "blaze_hurt1", - attack = "default_punch3", + random = "mobs_mc_blaze_breath", + death = "mobs_mc_blaze_died", + damage = "mobs_mc_blaze_hurt", + distance = 16, }, walk_velocity = .8, run_velocity = 1.6, - damage = 2.5, + damage = 6, pathfinding = 1, - group_attack = true, - armor = 80, drops = { - {name = "mcl_mobitems:blaze_rod", + {name = mobs_mc.items.blaze_rod, chance = 1, min = 0, max = 1,}, @@ -45,30 +48,30 @@ mobs:register_mob("mobs_mc:blaze", { walk_end = 40, run_start = 1, run_end = 40, - shoot_start = 1, - shoot_end = 40, + shoot_start = 1, + shoot_end = 40, }, - drawtype = "front", - -- MC Wiki: 1 damage every half second + -- MC Wiki: takes 1 damage every half second while in water water_damage = 2, lava_damage = 0, fall_damage = 0, + fall_speed = -2.25, light_damage = 0, view_range = 16, - attack_type = "shoot", - arrow = "mobs_mc:blaze_fireball", - shoot_interval = 3.5, - passive = false, - jump = true, + attack_type = "dogshoot", + arrow = "mobs_mc:blaze_fireball", + shoot_interval = 3.5, + passive = false, + jump = true, jump_height = 4, - floats = 1, - fly = true, - jump_chance = 98, - fear_height = 120, + fly = true, + jump_chance = 98, + fear_height = 120, + blood_amount = 0, }) -mobs:register_spawn("mobs_mc:blaze", {"mcl_core:lava_flowing", "mcl_nether:netherrack","air"}, 30, -1, 5000, 1, -1000) - +mobs:register_spawn("mobs_mc:blaze", mobs_mc.spawn.nether_fortress, minetest.LIGHT_MAX+1, 0, 5000, 1, -1000, true) + -- Blaze fireball mobs:register_arrow("mobs_mc:blaze_fireball", { visual = "sprite", @@ -82,7 +85,6 @@ mobs:register_arrow("mobs_mc:blaze_fireball", { full_punch_interval = 1.0, damage_groups = {fleshy = 5}, }, nil) - mcl_hunger.exhaust(player:get_player_name(), mcl_hunger.EXHAUST_DAMAGE) end, hit_mob = function(self, player) @@ -96,15 +98,19 @@ mobs:register_arrow("mobs_mc:blaze_fireball", { hit_node = function(self, pos, node) local pos_above = {x=pos.x, y=pos.y+1, z=pos.z} if minetest.registered_nodes[minetest.get_node(pos_above).name].buildable_to then - minetest.set_node(pos_above, {name="mcl_fire:fire"}) + minetest.set_node(pos_above, {name=mobs_mc.items.fire}) end end }) -- spawn eggs -mobs:register_egg("mobs_mc:blaze", "Spawn Blaze", "spawn_egg_blaze.png") +mobs:register_egg("mobs_mc:blaze", S("Blaze"), "mobs_mc_spawn_icon_blaze.png", 0) -if minetest.setting_get("log_mods") then + + + + +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC Blaze loaded") end diff --git a/mods/ENTITIES/mobs_mc/chicken.lua b/mods/ENTITIES/mobs_mc/chicken.lua index fc712adf4..09f6ee26f 100644 --- a/mods/ENTITIES/mobs_mc/chicken.lua +++ b/mods/ENTITIES/mobs_mc/chicken.lua @@ -1,107 +1,105 @@ ---MCmobs v0.2 ---maikerumine ---made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + --dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### CHICKEN +--################### + + mobs:register_mob("mobs_mc:chicken", { type = "animal", + hp_min = 4, hp_max = 4, - -- The x/z size is slightly bigger than in Minecraft (MC: 0.4×0.4; MCL2: 0.5×0.5) - collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.69, 0.25}, - + collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.69, 0.2}, + runaway = true, + floats = 1, visual = "mesh", - visual_size = {x=0.7, y=0.7}, - mesh = "mobs_mc_chicken.x", + mesh = "mobs_mc_chicken.b3d", textures = { - {"mobs_mc_chicken.png"} + {"mobs_mc_chicken.png"}, }, + visual_size = {x=2.2, y=2.2}, + makes_footstep_sound = true, walk_velocity = 1, - armor = 100, drops = { - {name = "mcl_mobitems:chicken", + {name = mobs_mc.items.chicken_raw, chance = 1, min = 1, max = 1,}, - {name = "mcl_mobitems:feather", + {name = mobs_mc.items.feather, chance = 1, min = 0, max = 2,}, }, - drawtype = "front", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + water_damage = 1, + lava_damage = 4, light_damage = 0, - fall_damage = false, - fear_height = 4, - jump_height = 4.5, + fall_damage = 0, + fall_speed = -2.25, sounds = { random = "mobs_chicken", - death = "Chickenhurt1", - hurt = "Chickenhurt1", + death = "Chickenhurt1", -- TODO: replace + damage = "Chickenhurt1", -- TODO: replace + distance = 16, }, 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, + stand_speed = 25, walk_speed = 25, run_speed = 50, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, }, - --from mobs_animals - follow = {"mcl_farming:wheat_seeds", "mcl_farming:beetroot_seeds", "mcl_farming:pumpkin_seeds", "mcl_farming:melon_seeds"}, - view_range = 5, + + follow = mobs_mc.follow.chicken, + view_range = 16, + fear_height = 4, on_rightclick = function(self, clicker) - - if mobs:feed_tame(self, clicker, 1, true, true) then - return - end + if mobs:feed_tame(self, clicker, 1, true, true) then return end + if mobs:protect(self, clicker) then return end + if mobs:capture_mob(self, clicker, 0, 60, 5, false, nil) then return end end, - do_custom = function(self) + do_custom = function(self, dtime) + + self.egg_timer = (self.egg_timer or 0) + dtime + if self.egg_timer < 10 then + return + end + self.egg_timer = 0 if self.child - or math.random(1, 5000) > 1 then + or math.random(1, 100) > 1 then return end local pos = self.object:getpos() - minetest.add_item(pos, "mcl_throwing:egg") + minetest.add_item(pos, mobs_mc.items.egg) minetest.sound_play("mobs_mc_chicken_lay_egg", { pos = pos, gain = 1.0, - max_hear_distance = 5, + max_hear_distance = 16, }) end, }) -mobs:register_spawn("mobs_mc:chicken", {"mcl_core:dirt_with_grass"}, 20, 9, 7000, 1, 31000) - - --- compatibility -mobs:alias_mob("mobs:chicken", "mobs_mc:chicken") +--spawn +mobs:register_spawn("mobs_mc:chicken", mobs_mc.spawn.grassland, minetest.LIGHT_MAX+1, 9, 17000, 3, 31000) -- spawn eggs -mobs:register_egg("mobs_mc:chicken", "Spawn Chicken", "spawn_egg_chicken.png") +mobs:register_egg("mobs_mc:chicken", S("Chicken"), "mobs_mc_spawn_icon_chicken.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC chicken loaded") end diff --git a/mods/ENTITIES/mobs_mc/cow+mooshroom.lua b/mods/ENTITIES/mobs_mc/cow+mooshroom.lua new file mode 100644 index 000000000..dcce43478 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/cow+mooshroom.lua @@ -0,0 +1,150 @@ +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +local cow_def = { + type = "animal", + hp_min = 10, + hp_max = 10, + collisionbox = {-0.45, -0.01, -0.45, 0.45, 1.39, 0.45}, + visual = "mesh", + mesh = "mobs_mc_cow.b3d", + textures = { + {"mobs_mc_cow.png"}, + }, + visual_size = {x=2.8, y=2.8}, + makes_footstep_sound = true, + walk_velocity = 1, + drops = { + {name = mobs_mc.items.beef_raw, + chance = 1, + min = 1, + max = 3,}, + {name = mobs_mc.items.leather, + chance = 1, + min = 0, + max = 2,}, + }, + water_damage = 1, + lava_damage = 5, + light_damage = 0, + runaway = true, + sounds = { + random = "mobs_mc_cow", + death = "Cowhurt1", -- TODO: Replace + damage = "Cowhurt1", -- TODO: Replace + distance = 16, + }, + animation = { + stand_speed = 25, walk_speed = 25, run_speed = 50, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + }, + follow = mobs_mc.follow.cow, + on_rightclick = function(self, clicker) + if mobs:feed_tame(self, clicker, 1, true, true) then return end + if mobs:protect(self, clicker) then return end + + if self.child then + return + end + + local item = clicker:get_wielded_item() + if item:get_name() == mobs_mc.items.bucket and clicker:get_inventory() then + local inv = clicker:get_inventory() + inv:remove_item("main", mobs_mc.items.bucket) + -- if room add bucket of milk to inventory, otherwise drop as item + if inv:room_for_item("main", {name=mobs_mc.items.milk}) then + clicker:get_inventory():add_item("main", mobs_mc.items.milk) + else + local pos = self.object:getpos() + pos.y = pos.y + 0.5 + minetest.add_item(pos, {name = mobs_mc.items.milk}) + end + return + end + mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) + end, + follow = mobs_mc.items.wheat, + view_range = 10, + fear_height = 4, +} + +mobs:register_mob("mobs_mc:cow", cow_def) + +-- Mooshroom +local mooshroom_def = table.copy(cow_def) + +mooshroom_def.mesh = "mobs_mc_cow.b3d" +mooshroom_def.textures = { {"mobs_mc_mooshroom.png^mobs_mc_mooshroom_mooshroom.png"}, } +mooshroom_def.on_rightclick = function(self, clicker) + if mobs:feed_tame(self, clicker, 1, true, true) then return end + if mobs:protect(self, clicker) then return end + + if self.child then + return + end + local item = clicker:get_wielded_item() + -- Use shears to get mushrooms and turn mooshroom into cow + if item:get_name() == mobs_mc.items.shears then + local pos = self.object:getpos() + minetest.sound_play("shears", {pos = pos}) + minetest.add_item({x=pos.x, y=pos.y+1.4, z=pos.z}, mobs_mc.items.mushroom_red .. " 5") + + local oldyaw = self.object:getyaw() + self.object:remove() + local cow = minetest.add_entity(pos, "mobs_mc:cow") + cow:setyaw(oldyaw) + + if not minetest.setting_getbool("creative_mode") then + item:add_wear(mobs_mc.misc.shears_wear) + clicker:get_inventory():set_stack("main", clicker:get_wield_index(), item) + end + -- Use bucket to milk + elseif item:get_name() == mobs_mc.items.bucket and clicker:get_inventory() then + local inv = clicker:get_inventory() + inv:remove_item("main", mobs_mc.items.bucket) + -- If room, add milk to inventory, otherwise drop as item + if inv:room_for_item("main", {name=mobs_mc.items.milk}) then + clicker:get_inventory():add_item("main", mobs_mc.items.milk) + else + local pos = self.object:getpos() + pos.y = pos.y + 0.5 + minetest.add_item(pos, {name = mobs_mc.items.milk}) + end + -- Use bowl to get mushroom stew + elseif item:get_name() == mobs_mc.items.bowl and clicker:get_inventory() then + local inv = clicker:get_inventory() + inv:remove_item("main", mobs_mc.items.bowl) + -- If room, add mushroom stew to inventory, otherwise drop as item + if inv:room_for_item("main", {name=mobs_mc.items.mushroom_stew}) then + clicker:get_inventory():add_item("main", mobs_mc.items.mushroom_stew) + else + local pos = self.object:getpos() + pos.y = pos.y + 0.5 + minetest.add_item(pos, {name = mobs_mc.items.mushroom_stew}) + end + end + mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) +end +mobs:register_mob("mobs_mc:mooshroom", mooshroom_def) + + +-- Spawning +mobs:register_spawn("mobs_mc:cow", mobs_mc.spawn.grassland, minetest.LIGHT_MAX+1, 9, 17000, 20, 31000) +mobs:register_spawn("mobs_mc:mooshroom", mobs_mc.spawn.mushroom_island, minetest.LIGHT_MAX+1, 9, 17000, 10, 31000) + + +-- compatibility +mobs:alias_mob("mobs_animal:cow", "mobs_mc:cow") + +-- spawn egg +mobs:register_egg("mobs_mc:cow", S("Cow"), "mobs_mc_spawn_icon_cow.png", 0) +mobs:register_egg("mobs_mc:mooshroom", S("Mooshroom"), "mobs_mc_spawn_icon_mooshroom.png", 0) + +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Cow loaded") +end diff --git a/mods/ENTITIES/mobs_mc/cow.lua b/mods/ENTITIES/mobs_mc/cow.lua deleted file mode 100644 index aabf80e53..000000000 --- a/mods/ENTITIES/mobs_mc/cow.lua +++ /dev/null @@ -1,104 +0,0 @@ ---MCmobs v0.2 ---maikerumine ---made for MC like Survival game ---License for code WTFPL and otherwise stated in readmes - -mobs:register_mob("mobs_mc:cow", { - type = "animal", - hp_min = 10, - hp_max = 10, - collisionbox = {-0.8, -0.01, -0.8, 0.8, 1.8, 0.8}, - - visual = "mesh", - mesh = "mobs_mc_cow.x", - textures = { - {"mobs_mc_cow.png"} - }, - makes_footstep_sound = true, - walk_velocity = 1, - armor = 100, - drops = { - {name = "mcl_mobitems:beef", - chance = 1, - min = 1, - max = 3,}, - {name = "mcl_mobitems:leather", - chance = 1, - min = 0, - max = 2,}, - }, - drawtype = "front", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, - light_damage = 0, - fear_height = 3, - sounds = { - random = "mobs_mc_cow", - 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, - }, - --from mobs_animals - follow = "mcl_farming:wheat_item", - view_range = 10, - fear_height = 2, - jump_height = 1.25, - on_rightclick = function(self, clicker) - - -- feed or tame - if mobs:feed_tame(self, clicker, 1, 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.child == true then - return - end - - local inv = clicker:get_inventory() - - inv:remove_item("main", "bucket:bucket_empty") - - if inv:room_for_item("main", {name = "mcl_mobitems:milk_bucket"}) then - clicker:get_inventory():add_item("main", "mcl_mobitems:milk_bucket") - else - local pos = self.object:getpos() - pos.y = pos.y + 0.5 - minetest.add_item(pos, {name = "mcl_mobitems:milk_bucket"}) - end - - return - end - end, -}) - -mobs:register_spawn("mobs_mc:cow", {"mcl_core:dirt_with_grass"}, 20, 9, 7000, 1, 31000) - - --- compatibility -mobs:alias_mob("mobs:cow", "mobs_mc:cow") - --- spawn egg -mobs:register_egg("mobs_mc:cow", "Spawn Cow", "spawn_egg_cow.png") - - -if minetest.setting_get("log_mods") then - minetest.log("action", "MC Cow loaded") -end diff --git a/mods/ENTITIES/mobs_mc/creeper.lua b/mods/ENTITIES/mobs_mc/creeper.lua index 83bbba7df..1e951efee 100644 --- a/mods/ENTITIES/mobs_mc/creeper.lua +++ b/mods/ENTITIES/mobs_mc/creeper.lua @@ -1,52 +1,98 @@ ---MCmobs v0.2 ---maikerumine ---made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") --dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### CREEPER +--################### + + + mobs:register_mob("mobs_mc:creeper", { type = "monster", hp_min = 20, hp_max = 20, - collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.6, 0.4}, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.69, 0.3}, pathfinding = 1, - group_attack = true, visual = "mesh", - visual_size = {x=.75, y=.75, z=.75}, - mesh = "mobs_creeper.x", + mesh = "mobs_mc_creeper.b3d", textures = { - {"mobs_creeper.png"} + {"mobs_mc_creeper.png"}, }, - makes_footstep_sound = false, + visual_size = {x=3, y=3}, sounds = { attack = "tnt_ignite", - death = "Creeperdeath", - damage = "Creeper4", + death = "Creeperdeath", -- TODO: Replace + damage = "Creeper4", -- TODO: Replce war_cry = "tnt_ignite", explode = "tnt_explode", + distance = 16, }, + makes_footstep_sound = true, walk_velocity = 1.5, run_velocity = 3, - damage = 1, + attack_type = "explode", + explosion_radius = 3, - armor = 100, - maxdrops = 3, + -- TODO: Disable Mobs Redo fire + + -- Force-ignite creeper with flint and steel and explode after 1.5 seconds. + -- TODO: Make creeper flash after doing this as well. + -- TODO: Test and debug this code. + on_rightclick = function(self, clicker) + if self._forced_explosion_countdown_timer ~= nil then + return + end + local item = clicker:get_wielded_item() + if item:get_name() == mobs_mc.items.flint_and_steel then + if not minetest.settings:get_bool("creative_mode") then + -- Wear tool + local wdef = item:get_definition() + item:add_wear(1000) + -- Tool break sound + if itemstack:get_count() == 0 and wdef.sound and wdef.sound.breaks then + minetest.sound_play(wdef.sound.breaks, {pos = pt.above, gain = 0.5}) + end + clicker:set_wielded_item(item) + end + self._forced_explosion_countdown_timer = 1.5 + minetest.sound_play(self.sounds.attack, {pos = self.object:getpos(), gain = 1, max_hear_distance = 16}) + end + end, + do_custom = function(self, dtime) + if self._forced_explosion_countdown_timer ~= nil then + self._forced_explosion_countdown_timer = self._forced_explosion_countdown_timer - dtime + if self._forced_explosion_countdown_timer <= 0 then + mobs:explosion(self.object:getpos(), self.explosion_radius, 0, 1, self.sounds.explode) + self.object:remove() + end + end + end, + on_die = function(self, pos) + -- Drop a random music disc + -- TODO: Only do this if killed by skeleton + if math.random(1, 200) == 1 then + local r = math.random(1, #mobs_mc.items.music_discs) + minetest.add_item({x=pos.x, y=pos.y+1, z=pos.z}, mobs_mc.items.music_discs[r]) + end + end, + maxdrops = 2, drops = { - {name = "mcl_mobitems:gunpowder", + {name = mobs_mc.items.gunpowder, chance = 1, min = 0, max = 2,}, - -- TODO: In Minecraft, record discs only drop when a creeper got killed by a skeleton's arrow - {name = "mcl_jukebox:record_6", - chance = 100, - min = 1, - max = 1,}, - {name = "mcl_jukebox:record_7", - chance = 125, + + -- Head + -- TODO: Only drop if killed by charged creeper + {name = mobs_mc.items.head_creeper, + chance = 200, -- 0.5% min = 1, max = 1,}, }, @@ -66,23 +112,24 @@ mobs:register_mob("mobs_mc:creeper", { look_start = 50, look_end = 108, }, - drawtype = "front", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + floats = 1, + fear_height = 4, + water_damage = 1, + lava_damage = 4, light_damage = 0, view_range = 16, - attack_type = "explode", + blood_amount = 0, }) -mobs:register_spawn("mobs_mc:creeper", {"group:solid"}, 7, -1, 5000, 4, 31000) +mobs:spawn_specific("mobs_mc:creeper", mobs_mc.spawn.solid, {"air"},0, 7, 20, 16500, 1, -310, 31000) -- compatibility mobs:alias_mob("mobs:creeper", "mobs_mc:creeper") -- spawn eggs -mobs:register_egg("mobs_mc:creeper", "Spawn Creeper", "spawn_egg_creeper.png") +mobs:register_egg("mobs_mc:creeper", S("Creeper"), "mobs_mc_spawn_icon_creeper.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC Creeper loaded") end diff --git a/mods/ENTITIES/mobs_mc/depends.txt b/mods/ENTITIES/mobs_mc/depends.txt index 2c400b96f..3c2630eb5 100644 --- a/mods/ENTITIES/mobs_mc/depends.txt +++ b/mods/ENTITIES/mobs_mc/depends.txt @@ -1,8 +1,11 @@ -mcl_core -mcl_tools -mcl_hunger -mcl_fire +default? mobs -mcl_tnt -mcl_mobitems -3d_armor? +tnt? +mcl_throwing? +throwing? +fishing? +bones? +mesecons_materials? +mobs_mc_gameconfig? +intllib? +doc_items? diff --git a/mods/ENTITIES/mobs_mc/description.txt b/mods/ENTITIES/mobs_mc/description.txt index c57195fea..ac5a64066 100644 --- a/mods/ENTITIES/mobs_mc/description.txt +++ b/mods/ENTITIES/mobs_mc/description.txt @@ -1 +1 @@ -Adds Minecraft-like monsters and animals. +Adds MC like monsters and animals. \ No newline at end of file diff --git a/mods/ENTITIES/mobs_mc/ender_dragon.lua b/mods/ENTITIES/mobs_mc/ender_dragon.lua new file mode 100644 index 000000000..c14e46e1d --- /dev/null +++ b/mods/ENTITIES/mobs_mc/ender_dragon.lua @@ -0,0 +1,182 @@ +--################### +--################### ENDERDRAGON +--################### + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--[[ +mobs:register_mob("mobs_mc:12enderdragon", { + type = "animal", + passive = true, + runaway = true, + stepheight = 1.2, + hp_min = 30, + hp_max = 60, + armor = 150, + collisionbox = {-0.35, -0.01, -0.35, 0.35, 2, 0.35}, + visual = "mesh", + mesh = "enderdragon.b3d", + textures = { + {"enderdragon.png"}, + }, + visual_size = {x=1, y=1}, + walk_velocity = 0.6, + run_velocity = 2, + jump = true, + animation = { + speed_normal = 25, speed_run = 50, + stand_start = 0, stand_end = 20, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, + }, +}) + +mobs:register_egg("mobs_mc:12enderdragon", "Enderdragon", "enderdragon_inv.png", 0) +]] +mobs:register_mob("mobs_mc:enderdragon", { + type = "monster", + pathfinding = 1, + attacks_animals = true, + walk_chance = 100, + hp_max = 200, + hp_min = 200, + collisionbox = {-2, 3, -2, 2, 5, 2}, + physical = false, + visual = "mesh", + mesh = "mobs_mc_dragon.b3d", + textures = { + {"mobs_mc_dragon.png"}, + }, + visual_size = {x=3, y=3}, + view_range = 35, + walk_velocity = 6, + run_velocity = 6, + sounds = { + shoot_attack = "mobs_mc_ender_dragon_shoot", + attack = "mobs_mc_ender_dragon_attack", + distance = 60, + }, + physical = true, + damage = 10, + jump = true, + jump_height = 14, + stepheight = 1.2, + jump_chance = 100, + fear_height = 120, + fly = true, + fly_in = {"air"}, + dogshoot_switch = 1, + dogshoot_count_max =5, + dogshoot_count2_max = 5, + passive = false, + attack_animals = true, + drops = { + {name = mobs_mc.items.dragon_egg, + chance = 1, + min = 1, + max = 1}, + }, + water_damage = 0, + lava_damage = 0, + light_damage = 0, + on_rightclick = nil, + attack_type = "dogshoot", + arrow = "mobs_mc:fireball2", + shoot_interval = 0.5, + shoot_offset = -1, + animation = { + fly_speed = 8, stand_speed = 8, + stand_start = 0, stand_end = 20, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, + }, + blood_amount = 0, +}) + + + +mobs:register_arrow("mobs_mc:roar_of_the_dragon2", { + visual = "sprite", + visual_size = {x = 1, y = 1}, + --textures = {"transparent.png"}, + textures = {"mese_egg.png"}, + velocity = 10, + + on_step = function(self, dtime) + + local pos = self.object:getpos() + + local n = minetest.env:get_node(pos).name + + if self.timer == 0 then + self.timer = os.time() + end + + if os.time() - self.timer > 8 or minetest.is_protected(pos, "") then + self.object:remove() + end + + local objects = minetest.env:get_objects_inside_radius(pos, 1) + for _,obj in ipairs(objects) do + local name = obj:get_entity_name() + if name~="mobs_mc:roar_of_the_dragon2" and name ~= "mobs_mc:enderdragon" then + obj:set_hp(obj:get_hp()-0.05) + if (obj:get_hp() <= 0) then + if (not obj:is_player()) and name ~= self.object:get_luaentity().name then + obj:remove() + end + end + end + end + + minetest.env:set_node(pos, {name="air"}) + if math.random(1,2)==1 then + dx = math.random(-1,1) + dy = math.random(-1,1) + dz = math.random(-1,1) + local p = {x=pos.x+dx, y=pos.y+dy, z=pos.z+dz} + minetest.env:set_node(p, {name="air"}) + end + end +}) +--GOOD LUCK LOL! +-- fireball (weapon) +mobs:register_arrow(":mobs_mc:fireball2", { + visual = "sprite", + visual_size = {x = 1.5, y = 1.5}, + textures = {"fire_basic_flame.png"}, + --textures = {"mobs_skeleton2_front.png^[makealpha:255,255,255 "}, + velocity = 6, + + -- direct hit, no fire... just plenty of pain + hit_player = function(self, player) + minetest.sound_play("tnt_explode", {pos = pos, gain = 1.5, max_hear_distance = 2*64}) + player:punch(self.object, 1.0, { + full_punch_interval = 0.5, + damage_groups = {fleshy = 6}, + }, nil) + + end, + + hit_mob = function(self, player) + minetest.sound_play("tnt_explode", {pos = pos, gain = 1.5, max_hear_distance = 2*64}) + player:punch(self.object, 1.0, { + full_punch_interval = 0.5, + damage_groups = {fleshy = 12}, + }, nil) + + end, + + -- node hit, bursts into flame + hit_node = function(self, pos, node) + mobs:explosion(pos, 3, 1, 1) + --from tnt + minetest.sound_play("tnt_explode", {pos = pos, gain = 1.5, max_hear_distance = 2*64}) + + end +}) + +mobs:register_egg("mobs_mc:enderdragon", S("Ender Dragon"), "mobs_mc_spawn_icon_dragon.png", 0) + diff --git a/mods/ENTITIES/mobs_mc/enderman.lua b/mods/ENTITIES/mobs_mc/enderman.lua index 8617b4dac..d2447b793 100644 --- a/mods/ENTITIES/mobs_mc/enderman.lua +++ b/mods/ENTITIES/mobs_mc/enderman.lua @@ -1,73 +1,159 @@ ---MCmobs v0.2 +--MCmobs v0.4 --maikerumine --made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") --dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### ENDERMAN +--################### + +local pr = PseudoRandom(os.time()*(-334)) +local take_frequency = 10 +local place_frequency = 10 + mobs:register_mob("mobs_mc:enderman", { type = "monster", + runaway = true, + pathfinding = 2, + stepheight = 1.2, hp_min = 40, hp_max = 40, - collisionbox = {-0.4, -1.5, -0.4, 0.4, 1.5, 0.4}, - pathfinding = 1, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 2.89, 0.3}, visual = "mesh", - mesh = "mobs_sand_monster.b3d", + mesh = "mobs_mc_enderman.b3d", textures = { - {"mobs_endermen.png"} + {"mobs_mc_enderman.png^(mobs_mc_enderman_eyes.png^[makealpha:0,0,0)"}, }, - visual_size = {x=1.5, y=1.6}, + visual_size = {x=3, y=3}, makes_footstep_sound = true, sounds = { - random = "mobs_sandmonster", + war_cry = "mobs_sandmonster", death = "green_slime_death", damage = "Creeperdeath", + distance = 16, }, - walk_velocity = 3.2, - run_velocity = 5.4, - damage = 1, - armor = 100, + walk_velocity = 0.2, + run_velocity = 3.4, + damage = 7, drops = { - {name = "mcl_throwing:ender_pearl", + {name = mobs_mc.items.ender_pearl, chance = 1, 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, + speed_normal = 25, speed_run = 50, + stand_start = 40, stand_end = 80, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, }, - drawtype = "front", - water_damage = 1, - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + _taken_node = "", + do_custom = function(self, dtime) + -- Take and put nodes + if not self._take_place_timer then + self._take_place_timer = 0 + return + end + self._take_place_timer = self._take_place_timer + dtime + if (self._taken_node == nil or self._taken_node == "") and self._take_place_timer >= take_frequency then + -- Take random node + self._take_place_timer = 0 + local pos = self.object:getpos() + local takable_nodes = minetest.find_nodes_in_area({x=pos.x-2, y=pos.y-1, z=pos.z-2}, {x=pos.x+2, y=pos.y+1, z=pos.z+2}, mobs_mc.enderman_takable) + if #takable_nodes >= 1 then + local r = pr:next(1, #takable_nodes) + local take_pos = takable_nodes[r] + local node = minetest.get_node(take_pos) + local dug = minetest.dig_node(take_pos) + if dug then + self._taken_node = node.name + -- TODO: Update enderman model (enderman holding block) + local def = minetest.registered_nodes[self._taken_node] + if def.sounds and def.sounds.dug then + minetest.sound_play(def.sounds.dug, {pos = place_pos, max_hear_distance = 16}) + end + end + end + elseif self._taken_node ~= nil and self._taken_node ~= "" and self._take_place_timer >= place_frequency then + -- Place taken node + self._take_place_timer = 0 + local pos = self.object:getpos() + local yaw = self.object:get_yaw() + -- Place node at looking direction + local place_pos = vector.subtract(pos, minetest.facedir_to_dir(minetest.dir_to_facedir(minetest.yaw_to_dir(yaw)))) + if minetest.get_node(place_pos).name == "air" then + -- ... but only if there's a free space + minetest.place_node(place_pos, {name = self._taken_node}) + local def = minetest.registered_nodes[self._taken_node] + if def.sounds and def.sounds.place then + minetest.sound_play(def.sounds.place, {pos = place_pos, max_hear_distance = 16}) + end + self._taken_node = "" + end + end + end, + -- TODO: Teleport enderman on damage, etc. + _do_teleport = function(self) + -- Attempt to randomly teleport enderman + local pos = self.object:getpos() + -- Find all solid nodes below air in a 65×65×65 cuboid centered on the enderman + local nodes = minetest.find_nodes_in_area_under_air(vector.subtract(pos, 32), vector.add(pos, 32), {"group:solid", "group:cracky", "group:crumbly"}) + local telepos + if #nodes > 0 then + -- Up to 64 attempts to teleport + for n=1, math.min(64, #nodes) do + local r = pr:next(1, #nodes) + local nodepos = nodes[r] + local node_ok = true + -- Selected node needs to have 3 nodes of free space above + for u=1, 3 do + local node = minetest.get_node({x=nodepos.x, y=nodepos.y+u, z=nodepos.z}) + if minetest.registered_nodes[node.name].walkable then + node_ok = false + break + end + end + if node_ok then + telepos = {x=nodepos.x, y=nodepos.y+1, z=nodepos.z} + end + end + if telepos then + self.object:setpos(telepos) + end + end + end, + on_die = function(self, pos) + -- Drop carried node on death + if self._taken_node ~= nil and self._taken_node ~= "" then + minetest.add_item(pos, self._taken_node) + end + end, + water_damage = 8, + lava_damage = 4, light_damage = 0, view_range = 16, + fear_height = 4, attack_type = "dogfight", - replace_rate = 1, - replace_what = {"mcl_flowers:allium", "mcl_flowers:azure_bluet", "mcl_flowers:blue_orchid", "mcl_flowers:dandelion", "mcl_flowers:tulip_orange", "mcl_flowers:tulip_red", "mcl_flowers:tulip_pink", "mcl_flowers:tulip_white", "mcl_flowers:oxeye_daisy", "mcl_flowers:poppy", "mcl_core:cactus", "mcl_core:clay", "mcl_core:coarse_dirt", "mcl_core:dirt", "mcl_core:dirt_with_grass", "mcl_core:gravel", "mcl_farming:melon", "mcl_farming:pumpkin_face", "mcl_core:mycelium", "mcl_core:podzol", "mcl_mushrooms:mushroom_red", "mcl_mushrooms:mushroom_brown", "mcl_core:redsand", "mcl_core:sand", "mcl_tnt:tnt", "mcl_nether:netherrack"}, - replace_with = "air", - replace_offset = -1, - + blood_amount = 0, }) -mobs:register_spawn("mobs_mc:enderman", { "group:solid"}, 7, -1, 6000, 4, 31000) - +--spawn on solid blocks +mobs:register_spawn("mobs_mc:enderman", mobs_mc.spawn.desert, 7, 0, 9000, -31000, 31000) +mobs:register_spawn("mobs_mc:enderman", mobs_mc.end_city, minetest.LIGHT_MAX+1, 0, 9000, -31000, -5000) -- spawn eggs -mobs:register_egg("mobs_mc:enderman", "Spawn Enderman", "spawn_egg_enderman.png") +mobs:register_egg("mobs_mc:enderman", S("Enderman"), "mobs_mc_spawn_icon_enderman.png", 0) +if minetest.settings:get_bool("log_mods") then -if minetest.setting_get("log_mods") then minetest.log("action", "MC Enderman loaded") end + diff --git a/mods/ENTITIES/mobs_mc/endermite.lua b/mods/ENTITIES/mobs_mc/endermite.lua new file mode 100644 index 000000000..106a8b994 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/endermite.lua @@ -0,0 +1,39 @@ +--################### +--################### ENDERMITE +--################### + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +mobs:register_mob("mobs_mc:endermite", { + type = "monster", + passive = false, + hp_min = 8, + hp_max = 8, + armor = 100, + group_attack = true, + collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.29, 0.2}, + visual = "mesh", + mesh = "mobs_mc_endermite.b3d", + textures = { + {"mobs_mc_endermite.png"}, + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = false, + sounds = { + random = "mobs_rat", + }, + walk_velocity = 1, + run_velocity = 2, + jump = true, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + fear_height = 4, + view_range = 16, + damage = 2, + blood_amount = 0, +}) + +mobs:register_egg("mobs_mc:endermite", S("Endermite"), "mobs_mc_spawn_icon_endermite.png", 0) diff --git a/mods/ENTITIES/mobs_mc/gameconfig.md b/mods/ENTITIES/mobs_mc/gameconfig.md new file mode 100644 index 000000000..dabfb9359 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/gameconfig.md @@ -0,0 +1,59 @@ +# Subgame integration help + +This mod has been designed to make subgame integration rather easy. Ideally, it should be possible to include this mod verbatim in your subgame, with modifications only done by an external mod. + +To integrate this mod in a subgame, you have to do 2 things: Adding the mod, and adding another mod which tells `mobs_mc` which items to use. The idea is that `mobs_mc` should work with any items. Specifically, these are the steps you need to follow: + +* Add the `mobs_mc` mod and its dependencies +* Add a mod with name “`mobs_mc_gameconfig`” +* In this mod, do this: + * Do *not* depend on `mobs_mc` + * Create the table `mobs_mc` + * Create the table `mobs_mc.override` + * In `mobs_mc.override`, create subtables (`items`, `spawn`, etc.) like in `0_gameconfig.lua`, defining the na + * Read `0_gameconfig.lua` to see which items you can override (and more explanations) +* In `on_construct` of a pumpkin or jack'o lantern node, call: + * `mobs_mc.tools.check_iron_golem_summon(pos)` + * `mobs_mc.tools.check_snow_golem_summon(pos)` + * For more information, see `snowman.lua` and `iron_golem.lua` + +Some things to note: + +* Every override is optional, but explicitly setting all the item overrides is strongly recommended +* `mobs_mc` ships many (but not all) items on its own. If not item name override is set, the `mobs_mc` item is used + * You decide whether your subgame defines its own items, outside of `mobs_mc` or if you let `mobs_mc` do the work. +* Make sure to avoid duplicate items! +* After finishing this, throughly test this +* Without `mobs_mc_gameconfig`, the mod assumes Minetest Game items +* `mobs_mc` optionally depends on `mobs_mc_gameconfig` + +## Example `init.lua` in `mobs_mc_gameconfig` +``` +mobs_mc = {} + +mobs_mc.override = {} + +-- Set the item names here +mobs_mc.override.items = { + blaze_rod = "mcl_mobitems:blaze_rod", + blaze_powder = "mcl_mobitems:blaze_powder", + chicken_raw = "mcl_mobitems:chicken", + -- And so on ... +} + +-- Set the “follow” field of mobs (used for attracting mob, feeding and breeding) +mobs_mc.override.follow = { + chicken = { "mcl_farming:wheat_seeds", "mcl_farming:melon_seeds", "mcl_farming:pumpkin_seeds", "mcl_farming:beetroot_seeds", }, + horse = { "mcl_core:apple", mobs_mc.override.items.wheat }, -- TODO + pig = { "mcl_farming:potato", mobs_mc.override.items.carrot, mobs_mc.override.items.carrot_on_a_stick}, + -- And so on ... +} + +-- Custom spawn nodes +mobs_mc.override.spawn = { + snow = { "example:snow", "example:snow2" }, + -- And so on ... +} + +-- Take a look at the other possible tables, see 0_gameconfig.lua +``` diff --git a/mods/ENTITIES/mobs_mc/ghast.lua b/mods/ENTITIES/mobs_mc/ghast.lua index 90824c4fc..3b71a1b06 100644 --- a/mods/ENTITIES/mobs_mc/ghast.lua +++ b/mods/ENTITIES/mobs_mc/ghast.lua @@ -1,26 +1,32 @@ ---MCmobs v0.2 +--MCmobs v0.4 --maikerumine --made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") --dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### GHAST +--################### + + mobs:register_mob("mobs_mc:ghast", { type = "monster", pathfinding = 1, group_attack = true, hp_min = 10, hp_max = 10, - collisionbox = {-1.45, -1.45, -1.45 ,1.45, 1.45, 1.45}, - visual_size = {x=3.0, y=3.0}, + collisionbox = {-2, 5, -2, 2, 9, 2}, + visual = "mesh", + mesh = "mobs_mc_ghast.b3d", textures = { - {"ghast_white.png", "ghast_white.png", "ghast_front.png", "ghast_white.png", "ghast_white.png", "ghast_white.png"} + {"mobs_mc_ghast.png"}, }, - visual = "cube", - blood_texture ="mobs_blood.png", - rotate = 270, - makes_footstep_sound = true, + visual_size = {x=12, y=12}, sounds = { shoot = "mobs_fireball", death = "zombiedeath", @@ -28,42 +34,31 @@ mobs:register_mob("mobs_mc:ghast", { attack = "mobs_fireball", random = "mobs_eerie", }, - walk_velocity = .8, - run_velocity = 2.6, - damage = 1, - armor = 100, + walk_velocity = 1.6, + run_velocity = 3.2, drops = { - {name = "mcl_mobitems:ghast_tear", - chance = 1, - min = 0, - max = 1,}, - {name = "mcl_mobitems:gunpowder", + {name = mobs_mc.items.gunpowder, chance = 1, min = 0, max = 2,}, + {name = mobs_mc.items.ghast_tear, + chance = 1, + min = 0, + 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, + stand_speed = 50, walk_speed = 50, run_speed = 50, + stand_start = 0, stand_end = 40, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, }, - drawtype = "front", - lava_damage = 0, + lava_damage = 4, light_damage = 0, fall_damage = 0, view_range = 100, --attack_type = "dogshoot", attack_type = "dogshoot", - arrow = "mobs_mc:ghast_fireball", + 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) @@ -75,17 +70,19 @@ mobs:register_mob("mobs_mc:ghast", { jump_height = 4, floats=1, fly = true, + fly_in = {"air"}, jump_chance = 98, fear_height = 120, + blood_amount = 0, }) -mobs:register_spawn("mobs_mc:ghast", {"mcl_core:lava_flowing", "mcl_nether:netherrack", "air"}, 17, -1, 5000, 1, -2000) - --- Ghast fireball -mobs:register_arrow("mobs_mc:ghast_fireball", { +--mobs:register_spawn("mobs_mc:ghast", {"default:flowing_lava", "nether:rack","air"}, 17, -1, 5000, 1, -2000) +mobs:spawn_specific("mobs_mc:ghast", mobs_mc.spawn.nether, {"air"},0, minetest.LIGHT_MAX+1, 0, 18000, 2, -3610, -2100) +-- fireball (weapon) +mobs:register_arrow(":mobs_monster:fireball", { visual = "sprite", - visual_size = {x = 0.8, y = 0.8}, + visual_size = {x = 0.5, y = 0.5}, textures = {"mcl_fire_fire_charge.png"}, velocity = 6, @@ -93,15 +90,14 @@ mobs:register_arrow("mobs_mc:ghast_fireball", { hit_player = function(self, player) player:punch(self.object, 1.0, { full_punch_interval = 1.0, - damage_groups = {fleshy = 6}, + damage_groups = {fleshy = 8}, }, nil) - mcl_hunger.exhaust(player:get_player_name(), mcl_hunger.EXHAUST_DAMAGE) end, hit_mob = function(self, player) player:punch(self.object, 1.0, { full_punch_interval = 1.0, - damage_groups = {fleshy = 6}, + damage_groups = {fleshy = 8}, }, nil) end, @@ -113,10 +109,10 @@ mobs:register_arrow("mobs_mc:ghast_fireball", { + -- spawn eggs -mobs:register_egg("mobs_mc:ghast", "Spawn Ghast", "spawn_egg_ghast.png") +mobs:register_egg("mobs_mc:ghast", S("Ghast"), "mobs_mc_spawn_icon_ghast.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC Ghast loaded") end diff --git a/mods/ENTITIES/mobs_mc/guardian.lua b/mods/ENTITIES/mobs_mc/guardian.lua new file mode 100644 index 000000000..6f4d3c87a --- /dev/null +++ b/mods/ENTITIES/mobs_mc/guardian.lua @@ -0,0 +1,86 @@ +-- v1.4 + +--################### +--################### GUARDIAN +--################### + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +mobs:register_mob("mobs_mc:guardian", { + type = "monster", + hp_min = 30, + hp_max = 30, + passive = false, + attack_type = "dogfight", + pathfinding = 1, + view_range = 16, + walk_velocity = 2, + run_velocity = 4, + damage = 6, + collisionbox = {-0.425, 0.25, -0.425, 0.425, 1.1, 0.425}, + visual = "mesh", + mesh = "mobs_mc_guardian.b3d", + textures = { + {"mobs_mc_guardian.png"}, + }, + visual_size = {x=3, y=3}, + sounds = { + damage = "mobs_mc_squid_hurt", + distance = 16, + }, + animation = { + stand_speed = 25, walk_speed = 25, run_speed = 50, + stand_start = 0, stand_end = 20, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, + }, + drops = { + {name = mobs_mc.items.prismarine_shard, + chance = 1, + min = 0, + max = 2,}, + + -- The following drops are approximations + -- Fish / prismarine crystal + {name = mobs_mc.items.fish_raw, + chance = 4, + min = 1, + max = 1,}, + {name = mobs_mc.items.prismarine_crystals, + chance = 4, + min = 1, + max = 1,}, + + -- Rare drop: fish + {name = mobs_mc.items.fish_raw, + chance = 160, -- 2.5% / 4 + min = 1, + max = 1,}, + {name = mobs_mc.items.salmon_raw, + chance = 160, + min = 1, + max = 1,}, + {name = mobs_mc.items.clownfish_raw, + chance = 160, + min = 1, + max = 1,}, + {name = mobs_mc.items.pufferfish_raw, + chance = 160, + min = 1, + max = 1,}, + }, + fly = true, + fly_in = mobs_mc.items.water_source, + view_range = 16, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + blood_amount = 0, +}) + +mobs:register_spawn("mobs_mc:guardian", mobs_mc.spawn.water, minetest.LIGHT_MAX+1, 0, 5000, 2, -1000, true) + +-- spawn eggs +mobs:register_egg("mobs_mc:guardian", S("Guardian"), "mobs_mc_spawn_icon_guardian.png", 0) diff --git a/mods/ENTITIES/mobs_mc/guardian_elder.lua b/mods/ENTITIES/mobs_mc/guardian_elder.lua new file mode 100644 index 000000000..ec6d9939a --- /dev/null +++ b/mods/ENTITIES/mobs_mc/guardian_elder.lua @@ -0,0 +1,92 @@ +-- v1.4 + +--################### +--################### GUARDIAN +--################### + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +mobs:register_mob("mobs_mc:guardian_elder", { + type = "monster", + hp_min = 80, + hp_max = 80, + passive = false, + attack_type = "dogfight", + pathfinding = 1, + view_range = 16, + walk_velocity = 2, + run_velocity = 4, + damage = 8, + collisionbox = {-0.99875, 0.5, -0.99875, 0.99875, 2.4975, 0.99875}, + visual = "mesh", + mesh = "mobs_mc_guardian.b3d", + textures = { + {"mobs_mc_guardian_elder.png"}, + }, + visual_size = {x=7, y=7}, + sounds = { + damage = "mobs_mc_squid_hurt", + distance = 16, + }, + animation = { + stand_speed = 25, walk_speed = 25, run_speed = 50, + stand_start = 0, stand_end = 20, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, + }, + drops = { + {name = mobs_mc.items.prismarine_shard, + chance = 1, + min = 0, + max = 2,}, + -- TODO: Only drop if killed by player + {name = mobs_mc.items.wet_sponge, + chance = 1, + min = 1, + max = 1,}, + + -- The following drops are approximations + -- Fish / prismarine crystal + {name = mobs_mc.items.fish_raw, + chance = 4, + min = 1, + max = 1,}, + {name = mobs_mc.items.prismarine_crystals, + chance = 4, + min = 1, + max = 1,}, + + -- Rare drop: fish + {name = mobs_mc.items.fish_raw, + chance = 160, -- 2.5% / 4 + min = 1, + max = 1,}, + {name = mobs_mc.items.salmon_raw, + chance = 160, + min = 1, + max = 1,}, + {name = mobs_mc.items.clownfish_raw, + chance = 160, + min = 1, + max = 1,}, + {name = mobs_mc.items.pufferfish_raw, + chance = 160, + min = 1, + max = 1,}, + }, + fly = true, + fly_in = mobs_mc.items.water_source, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + view_range = 16, + blood_amount = 0, +}) + +mobs:register_spawn("mobs_mc:guardian_elder", mobs_mc.spawn.water, minetest.LIGHT_MAX+1, 0, 5000, 2, -1000, true) + +-- spawn eggs +mobs:register_egg("mobs_mc:guardian_elder", S("Elder Guardian"), "mobs_mc_spawn_icon_guardian_elder.png", 0) + diff --git a/mods/ENTITIES/mobs_mc/horse.lua b/mods/ENTITIES/mobs_mc/horse.lua new file mode 100644 index 000000000..47e0940d0 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/horse.lua @@ -0,0 +1,349 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +--################### +--################### HORSE +--################### + +-- Return overlay texture for horse/donkey/mule, e.g. chest, saddle or horse armor +local horse_extra_texture = function(horse) + local base = horse._naked_texture + local saddle = horse._saddle + local chest = horse._chest + local armor = horse._horse_armor + if armor then + if minetest.get_item_group(armor, "horse_armor") > 0 then + base = base .. "^" .. minetest.registered_items[armor]._horse_overlay_image + end + end + if saddle then + base = base .. "^mobs_mc_horse_saddle.png" + end + if chest then + base = base .. "^mobs_mc_horse_chest.png" + end + return base +end + +-- Helper functions to determine equipment rules +local can_equip_horse_armor = function(entity_id) + return entity_id == "mobs_mc:horse" or entity_id == "mobs_mc:skeleton_horse" or entity_id == "mobs_mc:zombie_horse" +end +local can_equip_chest = function(entity_id) + return entity_id == "mobs_mc:mule" or entity_id == "mobs_mc:donkey" +end +local can_breed = function(entity_id) + return entity_id == "mobs_mc:horse" or "mobs_mc:mule" or entity_id == "mobs_mc:donkey" +end + +--[[ Generate all possible horse textures. +Horse textures are a combination of a base texture and an optional marking overlay. ]] +-- The base horse textures +local horse_base = { + "mobs_mc_horse_brown.png", + "mobs_mc_horse_darkbrown.png", + "mobs_mc_horse_white.png", + "mobs_mc_horse_gray.png", + "mobs_mc_horse_black.png", + "mobs_mc_horse_chestnut.png", +} +-- Horse marking texture overlay, to be appended to the base texture string +local horse_markings = { + "", -- no markings + "^mobs_mc_horse_markings_whitedots.png", -- snowflake appaloosa + "^mobs_mc_horse_markings_blackdots.png", -- sooty + "^mobs_mc_horse_markings_whitefield.png", -- paint + "^mobs_mc_horse_markings_white.png", -- stockings and blaze +} + +local horse_textures = {} +for b=1, #horse_base do + for m=1, #horse_markings do + table.insert(horse_textures, { horse_base[b] .. horse_markings[m] }) + end +end + +-- Horse +local horse = { + type = "animal", + visual = "mesh", + mesh = "mobs_mc_horse.b3d", + visual_size = {x=3.0, y=3.0}, + collisionbox = {-0.69825, -0.01, -0.69825, 0.69825, 1.59, 0.69825}, + animation = { + stand_speed = 25, walk_speed = 25, run_speed = 50, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + }, + textures = horse_textures, + fear_height = 4, + fly = false, + walk_chance = 60, + view_range = 16, + follow = mobs_mc.follow.horse, + passive = true, + hp_min = 15, + hp_max = 30, + floats = 1, + lava_damage = 4, + water_damage = 1, + makes_footstep_sound = true, + jump = true, + jump_height = 5.75, -- can clear 2.5 blocks + drops = { + {name = mobs_mc.items.leather, + chance = 1, + min = 0, + max = 2,}, + }, + + do_custom = function(self, dtime) + + -- set needed values if not already present + if not self._regentimer then + self._regentimer = 0 + end + if not self.v2 then + self.v2 = 0 + self.max_speed_forward = 7 + self.max_speed_reverse = 2 + self.accel = 6 + self.terrain_type = 3 + self.driver_attach_at = {x = 0, y = 7.5, z = -1.75} + self.driver_eye_offset = {x = 0, y = 3, z = 0} + self.driver_scale = {x = 1/self.visual_size.x, y = 1/self.visual_size.y} + end + + -- Slowly regenerate health + self._regentimer = self._regentimer + dtime + if self._regentimer >= 4 then + if self.health < self.hp_max then + self.health = self.health + 1 + end + self._regentimer = 0 + end + + -- if driver present allow control of horse + if self.driver then + + mobs.drive(self, "walk", "stand", false, dtime) + + return false -- skip rest of mob functions + end + + return true + end, + + on_die = function(self, pos) + + -- drop saddle when horse is killed while riding + if self._saddle then + minetest.add_item(pos, mobs_mc.items.saddle) + end + -- also detach from horse properly + if self.driver then + mobs.detach(self.driver, {x = 1, y = 0, z = 1}) + end + + end, + + on_rightclick = function(self, clicker) + + -- make sure player is clicking + if not clicker or not clicker:is_player() then + return + end + + local item = clicker:get_wielded_item() + if can_breed(self.name) and (item:get_name() == mobs_mc.items.golden_apple or item:get_name() == mobs_mc.items.golden_carrot) then + -- Breed horse with golden apple or golden carrot + if mobs:feed_tame(self, clicker, 1, true, false) then return end + end + -- Feed/tame with anything else + -- TODO: Different health bonus for feeding + if mobs:feed_tame(self, clicker, 1, false, true) then return end + if mobs:protect(self, clicker) then return end + + -- Make sure tamed horse is mature and being clicked by owner only + if self.tamed and not self.child and self.owner == clicker:get_player_name() then + + local inv = clicker:get_inventory() + + -- detatch player already riding horse + if self.driver and clicker == self.driver then + + mobs.detach(clicker, {x = 1, y = 0, z = 1}) + + -- Put on saddle if tamed + elseif not self.driver and not self._saddle + and clicker:get_wielded_item():get_name() == mobs_mc.items.saddle then + + -- Put on saddle and take saddle from player's inventory + local w = clicker:get_wielded_item() + self._saddle = true + if not minetest.settings:get_bool("creative_mode") then + w:take_item() + clicker:set_wielded_item(w) + end + + -- Update texture + if not self._naked_texture then + -- Base horse texture without chest or saddle + self._naked_texture = self.base_texture[1] + end + local tex = horse_extra_texture(self) + self.base_texture = { tex } + self.object:set_properties({textures = self.base_texture}) + + -- Put on horse armor if tamed + elseif can_equip_horse_armor(self.name) and not self.driver and not self._horse_armor + and minetest.get_item_group(clicker:get_wielded_item():get_name(), "horse_armor") > 0 then + + + -- Put on armor and take armor from player's inventory + local w = clicker:get_wielded_item() + local armor = minetest.get_item_group(w:get_name(), "horse_armor") + self._horse_armor = w:get_name() + if not minetest.settings:get_bool("creative_mode") then + w:take_item() + clicker:set_wielded_item(w) + end + + -- Set horse armor strength + --[[ WARNING: This goes deep into the entity data structure and depends on + how Mobs Redo works internally. This code assumes that Mobs Redo uses + the fleshy group for armor. ]] + -- TODO: Change this code as soon Mobs Redo officially allows to change armor afterwards + self.armor = armor + local agroups = self.object:get_armor_groups() + agroups.fleshy = self.armor + self.object:set_armor_groups(agroups) + + -- Update texture + if not self._naked_texture then + -- Base horse texture without chest or saddle + self._naked_texture = self.base_texture[1] + end + local tex = horse_extra_texture(self) + self.base_texture = { tex } + self.object:set_properties({textures = self.base_texture}) + + + -- Mount horse + elseif not self.driver and self._saddle then + + self.object:set_properties({stepheight = 1.1}) + mobs.attach(self, clicker) + + -- Used to capture horse + elseif not self.driver and clicker:get_wielded_item():get_name() ~= "" then + mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) + end + end + end +} + +mobs:register_mob("mobs_mc:horse", horse) + +-- Skeleton horse +local skeleton_horse = table.copy(horse) +skeleton_horse.textures = {{"mobs_mc_horse_skeleton.png"}} +skeleton_horse.drops = { + {name = mobs_mc.items.bone, + chance = 1, + min = 0, + max = 2,}, +} +skeleton_horse.sounds = { + random = "skeleton1", + death = "skeletondeath", + damage = "skeletonhurt1", + distance = 16, +} +skeleton_horse.blood_amount = 0 +mobs:register_mob("mobs_mc:skeleton_horse", skeleton_horse) + +-- Zombie horse +local zombie_horse = table.copy(horse) +zombie_horse.textures = {{"mobs_mc_horse_zombie.png"}} +zombie_horse.drops = { + {name = mobs_mc.items.rotten_flesh, + chance = 1, + min = 0, + max = 2,}, +} +zombie_horse.sounds = { + random = "zombie1", + death = "zombiedeath", + damage = "zombiehurt1", + distance = 16, +} +mobs:register_mob("mobs_mc:zombie_horse", zombie_horse) + +-- Donkey +local d = 0.86 -- donkey scale +local donkey = table.copy(horse) +donkey.textures = {{"mobs_mc_donkey.png"}} +donkey.animation = { + speed_normal = 25, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, +} +donkey.visual_size = { x=horse.visual_size.x*d, y=horse.visual_size.y*d } +donkey.collisionbox = { + horse.collisionbox[1] * d, + horse.collisionbox[2] * d, + horse.collisionbox[3] * d, + horse.collisionbox[4] * d, + horse.collisionbox[5] * d, + horse.collisionbox[6] * d, +} +donkey.jump = true +donkey.jump_height = 3.75 -- can clear 1 block height + +mobs:register_mob("mobs_mc:donkey", donkey) + +-- Mule +local m = 0.94 +local mule = table.copy(donkey) +mule.textures = {{"mobs_mc_mule.png"}} +mule.visual_size = { x=horse.visual_size.x*m, y=horse.visual_size.y*m } +mule.collisionbox = { + horse.collisionbox[1] * m, + horse.collisionbox[2] * m, + horse.collisionbox[3] * m, + horse.collisionbox[4] * m, + horse.collisionbox[5] * m, + horse.collisionbox[6] * m, +} +mobs:register_mob("mobs_mc:mule", mule) + +--=========================== +--Spawn Function +mobs:register_spawn("mobs_mc:horse", mobs_mc.spawn.grassland_savanna, minetest.LIGHT_MAX+1, 0, 15000, 12, 31000) +mobs:register_spawn("mobs_mc:donkey", mobs_mc.spawn.grassland_savanna, minetest.LIGHT_MAX+1, 0, 15000, 12, 31000) + + +-- compatibility +mobs:alias_mob("mobs:horse", "mobs_mc:horse") + +-- spawn eggs +mobs:register_egg("mobs_mc:horse", S("Horse"), "mobs_mc_spawn_icon_horse.png", 0) +mobs:register_egg("mobs_mc:skeleton_horse", S("Skeleton Horse"), "mobs_mc_spawn_icon_horse_skeleton.png", 0) +mobs:register_egg("mobs_mc:zombie_horse", S("Zombie Horse"), "mobs_mc_spawn_icon_horse_zombie.png", 0) +mobs:register_egg("mobs_mc:donkey", S("Donkey"), "mobs_mc_spawn_icon_donkey.png", 0) +mobs:register_egg("mobs_mc:mule", S("Mule"), "mobs_mc_spawn_icon_mule.png", 0) + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Horse loaded") +end diff --git a/mods/ENTITIES/mobs_mc/init.lua b/mods/ENTITIES/mobs_mc/init.lua index be001e2c4..ff2f4405d 100644 --- a/mods/ENTITIES/mobs_mc/init.lua +++ b/mods/ENTITIES/mobs_mc/init.lua @@ -1,33 +1,117 @@ ---MCmobs v0.2 +--MCmobs v0.4 --maikerumine --made for MC like Survival game --License for code WTFPL and otherwise stated in readmes local path = minetest.get_modpath("mobs_mc") +if not minetest.get_modpath("mobs_mc_gameconfig") then + mobs_mc = {} +end + +-- For utility functions +mobs_mc.tools = {} + +-- This function checks if the item ID has been overwritten and returns true if it is unchanged +if minetest.get_modpath("mobs_mc_gameconfig") and mobs_mc.override and mobs_mc.override.items then + mobs_mc.is_item_variable_overridden = function(id) + return mobs_mc.override.items[id] == nil + end +else + -- No items are overwritten, so always return true + mobs_mc.is_item_variable_overridden = function(id) + return true + end +end + +--MOB ITEMS SELECTOR SWITCH +dofile(path .. "/0_gameconfig.lua") +--Items +dofile(path .. "/1_items_default.lua") + +--IN CASE THROWING IS NOT INSTALLED, THIS FIXES IT +if not minetest.get_modpath("throwing") then + dofile(minetest.get_modpath("mobs_mc").."/2_throwing.lua") + minetest.register_alias("throwing:bow_wood", "mobs:bow_wood") + minetest.register_alias("throwing:arrow", "mobs:arrow") + mobs:alias_mob("throwing:arrow_entity", "mobs:arrow_entity") +else + minetest.register_alias("_:bow_wood", "throwing:bow_wood") + minetest.register_alias("_:arrow", "throwing:arrow") + mobs:alias_mob("_:arrow_entity", "throwing:arrow_entity") +end + +if not minetest.get_modpath("mcl_throwing") then + dofile(minetest.get_modpath("mobs_mc").."/2_throwing.lua") + minetest.register_alias("throwing:bow_wood", "mcl_throwing:bow") + minetest.register_alias("throwing:arrow", "mcl_throwing:arrow") + mobs:alias_mob("throwing:arrow_entity", "mcl_throwing:arrow_entity") +else + minetest.register_alias("_:bow", "throwing:bow_wood") + minetest.register_alias("_:arrow", "throwing:arrow") + mobs:alias_mob("_:arrow_entity", "throwing:arrow_entity") +end +-- Shared functions +dofile(path .. "/3_shared.lua") + +--Mob heads +dofile(path .. "/4_heads.lua") + -- Animals -dofile(path .. "/rabbit.lua") -- ExeterDad +dofile(path .. "/bat.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/rabbit.lua") -- Mesh and animation byExeterDad 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 .. "/cow+mooshroom.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/horse.lua") -- KrupnoPavel; Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/llama.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/ocelot.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/parrot.lua") -- Mesh and animation by toby109tt / https://github.com/22i dofile(path .. "/pig.lua") -- Mesh and animation by Pavel_S +dofile(path .. "/polar_bear.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/sheep.lua") -- Mesh and animation by Pavel_S +dofile(path .. "/wolf.lua") -- KrupnoPavel dofile(path .. "/squid.lua") -- Animation, sound and egg texture by daufinsyd -- NPC -dofile(path .. "/villager.lua") -- KrupnoPavel +dofile(path .. "/villager.lua") -- KrupnoPavel Mesh and animation by toby109tt / https://github.com/22i +--dofile(path .. "/villager_agent.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/villager_evoker.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/villager_vindicator.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/villager_zombie.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/witch.lua") -- Mesh and animation by toby109tt / https://github.com/22i --Monsters +dofile(path .. "/blaze.lua") -- Animation by daufinsyd dofile(path .. "/creeper.lua") -- Mesh by Morn76 Animation by Pavel_S -dofile(path .. "/skeleton.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/ender_dragon.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/enderman.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/endermite.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/villager_illusioner.lua") -- Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/ghast.lua") -- maikerumine +dofile(path .. "/guardian.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/guardian_elder.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/snowman.lua") +dofile(path .. "/iron_golem.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/shulker.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/silverfish.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i +dofile(path .. "/skeleton+stray.lua") -- Mesh by Morn76 Animation by Pavel_S +dofile(path .. "/skeleton_wither.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 .. "/slime+magma_cube.lua") -- Wuzzy +--dofile(path .. "/snowman.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i 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 +dofile(path .. "/vex.lua") -- KrupnoPavel +dofile(path .. "/wither.lua") -- Mesh and animation by toby109tt / https://github.com/22i +--NOTES: +-- +--[[ +COLISIONBOX in minetest press f5 to see where you are looking at then put these wool collor nodes on the ground in direction of north/east/west... to make colisionbox editing easier +#1west-pink/#2down/#3south-blue/#4east-red/#5up/#6north-yelow +{-1, -0.5, -1, 1, 3, 1}, Right, Bottom, Back, Left, Top, Front +--]] +-- +-- -dofile(path .. "/blaze.lua") -- Animation by daufinsyd - -dofile(path .. "/old_mobs.lua") -- Compability with old removed mobs. To be removed later print ("[MOD] Mobs Redo 'MC' loaded") diff --git a/mods/ENTITIES/mobs_mc/intllib.lua b/mods/ENTITIES/mobs_mc/intllib.lua new file mode 100644 index 000000000..6669d7202 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/intllib.lua @@ -0,0 +1,45 @@ + +-- Fallback functions for when `intllib` is not installed. +-- Code released under Unlicense . + +-- Get the latest version of this file at: +-- https://raw.githubusercontent.com/minetest-mods/intllib/master/lib/intllib.lua + +local function format(str, ...) + local args = { ... } + local function repl(escape, open, num, close) + if escape == "" then + local replacement = tostring(args[tonumber(num)]) + if open == "" then + replacement = replacement..close + end + return replacement + else + return "@"..open..num..close + end + end + return (str:gsub("(@?)@(%(?)(%d+)(%)?)", repl)) +end + +local gettext, ngettext +if minetest.get_modpath("intllib") then + if intllib.make_gettext_pair then + -- New method using gettext. + gettext, ngettext = intllib.make_gettext_pair() + else + -- Old method using text files. + gettext = intllib.Getter() + end +end + +-- Fill in missing functions. + +gettext = gettext or function(msgid, ...) + return format(msgid, ...) +end + +ngettext = ngettext or function(msgid, msgid_plural, n, ...) + return format(n==1 and msgid or msgid_plural, ...) +end + +return gettext, ngettext diff --git a/mods/ENTITIES/mobs_mc/iron_golem.lua b/mods/ENTITIES/mobs_mc/iron_golem.lua new file mode 100644 index 000000000..adcf3eed1 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/iron_golem.lua @@ -0,0 +1,186 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### IRON GOLEM +--################### + + + +mobs:register_mob("mobs_mc:iron_golem", { + type = "npc", + passive = true, + hp_min = 100, + hp_max = 100, + collisionbox = {-0.7, -0.01, -0.7, 0.7, 2.69, 0.7}, + visual = "mesh", + mesh = "mobs_mc_iron_golem.b3d", + textures = { + {"mobs_mc_iron_golem.png"}, + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + sounds = { + -- TODO + distance = 16, + }, + view_range = 16, + stepheight = 1.1, + owner = "", + order = "follow", + floats = 0, + walk_velocity = 0.6, + run_velocity = 1.2, + -- Approximation + damage = 14, + group_attack = true, + attacks_monsters = true, + attack_type = "dogfight", + drops = { + {name = mobs_mc.items.iron_ingot, + chance = 1, + min = 3, + max = 5,}, + {name = mobs_mc.items.poppy, + chance = 1, + min = 0, + max = 2,}, + }, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + fall_damage = 0, + animation = { + stand_speed = 15, walk_speed = 15, run_speed = 25, punch_speed = 15, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + punch_start = 40, punch_end = 50, + }, + jump = true, + blood_amount = 0, +}) + + +-- spawn eggs +mobs:register_egg("mobs_mc:iron_golem", S("Iron Golem"), "mobs_mc_spawn_icon_iron_golem.png", 0) + + +--[[ This is to be called when a pumpkin or jack'o lantern has been placed. Recommended: In the on_construct function of the node. +This summons an iron golen if placing the pumpkin created an iron golem summon pattern: + +.P. +III +.I. + +P = Pumpkin or jack'o lantern +I = Iron block +. = Air +]] + +mobs_mc.tools.check_iron_golem_summon = function(pos) + local checks = { + -- These are the possible placement patterns, with offset from the pumpkin block. + -- These tables include the positions of the iron blocks (1-4) and air blocks (5-8) + -- 4th element is used to determine spawn position. + -- If a 9th element is present, that one is used for the spawn position instead. + -- Standing (x axis) + { + {x=-1, y=-1, z=0}, {x=1, y=-1, z=0}, {x=0, y=-1, z=0}, {x=0, y=-2, z=0}, -- iron blocks + {x=-1, y=0, z=0}, {x=1, y=0, z=0}, {x=-1, y=-2, z=0}, {x=1, y=-2, z=0}, -- air + }, + -- Upside down standing (x axis) + { + {x=-1, y=1, z=0}, {x=1, y=1, z=0}, {x=0, y=1, z=0}, {x=0, y=2, z=0}, + {x=-1, y=0, z=0}, {x=1, y=0, z=0}, {x=-1, y=2, z=0}, {x=1, y=2, z=0}, + {x=0, y=0, z=0}, -- Different offset for upside down pattern + }, + + -- Standing (z axis) + { + {x=0, y=-1, z=-1}, {x=0, y=-1, z=1}, {x=0, y=-1, z=0}, {x=0, y=-2, z=0}, + {x=0, y=0, z=-1}, {x=0, y=0, z=1}, {x=0, y=-2, z=-1}, {x=0, y=-2, z=1}, + }, + -- Upside down standing (z axis) + { + {x=0, y=1, z=-1}, {x=0, y=1, z=1}, {x=0, y=1, z=0}, {x=0, y=2, z=0}, + {x=0, y=0, z=-1}, {x=0, y=0, z=1}, {x=0, y=2, z=-1}, {x=0, y=2, z=1}, + {x=0, y=0, z=0}, + }, + + -- Lying + { + {x=-1, y=0, z=-1}, {x=0, y=0, z=-1}, {x=1, y=0, z=-1}, {x=0, y=0, z=-2}, + {x=-1, y=0, z=0}, {x=1, y=0, z=0}, {x=-1, y=0, z=-2}, {x=1, y=0, z=-2}, + }, + { + {x=-1, y=0, z=1}, {x=0, y=0, z=1}, {x=1, y=0, z=1}, {x=0, y=0, z=2}, + {x=-1, y=0, z=0}, {x=1, y=0, z=0}, {x=-1, y=0, z=2}, {x=1, y=0, z=2}, + }, + { + {x=-1, y=0, z=-1}, {x=-1, y=0, z=0}, {x=-1, y=0, z=1}, {x=-2, y=0, z=0}, + {x=0, y=0, z=-1}, {x=0, y=0, z=1}, {x=-2, y=0, z=-1}, {x=-2, y=0, z=1}, + }, + { + {x=1, y=0, z=-1}, {x=1, y=0, z=0}, {x=1, y=0, z=1}, {x=2, y=0, z=0}, + {x=0, y=0, z=-1}, {x=0, y=0, z=1}, {x=2, y=0, z=-1}, {x=2, y=0, z=1}, + }, + + + } + + for c=1, #checks do + -- Check all possible patterns + local ok = true + -- Check iron block nodes + for i=1, 4 do + local cpos = vector.add(pos, checks[c][i]) + local node = minetest.get_node(cpos) + if node.name ~= mobs_mc.items.iron_block then + ok = false + break + end + end + -- Check air nodes + for a=5, 8 do + local cpos = vector.add(pos, checks[c][a]) + local node = minetest.get_node(cpos) + if node.name ~= "air" then + ok = false + break + end + end + -- Pattern found! + if ok then + -- Remove the nodes + minetest.remove_node(pos) + core.check_for_falling(pos) + for i=1, 4 do + local cpos = vector.add(pos, checks[c][i]) + minetest.remove_node(cpos) + core.check_for_falling(cpos) + end + -- Summon iron golem + local place + if checks[c][9] then + place = vector.add(pos, checks[c][9]) + else + place = vector.add(pos, checks[c][4]) + end + place.y = place.y - 0.5 + minetest.add_entity(place, "mobs_mc:iron_golem") + break + end + end +end + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Iron Golem loaded") +end diff --git a/mods/ENTITIES/mobs_mc/llama.lua b/mods/ENTITIES/mobs_mc/llama.lua new file mode 100644 index 000000000..1eb49c88f --- /dev/null +++ b/mods/ENTITIES/mobs_mc/llama.lua @@ -0,0 +1,146 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +--################### +--################### LLAMA +--################### + + +mobs:register_mob("mobs_mc:llama", { + type = "animal", + hp_min = 15, + hp_max = 30, + passive = false, + collisionbox = {-0.45, -0.01, -0.45, 0.45, 1.86, 0.45}, + visual = "mesh", + mesh = "mobs_mc_llama.b3d", + textures = {{"mobs_mc_llama.png"},{"mobs_mc_llama_brown.png"},{"mobs_mc_llama_creamy.png"},{"mobs_mc_llama_white.png"},{"mobs_mc_llama_gray.png"}}, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + runaway = true, + walk_velocity = 1, + run_velocity = 4.4, + floats = 1, + drops = { + {name = mobs_mc.items.leather, + chance = 1, + min = 0, + max = 2,}, + }, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + fear_height = 4, + sounds = { + random = "mobs_mc_llama", + -- TODO: Death and damage sounds + distance = 16, + }, + animation = { + speed_normal = 24, + stand_start = 0, + stand_end = 0, + walk_start = 0, + walk_end = 40, + 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 = mobs_mc.items.horse, + view_range = 16, + do_custom = function(self, dtime) + + -- set needed values if not already present + if not self.v2 then + self.v2 = 0 + self.max_speed_forward = 4 + self.max_speed_reverse = 2 + self.accel = 4 + self.terrain_type = 3 + self.driver_attach_at = {x = 0, y = 7.5, z = -1.5} + self.driver_eye_offset = {x = 0, y = 3, z = 0} + self.driver_scale = {x = 1/self.visual_size.x, y = 1/self.visual_size.y} + end + + -- if driver present allow control of llama + if self.driver then + + mobs.drive(self, "walk", "stand", false, dtime) + + return false -- skip rest of mob functions + end + + return true + end, + + on_die = function(self, pos) + + -- detach from llama properly + if self.driver then + mobs.detach(self.driver, {x = 1, y = 0, z = 1}) + end + + end, + + on_rightclick = function(self, clicker) + + -- Make sure player is clicking + if not clicker or not clicker:is_player() then + return + end + + local item = clicker:get_wielded_item() + if item:get_name() == mobs_mc.items.hay_bale then + -- Breed with hay bale + if mobs:feed_tame(self, clicker, 1, true, false) then return end + else + -- Feed with anything else + if mobs:feed_tame(self, clicker, 1, false, true) then return end + end + if mobs:protect(self, clicker) then return end + + -- Make sure tamed llama is mature and being clicked by owner only + if self.tamed and not self.child and self.owner == clicker:get_player_name() then + + local inv = clicker:get_inventory() + + -- detatch player already riding llama + if self.driver and clicker == self.driver then + + mobs.detach(clicker, {x = 1, y = 0, z = 1}) + + -- attach player to llama + elseif not self.driver then + + self.object:set_properties({stepheight = 1.1}) + mobs.attach(self, clicker) + end + + -- Used to capture llama + elseif not self.driver and clicker:get_wielded_item():get_name() ~= "" then + mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) + end + end + +}) + +-- spawn eggs +mobs:register_egg("mobs_mc:llama", S("Llama"), "mobs_mc_spawn_icon_llama.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Llama loaded") +end diff --git a/mods/ENTITIES/mobs_mc/locale/de_DE.po b/mods/ENTITIES/mobs_mc/locale/de_DE.po new file mode 100644 index 000000000..19f346f89 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/locale/de_DE.po @@ -0,0 +1,450 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-02 20:52+0200\n" +"PO-Revision-Date: 2017-07-02 16:20+0200\n" +"Last-Translator: Wuzzy \n" +"Language-Team: \n" +"Language: de_DE\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.0.2\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: 1_items_default.lua +msgid "Blaze Rod" +msgstr "Lohenrute" + +#: 1_items_default.lua +msgid "This is a crafting component dropped from dead blazes." +msgstr "Dies ist eine Fertigungskomponente, welche von toten Lohen abfällt." + +#: 1_items_default.lua +msgid "Blaze Powder" +msgstr "Lohenstaub" + +#: 1_items_default.lua +msgid "This item is mainly used for brewing potions and crafting." +msgstr "" +"Dieser Gegenstand wird hauptsächlich für die Trankzubereitung und die " +"Fertigung benutzt." + +#: 1_items_default.lua +msgid "Raw Chicken" +msgstr "Rohes Hühnchen" + +#: 1_items_default.lua +msgid "Cooked Chicken" +msgstr "Gebratenes Hühnchen" + +#: 1_items_default.lua +msgid "Feather" +msgstr "Feder" + +#: 1_items_default.lua +msgid "Raw Beef" +msgstr "Rohes Rindfleisch" + +#: 1_items_default.lua +msgid "Steak" +msgstr "Steak" + +#: 1_items_default.lua +msgid "Milk" +msgstr "Milch" + +#: 1_items_default.lua +msgid "Bowl" +msgstr "Schale" + +#: 1_items_default.lua +msgid "Mushroom Stew" +msgstr "Pilzsuppe" + +#: 1_items_default.lua +msgid "Dragon Egg" +msgstr "Drachenei" + +#: 1_items_default.lua +msgid "Eye of Ender" +msgstr "Enderauge" + +#: 1_items_default.lua +msgid "Ghast Tear" +msgstr "Ghastträne" + +#: 1_items_default.lua +msgid "" +"A ghast tear is an item used in potion brewing. It is dropped from dead " +"ghasts." +msgstr "" +"Eine Ghastträne kann für die Trankzubereitung benutzt werden. Sie wird von " +"toten Ghasts abgeworfen." + +#: 1_items_default.lua +msgid "Saddle" +msgstr "Sattel" + +#: 1_items_default.lua +msgid "Iron Horse Armor" +msgstr "Eiserne Pferderüstung" + +#: 1_items_default.lua +msgid "Golden Horse Armor" +msgstr "Goldene Pferderüstung" + +#: 1_items_default.lua +msgid "Diamond Horse Armor" +msgstr "Diamantene Pferderüstung" + +#: 1_items_default.lua +msgid "Raw Porkchop" +msgstr "Rohes Schweinefleisch" + +#: 1_items_default.lua +msgid "Cooked Porkchop" +msgstr "Gebratenes Schweinefleisch" + +#: 1_items_default.lua +msgid "Carrot on a Stick" +msgstr "Karottenrute" + +#: 1_items_default.lua +msgid "Raw Rabbit" +msgstr "Rohes Kaninchen" + +#: 1_items_default.lua +msgid "Cooked Rabbit" +msgstr "Gebratenes Kaninchen" + +#: 1_items_default.lua +msgid "Rabbit Hide" +msgstr "Kaninchenfell" + +#: 1_items_default.lua +msgid "Rabbit's Foot" +msgstr "Hasenpfote" + +#: 1_items_default.lua +msgid "Raw Mutton" +msgstr "Rohes Hammelfleisch" + +#: 1_items_default.lua +msgid "Cooked Mutton" +msgstr "Gebratenes Hammelfleisch" + +#: 1_items_default.lua +msgid "Shulker Shell" +msgstr "Shulkerschale" + +#: 1_items_default.lua +msgid "Magma Cream" +msgstr "Magmacreme" + +#: 1_items_default.lua +msgid "Magma cream is a crafting component." +msgstr "Magmacreme wird zum Fertigen benutzt." + +#: 1_items_default.lua +msgid "Spider Eye" +msgstr "Spinnenauge" + +#: 1_items_default.lua +msgid "" +"Spider eyes are used mainly in crafting and brewing. Spider eyes can be " +"eaten, but they poison you and reduce your health by 2 hit points." +msgstr "" +"Spinnenaugen werden hauptsächlich für die Fertigung und die Trankzubereitung " +"benutzt. Spinnenaugen können gegessen werden, aber sie vergiften Sie und Sie " +"verlieren 2 Trefferpunkte." + +#: 1_items_default.lua +msgid "Totem of Undying" +msgstr "Totem der Unsterblichkeit" + +#: 1_items_default.lua +msgid "Rotten Flesh" +msgstr "Verrottetes Fleisch" + +#: 1_items_default.lua +msgid "Nether Star" +msgstr "Netherstern" + +#: 2_throwing.lua +msgid "Arrow" +msgstr "Pfeil" + +#: 2_throwing.lua +msgid "Bow" +msgstr "Bogen" + +#: 2_throwing.lua +msgid "Egg" +msgstr "Ei" + +#: 2_throwing.lua +msgid "Snowball" +msgstr "Schneeball" + +#: 2_throwing.lua +msgid "" +"Snowballs can be thrown at your enemies. A snowball deals 3 damage to " +"blazes, but is harmless to anything else." +msgstr "" +"Werfen Sie Schnebälle auf Ihre Feinde. Ein Schneeball richtet gegenüber " +"Lohen 3 Schaden an, ist aber harmlos für alles andere." + +#: bat.lua +msgid "Bat" +msgstr "Fledermaus" + +#: blaze.lua +msgid "Blaze" +msgstr "Lohe" + +#: chicken.lua +msgid "Chicken" +msgstr "Huhn" + +#: cow+mooshroom.lua +msgid "Cow" +msgstr "Kuh" + +#: cow+mooshroom.lua +msgid "Mooshroom" +msgstr "Mooshroom" + +#: creeper.lua +msgid "Creeper" +msgstr "Creeper" + +#: ender_dragon.lua +msgid "Ender Dragon" +msgstr "Enderdrache" + +#: enderman.lua +msgid "Enderman" +msgstr "Enderman" + +#: endermite.lua +msgid "Endermite" +msgstr "Endermite" + +#: ghast.lua +msgid "Ghast" +msgstr "Ghast" + +#: guardian_elder.lua +msgid "Elder Guardian" +msgstr "Großer Wächter" + +#: guardian.lua +msgid "Guardian" +msgstr "Wächter" + +#: heads.lua +msgid "Creeper Head (WIP)" +msgstr "Creeperkopf (unfertig)" + +#: heads.lua +msgid "Enderman Head (WIP)" +msgstr "Endermankopf (unfertig)" + +#: heads.lua +msgid "Ghast Head (WIP)" +msgstr "Ghastkopf (unfertig)" + +#: heads.lua +msgid "Skeleton Skull (WIP)" +msgstr "Skelettschädel (unfertig)" + +#: heads.lua +msgid "Wither Skeleton Skull (WIP)" +msgstr "Witherskelettschädel (unfertig)" + +#: heads.lua +msgid "Spider Head (WIP)" +msgstr "Spinnenkopf (unfertig)" + +#: heads.lua +msgid "Zombie Head (WIP)" +msgstr "Zombiekopf (unfertig)" + +#: heads.lua +msgid "Zombie Pigman Head (WIP)" +msgstr "Schweinezombiekopf (unfertig)" + +#: horse.lua +msgid "Horse" +msgstr "Pferd" + +#: horse.lua +msgid "Skeleton Horse" +msgstr "Skelettpferd" + +#: horse.lua +msgid "Zombie Horse" +msgstr "Zombiepferd" + +#: horse.lua +msgid "Donkey" +msgstr "Esel" + +#: horse.lua +msgid "Mule" +msgstr "Maultier" + +#: iron_golem.lua +msgid "Iron Golem" +msgstr "Eisengolem" + +#: llama.lua +msgid "Llama" +msgstr "Lama" + +#: ocelot.lua +msgid "Ocelot" +msgstr "Ozelot" + +#: parrot.lua +msgid "Parrot" +msgstr "Papagei" + +#: pig.lua +msgid "Pig" +msgstr "Schwein" + +#: polar_bear.lua +msgid "Polar Bear" +msgstr "Eisbär" + +#: rabbit.lua +msgid "Rabbit" +msgstr "Kaninchen" + +#: rabbit.lua +msgid "Killer Bunny" +msgstr "Killer-Kaninchen" + +#: sheep.lua +msgid "Sheep" +msgstr "Schaf" + +#: shulker.lua +msgid "Shulker" +msgstr "Shulker" + +#: silverfish.lua +msgid "Silverfish" +msgstr "Silberfischchen" + +#: silverfish.lua +msgid "Stone Monster Egg" +msgstr "Silberfischchen-Stein" + +#: silverfish.lua +msgid "Cobblestone Monster Egg" +msgstr "Silberfischchen-Bruchstein" + +#: silverfish.lua +msgid "Mossy Cobblestone Monster Egg" +msgstr "Bemooster Silberfischchen-Bruchstein" + +#: silverfish.lua +msgid "Stone Brick Monster Egg" +msgstr "Silberfischchen-Steinziegel" + +#: silverfish.lua +msgid "Stone Block Monster Egg" +msgstr "Silberfischchen-Steinblock" + +#: skeleton.lua +msgid "Skeleton" +msgstr "Skelett" + +#: skeleton_stray.lua +msgid "Stray" +msgstr "Eiswanderer" + +#: skeleton_wither.lua +msgid "Wither Skeleton" +msgstr "Witherskelett" + +#: slime+magma_cube.lua +msgid "Magma Cube" +msgstr "Magmawürfel" + +#: slime+magma_cube.lua +msgid "Slime" +msgstr "Schleim" + +#: snowman.lua +msgid "Snow Golem" +msgstr "Schneegolem" + +#: spider.lua +msgid "Spider" +msgstr "Spinne" + +#: spider.lua +msgid "Cave Spider" +msgstr "Höhlenspinne" + +#: squid.lua +msgid "Squid" +msgstr "Tintenfisch" + +#: vex.lua +msgid "Vex" +msgstr "Plagegeist" + +#: villager_evoker.lua +msgid "Evoker" +msgstr "Magier" + +#: villager_illusioner.lua +msgid "Illusioner" +msgstr "Illusionist" + +#: villager.lua +msgid "Villager" +msgstr "Dorfbewohner" + +#: villager_vindicator.lua +msgid "Vindicator" +msgstr "Diener" + +#: villager_zombie.lua +msgid "Zombie Villager" +msgstr "Dorfbewohnerzombie" + +#: witch.lua +msgid "Witch" +msgstr "Hexe" + +#: wither.lua +msgid "Wither" +msgstr "Wither" + +#: wolf.lua +msgid "Wolf" +msgstr "Wolf" + +#: zombie.lua +msgid "Husk" +msgstr "Wüstenzombie" + +#: zombie.lua +msgid "Zombie" +msgstr "Zombie" + +#: zombiepig.lua +msgid "Zombie Pigman" +msgstr "Schweinezombie" diff --git a/mods/ENTITIES/mobs_mc/locale/template.pot b/mods/ENTITIES/mobs_mc/locale/template.pot new file mode 100644 index 000000000..3b9f2cc57 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/locale/template.pot @@ -0,0 +1,440 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2017-07-02 20:52+0200\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"Language: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#: 1_items_default.lua +msgid "Blaze Rod" +msgstr "" + +#: 1_items_default.lua +msgid "This is a crafting component dropped from dead blazes." +msgstr "" + +#: 1_items_default.lua +msgid "Blaze Powder" +msgstr "" + +#: 1_items_default.lua +msgid "This item is mainly used for brewing potions and crafting." +msgstr "" + +#: 1_items_default.lua +msgid "Raw Chicken" +msgstr "" + +#: 1_items_default.lua +msgid "Cooked Chicken" +msgstr "" + +#: 1_items_default.lua +msgid "Feather" +msgstr "" + +#: 1_items_default.lua +msgid "Raw Beef" +msgstr "" + +#: 1_items_default.lua +msgid "Steak" +msgstr "" + +#: 1_items_default.lua +msgid "Milk" +msgstr "" + +#: 1_items_default.lua +msgid "Bowl" +msgstr "" + +#: 1_items_default.lua +msgid "Mushroom Stew" +msgstr "" + +#: 1_items_default.lua +msgid "Dragon Egg" +msgstr "" + +#: 1_items_default.lua +msgid "Eye of Ender" +msgstr "" + +#: 1_items_default.lua +msgid "Ghast Tear" +msgstr "" + +#: 1_items_default.lua +msgid "" +"A ghast tear is an item used in potion brewing. It is dropped from dead " +"ghasts." +msgstr "" + +#: 1_items_default.lua +msgid "Saddle" +msgstr "" + +#: 1_items_default.lua +msgid "Iron Horse Armor" +msgstr "" + +#: 1_items_default.lua +msgid "Golden Horse Armor" +msgstr "" + +#: 1_items_default.lua +msgid "Diamond Horse Armor" +msgstr "" + +#: 1_items_default.lua +msgid "Raw Porkchop" +msgstr "" + +#: 1_items_default.lua +msgid "Cooked Porkchop" +msgstr "" + +#: 1_items_default.lua +msgid "Carrot on a Stick" +msgstr "" + +#: 1_items_default.lua +msgid "Raw Rabbit" +msgstr "" + +#: 1_items_default.lua +msgid "Cooked Rabbit" +msgstr "" + +#: 1_items_default.lua +msgid "Rabbit Hide" +msgstr "" + +#: 1_items_default.lua +msgid "Rabbit's Foot" +msgstr "" + +#: 1_items_default.lua +msgid "Raw Mutton" +msgstr "" + +#: 1_items_default.lua +msgid "Cooked Mutton" +msgstr "" + +#: 1_items_default.lua +msgid "Shulker Shell" +msgstr "" + +#: 1_items_default.lua +msgid "Magma Cream" +msgstr "" + +#: 1_items_default.lua +msgid "Magma cream is a crafting component." +msgstr "" + +#: 1_items_default.lua +msgid "Spider Eye" +msgstr "" + +#: 1_items_default.lua +msgid "" +"Spider eyes are used mainly in crafting and brewing. Spider eyes can be " +"eaten, but they poison you and reduce your health by 2 hit points." +msgstr "" + +#: 1_items_default.lua +msgid "Totem of Undying" +msgstr "" + +#: 1_items_default.lua +msgid "Rotten Flesh" +msgstr "" + +#: 1_items_default.lua +msgid "Nether Star" +msgstr "" + +#: 2_throwing.lua +msgid "Arrow" +msgstr "" + +#: 2_throwing.lua +msgid "Bow" +msgstr "" + +#: 2_throwing.lua +msgid "Egg" +msgstr "" + +#: 2_throwing.lua +msgid "Snowball" +msgstr "" + +#: 2_throwing.lua +msgid "" +"Snowballs can be thrown at your enemies. A snowball deals 3 damage to " +"blazes, but is harmless to anything else." +msgstr "" + +#: bat.lua +msgid "Bat" +msgstr "" + +#: blaze.lua +msgid "Blaze" +msgstr "" + +#: chicken.lua +msgid "Chicken" +msgstr "" + +#: cow+mooshroom.lua +msgid "Cow" +msgstr "" + +#: cow+mooshroom.lua +msgid "Mooshroom" +msgstr "" + +#: creeper.lua +msgid "Creeper" +msgstr "" + +#: ender_dragon.lua +msgid "Ender Dragon" +msgstr "" + +#: enderman.lua +msgid "Enderman" +msgstr "" + +#: endermite.lua +msgid "Endermite" +msgstr "" + +#: ghast.lua +msgid "Ghast" +msgstr "" + +#: guardian_elder.lua +msgid "Elder Guardian" +msgstr "" + +#: guardian.lua +msgid "Guardian" +msgstr "" + +#: heads.lua +msgid "Creeper Head (WIP)" +msgstr "" + +#: heads.lua +msgid "Enderman Head (WIP)" +msgstr "" + +#: heads.lua +msgid "Ghast Head (WIP)" +msgstr "" + +#: heads.lua +msgid "Skeleton Skull (WIP)" +msgstr "" + +#: heads.lua +msgid "Wither Skeleton Skull (WIP)" +msgstr "" + +#: heads.lua +msgid "Spider Head (WIP)" +msgstr "" + +#: heads.lua +msgid "Zombie Head (WIP)" +msgstr "" + +#: heads.lua +msgid "Zombie Pigman Head (WIP)" +msgstr "" + +#: horse.lua +msgid "Horse" +msgstr "" + +#: horse.lua +msgid "Skeleton Horse" +msgstr "" + +#: horse.lua +msgid "Zombie Horse" +msgstr "" + +#: horse.lua +msgid "Donkey" +msgstr "" + +#: horse.lua +msgid "Mule" +msgstr "" + +#: iron_golem.lua +msgid "Iron Golem" +msgstr "" + +#: llama.lua +msgid "Llama" +msgstr "" + +#: ocelot.lua +msgid "Ocelot" +msgstr "" + +#: parrot.lua +msgid "Parrot" +msgstr "" + +#: pig.lua +msgid "Pig" +msgstr "" + +#: polar_bear.lua +msgid "Polar Bear" +msgstr "" + +#: rabbit.lua +msgid "Rabbit" +msgstr "" + +#: rabbit.lua +msgid "Killer Bunny" +msgstr "" + +#: sheep.lua +msgid "Sheep" +msgstr "" + +#: shulker.lua +msgid "Shulker" +msgstr "" + +#: silverfish.lua +msgid "Silverfish" +msgstr "" + +#: silverfish.lua +msgid "Stone Monster Egg" +msgstr "" + +#: silverfish.lua +msgid "Cobblestone Monster Egg" +msgstr "" + +#: silverfish.lua +msgid "Mossy Cobblestone Monster Egg" +msgstr "" + +#: silverfish.lua +msgid "Stone Brick Monster Egg" +msgstr "" + +#: silverfish.lua +msgid "Stone Block Monster Egg" +msgstr "" + +#: skeleton.lua +msgid "Skeleton" +msgstr "" + +#: skeleton_stray.lua +msgid "Stray" +msgstr "" + +#: skeleton_wither.lua +msgid "Wither Skeleton" +msgstr "" + +#: slime+magma_cube.lua +msgid "Magma Cube" +msgstr "" + +#: slime+magma_cube.lua +msgid "Slime" +msgstr "" + +#: snowman.lua +msgid "Snow Golem" +msgstr "" + +#: spider.lua +msgid "Spider" +msgstr "" + +#: spider.lua +msgid "Cave Spider" +msgstr "" + +#: squid.lua +msgid "Squid" +msgstr "" + +#: vex.lua +msgid "Vex" +msgstr "" + +#: villager_evoker.lua +msgid "Evoker" +msgstr "" + +#: villager_illusioner.lua +msgid "Illusioner" +msgstr "" + +#: villager.lua +msgid "Villager" +msgstr "" + +#: villager_vindicator.lua +msgid "Vindicator" +msgstr "" + +#: villager_zombie.lua +msgid "Zombie Villager" +msgstr "" + +#: witch.lua +msgid "Witch" +msgstr "" + +#: wither.lua +msgid "Wither" +msgstr "" + +#: wolf.lua +msgid "Wolf" +msgstr "" + +#: zombie.lua +msgid "Husk" +msgstr "" + +#: zombie.lua +msgid "Zombie" +msgstr "" + +#: zombiepig.lua +msgid "Zombie Pigman" +msgstr "" diff --git a/mods/ENTITIES/mobs_mc/models/mobs_blaze.b3d b/mods/ENTITIES/mobs_mc/models/mobs_blaze.b3d deleted file mode 100644 index b25118611..000000000 Binary files a/mods/ENTITIES/mobs_mc/models/mobs_blaze.b3d and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_bunny.b3d b/mods/ENTITIES/mobs_mc/models/mobs_bunny.b3d deleted file mode 100644 index ee053bd46..000000000 Binary files a/mods/ENTITIES/mobs_mc/models/mobs_bunny.b3d and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_chicken.x b/mods/ENTITIES/mobs_mc/models/mobs_chicken.x deleted file mode 100644 index 8c267e3d7..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_chicken.x +++ /dev/null @@ -1,6032 +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 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/ENTITIES/mobs_mc/models/mobs_cow.x b/mods/ENTITIES/mobs_mc/models/mobs_cow.x deleted file mode 100644 index 848746386..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_cow.x +++ /dev/null @@ -1,6137 +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 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;; - } - } // 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/ENTITIES/mobs_mc/models/mobs_creeper.x b/mods/ENTITIES/mobs_mc/models/mobs_creeper.x deleted file mode 100644 index dee255d4c..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_creeper.x +++ /dev/null @@ -1,6167 +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 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;; - } - } // 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/ENTITIES/mobs_mc/models/mobs_mc_agent.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_agent.b3d new file mode 100644 index 000000000..3e79c009b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_agent.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_bat.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_bat.b3d new file mode 100644 index 000000000..522e611ab Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_bat.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_blaze.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_blaze.b3d new file mode 100644 index 000000000..2328c8a64 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_blaze.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_cat.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_cat.b3d new file mode 100644 index 000000000..5d481aeef Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_cat.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_chicken.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_chicken.b3d new file mode 100644 index 000000000..6d839a459 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_chicken.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_chicken.x b/mods/ENTITIES/mobs_mc/models/mobs_mc_chicken.x deleted file mode 100644 index 8c267e3d7..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_mc_chicken.x +++ /dev/null @@ -1,6032 +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 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/ENTITIES/mobs_mc/models/mobs_mc_cow.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_cow.b3d new file mode 100644 index 000000000..641b7e4a1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_cow.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_cow.x b/mods/ENTITIES/mobs_mc/models/mobs_mc_cow.x deleted file mode 100644 index 848746386..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_mc_cow.x +++ /dev/null @@ -1,6137 +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 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;; - } - } // 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/ENTITIES/mobs_mc/models/mobs_mc_creeper.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_creeper.b3d new file mode 100644 index 000000000..47f19fbd9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_creeper.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_dragon.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_dragon.b3d new file mode 100644 index 000000000..fb7195192 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_dragon.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_enderman.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_enderman.b3d new file mode 100644 index 000000000..ac9225990 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_enderman.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_endermite.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_endermite.b3d new file mode 100644 index 000000000..633925e90 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_endermite.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_evoker.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_evoker.b3d new file mode 100644 index 000000000..6e1017e0c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_evoker.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_ghast.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_ghast.b3d new file mode 100644 index 000000000..cebc037c0 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_ghast.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_guardian.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_guardian.b3d new file mode 100644 index 000000000..853b41e0f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_guardian.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_horse.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_horse.b3d new file mode 100644 index 000000000..1154298e6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_horse.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_illusioner.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_illusioner.b3d new file mode 100644 index 000000000..ed0ae9d27 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_illusioner.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_iron_golem.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_iron_golem.b3d new file mode 100644 index 000000000..dd1a98606 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_iron_golem.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_llama.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_llama.b3d new file mode 100644 index 000000000..cbcf1a6da Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_llama.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_magmacube.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_magmacube.b3d new file mode 100644 index 000000000..52bf62a6d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_magmacube.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_mooshroom.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_mooshroom.b3d new file mode 100644 index 000000000..725268ea9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_mooshroom.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_parrot.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_parrot.b3d new file mode 100644 index 000000000..7cb326d3d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_parrot.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_pig.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_pig.b3d new file mode 100644 index 000000000..0742cd5a3 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_pig.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_polarbear.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_polarbear.b3d new file mode 100644 index 000000000..bd8c734f9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_polarbear.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_rabbit.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_rabbit.b3d new file mode 100644 index 000000000..3a9acff5a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_rabbit.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_sheep.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_sheep.b3d new file mode 100644 index 000000000..34dd9d532 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_sheep.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_sheepfur.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_sheepfur.b3d new file mode 100644 index 000000000..34dd9d532 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_sheepfur.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_sheepnaked.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_sheepnaked.b3d new file mode 100644 index 000000000..78c9ea244 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_sheepnaked.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_shulker.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_shulker.b3d new file mode 100644 index 000000000..e370bc840 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_shulker.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_silverfish.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_silverfish.b3d new file mode 100644 index 000000000..b3d761479 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_silverfish.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_skeleton.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_skeleton.b3d new file mode 100644 index 000000000..a5f007cf1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_skeleton.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_slime.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_slime.b3d new file mode 100644 index 000000000..18cc3d629 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_slime.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_snowman.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_snowman.b3d new file mode 100644 index 000000000..4cc5a5909 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_snowman.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_spider.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_spider.b3d new file mode 100644 index 000000000..fb55e49e9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_spider.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_squid.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_squid.b3d new file mode 100644 index 000000000..fe1265533 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_squid.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_stray.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_stray.b3d new file mode 100644 index 000000000..aab6342f3 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_stray.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_vex.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_vex.b3d new file mode 100644 index 000000000..b6f79b45c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_vex.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_villager.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_villager.b3d new file mode 100644 index 000000000..0d974d55a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_villager.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_vindicator.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_vindicator.b3d new file mode 100644 index 000000000..17e779b7d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_vindicator.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_witch.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_witch.b3d new file mode 100644 index 000000000..86c298830 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_witch.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_wither.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_wither.b3d new file mode 100644 index 000000000..32a24248f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_wither.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_witherskeleton.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_witherskeleton.b3d new file mode 100644 index 000000000..2ca3646de Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_witherskeleton.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_wolf.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_wolf.b3d new file mode 100644 index 000000000..9abd31a05 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_wolf.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_zombie.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_zombie.b3d new file mode 100644 index 000000000..369722dc1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_zombie.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_zombie_pigman.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_zombie_pigman.b3d new file mode 100644 index 000000000..7ddfa2c7f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_zombie_pigman.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_mc_zvillager.b3d b/mods/ENTITIES/mobs_mc/models/mobs_mc_zvillager.b3d new file mode 100644 index 000000000..76391dc7c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/models/mobs_mc_zvillager.b3d differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_pig.x b/mods/ENTITIES/mobs_mc/models/mobs_pig.x deleted file mode 100644 index 77915b96d..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_pig.x +++ /dev/null @@ -1,5997 +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 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;; - } - } // 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/ENTITIES/mobs_mc/models/mobs_sand_monster.b3d b/mods/ENTITIES/mobs_mc/models/mobs_sand_monster.b3d deleted file mode 100644 index 978250444..000000000 Binary files a/mods/ENTITIES/mobs_mc/models/mobs_sand_monster.b3d and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_sheep.x b/mods/ENTITIES/mobs_mc/models/mobs_sheep.x deleted file mode 100644 index 15e1affbd..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_sheep.x +++ /dev/null @@ -1,7050 +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 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;; - } - } // 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/ENTITIES/mobs_mc/models/mobs_skeleton.x b/mods/ENTITIES/mobs_mc/models/mobs_skeleton.x deleted file mode 100644 index 24554a017..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_skeleton.x +++ /dev/null @@ -1,5448 +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 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;; - } - } // 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/ENTITIES/mobs_mc/models/mobs_spider.x b/mods/ENTITIES/mobs_mc/models/mobs_spider.x deleted file mode 100644 index 278cbaf0a..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_spider.x +++ /dev/null @@ -1,6102 +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 { - -0.000000, 1.000000, 0.000000, 0.000000, - -1.000000,-0.000000, 0.000000, 0.000000, - 0.000000, 0.000000, 1.000000, 0.000000, - 0.000000, 0.000000, 0.000000, 1.000000;; - } - Frame Armature_Bone { - FrameTransformMatrix { - 0.000000,-0.000000,-1.000000, 0.000000, - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-1.000000, 0.000000, 0.000000, - -0.250000, 0.000000, 0.450000, 1.000000;; - } - Frame Armature_Bone_001 { - FrameTransformMatrix { - 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.550000,-0.000000, 1.000000;; - } - } // End of Armature_Bone_001 - Frame Armature_Bone_002 { - FrameTransformMatrix { - -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,-0.995258, 0.000000, 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.000000, 1.230000,-0.350000, 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.000000, 1.230000, 0.350000, 1.000000;; - } - } // End of Armature_Bone_004 - Frame Armature_Bone_005 { - 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.000000, 0.900000,-0.350000, 1.000000;; - } - } // End of Armature_Bone_005 - Frame Armature_Bone_006 { - 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.000000, 0.900000, 0.350000, 1.000000;; - } - } // End of Armature_Bone_006 - Frame Armature_Bone_007 { - 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.000000,-0.230000,-0.350000, 1.000000;; - } - } // End of Armature_Bone_007 - Frame Armature_Bone_008 { - 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.000000,-0.230000, 0.350000, 1.000000;; - } - } // End of Armature_Bone_008 - Frame Armature_Bone_009 { - 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.000000,-0.670000,-0.350000, 1.000000;; - } - } // End of Armature_Bone_009 - Frame Armature_Bone_010 { - 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.000000,-0.670000, 0.350000, 1.000000;; - } - } // End of Armature_Bone_010 - } // End of Armature_Bone - Frame Group8 { - 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 { // Group8 mesh - 396; - -1.021228; 2.035352; 0.360000;, - -0.841228; 0.300332; 0.360000;, - -1.021228; 0.300332; 0.360000;, - -0.841228; 0.300332; 0.360000;, - -1.021228; 2.035352; 0.360000;, - -0.841228; 2.035352; 0.360000;, - -1.021228; 2.035352; 0.360000;, - -0.841228; 2.035352; 0.540000;, - -0.841228; 2.035352; 0.360000;, - -0.841228; 2.035352; 0.540000;, - -1.021228; 2.035352; 0.360000;, - -1.021228; 2.035352; 0.540000;, - -1.021228; 2.035352; 0.360000;, - -1.021228; 0.300332; 0.540000;, - -1.021228; 2.035352; 0.540000;, - -1.021228; 0.300332; 0.540000;, - -1.021228; 2.035352; 0.360000;, - -1.021228; 0.300332; 0.360000;, - -0.841228; 0.300332; 0.360000;, - -1.021228; 0.300332; 0.540000;, - -1.021228; 0.300332; 0.360000;, - -1.021228; 0.300332; 0.540000;, - -0.841228; 0.300332; 0.360000;, - -0.841228; 0.300332; 0.540000;, - -0.841228; 0.300332; 0.360000;, - -0.841228; 2.035352; 0.540000;, - -0.841228; 0.300332; 0.540000;, - -0.841228; 2.035352; 0.540000;, - -0.841228; 0.300332; 0.360000;, - -0.841228; 2.035352; 0.360000;, - -0.841228; 2.035352; 0.540000;, - -1.021228; 0.300332; 0.540000;, - -0.841228; 0.300332; 0.540000;, - -1.021228; 0.300332; 0.540000;, - -0.841228; 2.035352; 0.540000;, - -1.021228; 2.035352; 0.540000;, - -1.246228;-0.499668; 0.900000;, - -2.546228;-0.499668; 0.000000;, - -1.246228;-0.499668; 0.000000;, - -2.546228;-0.499668; 0.000000;, - -1.246228;-0.499668; 0.900000;, - -2.546228;-0.499668; 0.900000;, - -1.246228;-0.499668; 0.900000;, - -2.546228; 0.550332; 0.900000;, - -2.546228;-0.499668; 0.900000;, - -2.546228; 0.550332; 0.900000;, - -1.246228;-0.499668; 0.900000;, - -1.246228; 0.550332; 0.900000;, - -1.246228;-0.499668; 0.900000;, - -1.246228; 0.550332; 0.000000;, - -1.246228; 0.550332; 0.900000;, - -1.246228; 0.550332; 0.000000;, - -1.246228;-0.499668; 0.900000;, - -1.246228;-0.499668; 0.000000;, - -2.546228;-0.499668; 0.000000;, - -1.246228; 0.550332; 0.000000;, - -1.246228;-0.499668; 0.000000;, - -1.246228; 0.550332; 0.000000;, - -2.546228;-0.499668; 0.000000;, - -2.546228; 0.550332; 0.000000;, - -2.546228;-0.499668; 0.000000;, - -2.546228; 0.550332; 0.900000;, - -2.546228; 0.550332; 0.000000;, - -2.546228; 0.550332; 0.900000;, - -2.546228;-0.499668; 0.000000;, - -2.546228;-0.499668; 0.900000;, - -2.546228; 0.550332; 0.900000;, - -1.246228; 0.550332; 0.000000;, - -2.546228; 0.550332; 0.000000;, - -1.246228; 0.550332; 0.000000;, - -2.546228; 0.550332; 0.900000;, - -1.246228; 0.550332; 0.900000;, - -0.581228; 2.035352; 0.360000;, - -0.401228; 0.300332; 0.360000;, - -0.581228; 0.300332; 0.360000;, - -0.401228; 0.300332; 0.360000;, - -0.581228; 2.035352; 0.360000;, - -0.401228; 2.035352; 0.360000;, - -0.581228; 2.035352; 0.360000;, - -0.401228; 2.035352; 0.540000;, - -0.401228; 2.035352; 0.360000;, - -0.401228; 2.035352; 0.540000;, - -0.581228; 2.035352; 0.360000;, - -0.581228; 2.035352; 0.540000;, - -0.581228; 2.035352; 0.360000;, - -0.581228; 0.300332; 0.540000;, - -0.581228; 2.035352; 0.540000;, - -0.581228; 0.300332; 0.540000;, - -0.581228; 2.035352; 0.360000;, - -0.581228; 0.300332; 0.360000;, - -0.401228; 0.300332; 0.360000;, - -0.581228; 0.300332; 0.540000;, - -0.581228; 0.300332; 0.360000;, - -0.581228; 0.300332; 0.540000;, - -0.401228; 0.300332; 0.360000;, - -0.401228; 0.300332; 0.540000;, - -0.401228; 0.300332; 0.360000;, - -0.401228; 2.035352; 0.540000;, - -0.401228; 0.300332; 0.540000;, - -0.401228; 2.035352; 0.540000;, - -0.401228; 0.300332; 0.360000;, - -0.401228; 2.035352; 0.360000;, - -0.401228; 2.035352; 0.540000;, - -0.581228; 0.300332; 0.540000;, - -0.401228; 0.300332; 0.540000;, - -0.581228; 0.300332; 0.540000;, - -0.401228; 2.035352; 0.540000;, - -0.581228; 2.035352; 0.540000;, - 0.481772;-0.349668; 0.800000;, - -0.246228;-0.349668; 0.100000;, - 0.481772;-0.349668; 0.100000;, - -0.246228;-0.349668; 0.100000;, - 0.481772;-0.349668; 0.800000;, - -0.246228;-0.349668; 0.800000;, - 0.481772;-0.349668; 0.800000;, - -0.246228; 0.350332; 0.800000;, - -0.246228;-0.349668; 0.800000;, - -0.246228; 0.350332; 0.800000;, - 0.481772;-0.349668; 0.800000;, - 0.481772; 0.350332; 0.800000;, - 0.481772;-0.349668; 0.800000;, - 0.481772; 0.350332; 0.100000;, - 0.481772; 0.350332; 0.800000;, - 0.481772; 0.350332; 0.100000;, - 0.481772;-0.349668; 0.800000;, - 0.481772;-0.349668; 0.100000;, - -0.246228;-0.349668; 0.100000;, - 0.481772; 0.350332; 0.100000;, - 0.481772;-0.349668; 0.100000;, - 0.481772; 0.350332; 0.100000;, - -0.246228;-0.349668; 0.100000;, - -0.246228; 0.350332; 0.100000;, - -0.246228;-0.349668; 0.100000;, - -0.246228; 0.350332; 0.800000;, - -0.246228; 0.350332; 0.100000;, - -0.246228; 0.350332; 0.800000;, - -0.246228;-0.349668; 0.100000;, - -0.246228;-0.349668; 0.800000;, - -0.246228; 0.350332; 0.800000;, - 0.481772; 0.350332; 0.100000;, - -0.246228; 0.350332; 0.100000;, - 0.481772; 0.350332; 0.100000;, - -0.246228; 0.350332; 0.800000;, - 0.481772; 0.350332; 0.800000;, - 0.558772; 2.035352; 0.360000;, - 0.738772; 0.300332; 0.360000;, - 0.558772; 0.300332; 0.360000;, - 0.738772; 0.300332; 0.360000;, - 0.558772; 2.035352; 0.360000;, - 0.738772; 2.035352; 0.360000;, - 0.558772; 2.035352; 0.360000;, - 0.738772; 2.035352; 0.540000;, - 0.738772; 2.035352; 0.360000;, - 0.738772; 2.035352; 0.540000;, - 0.558772; 2.035352; 0.360000;, - 0.558772; 2.035352; 0.540000;, - 0.558772; 2.035352; 0.360000;, - 0.558772; 0.300332; 0.540000;, - 0.558772; 2.035352; 0.540000;, - 0.558772; 0.300332; 0.540000;, - 0.558772; 2.035352; 0.360000;, - 0.558772; 0.300332; 0.360000;, - 0.738772; 0.300332; 0.360000;, - 0.558772; 0.300332; 0.540000;, - 0.558772; 0.300332; 0.360000;, - 0.558772; 0.300332; 0.540000;, - 0.738772; 0.300332; 0.360000;, - 0.738772; 0.300332; 0.540000;, - 0.738772; 0.300332; 0.360000;, - 0.738772; 2.035352; 0.540000;, - 0.738772; 0.300332; 0.540000;, - 0.738772; 2.035352; 0.540000;, - 0.738772; 0.300332; 0.360000;, - 0.738772; 2.035352; 0.360000;, - 0.738772; 2.035352; 0.540000;, - 0.558772; 0.300332; 0.540000;, - 0.738772; 0.300332; 0.540000;, - 0.558772; 0.300332; 0.540000;, - 0.738772; 2.035352; 0.540000;, - 0.558772; 2.035352; 0.540000;, - -0.581228;-0.299668; 0.360000;, - -0.401228;-2.034688; 0.360000;, - -0.581228;-2.034688; 0.360000;, - -0.401228;-2.034688; 0.360000;, - -0.581228;-0.299668; 0.360000;, - -0.401228;-0.299668; 0.360000;, - -0.581228;-0.299668; 0.360000;, - -0.401228;-0.299668; 0.540000;, - -0.401228;-0.299668; 0.360000;, - -0.401228;-0.299668; 0.540000;, - -0.581228;-0.299668; 0.360000;, - -0.581228;-0.299668; 0.540000;, - -0.581228;-0.299668; 0.360000;, - -0.581228;-2.034688; 0.540000;, - -0.581228;-0.299668; 0.540000;, - -0.581228;-2.034688; 0.540000;, - -0.581228;-0.299668; 0.360000;, - -0.581228;-2.034688; 0.360000;, - -0.401228;-2.034688; 0.360000;, - -0.581228;-2.034688; 0.540000;, - -0.581228;-2.034688; 0.360000;, - -0.581228;-2.034688; 0.540000;, - -0.401228;-2.034688; 0.360000;, - -0.401228;-2.034688; 0.540000;, - -0.401228;-2.034688; 0.360000;, - -0.401228;-0.299668; 0.540000;, - -0.401228;-2.034688; 0.540000;, - -0.401228;-0.299668; 0.540000;, - -0.401228;-2.034688; 0.360000;, - -0.401228;-0.299668; 0.360000;, - -0.401228;-0.299668; 0.540000;, - -0.581228;-2.034688; 0.540000;, - -0.401228;-2.034688; 0.540000;, - -0.581228;-2.034688; 0.540000;, - -0.401228;-0.299668; 0.540000;, - -0.581228;-0.299668; 0.540000;, - 0.558772;-0.299668; 0.360000;, - 0.738772;-2.034688; 0.360000;, - 0.558772;-2.034688; 0.360000;, - 0.738772;-2.034688; 0.360000;, - 0.558772;-0.299668; 0.360000;, - 0.738772;-0.299668; 0.360000;, - 0.558772;-0.299668; 0.360000;, - 0.738772;-0.299668; 0.540000;, - 0.738772;-0.299668; 0.360000;, - 0.738772;-0.299668; 0.540000;, - 0.558772;-0.299668; 0.360000;, - 0.558772;-0.299668; 0.540000;, - 0.558772;-0.299668; 0.360000;, - 0.558772;-2.034688; 0.540000;, - 0.558772;-0.299668; 0.540000;, - 0.558772;-2.034688; 0.540000;, - 0.558772;-0.299668; 0.360000;, - 0.558772;-2.034688; 0.360000;, - 0.738772;-2.034688; 0.360000;, - 0.558772;-2.034688; 0.540000;, - 0.558772;-2.034688; 0.360000;, - 0.558772;-2.034688; 0.540000;, - 0.738772;-2.034688; 0.360000;, - 0.738772;-2.034688; 0.540000;, - 0.738772;-2.034688; 0.360000;, - 0.738772;-0.299668; 0.540000;, - 0.738772;-2.034688; 0.540000;, - 0.738772;-0.299668; 0.540000;, - 0.738772;-2.034688; 0.360000;, - 0.738772;-0.299668; 0.360000;, - 0.738772;-0.299668; 0.540000;, - 0.558772;-2.034688; 0.540000;, - 0.738772;-2.034688; 0.540000;, - 0.558772;-2.034688; 0.540000;, - 0.738772;-0.299668; 0.540000;, - 0.558772;-0.299668; 0.540000;, - -1.021228;-0.299668; 0.360000;, - -0.841228;-2.034688; 0.360000;, - -1.021228;-2.034688; 0.360000;, - -0.841228;-2.034688; 0.360000;, - -1.021228;-0.299668; 0.360000;, - -0.841228;-0.299668; 0.360000;, - -1.021228;-0.299668; 0.360000;, - -0.841228;-0.299668; 0.540000;, - -0.841228;-0.299668; 0.360000;, - -0.841228;-0.299668; 0.540000;, - -1.021228;-0.299668; 0.360000;, - -1.021228;-0.299668; 0.540000;, - -1.021228;-0.299668; 0.360000;, - -1.021228;-2.034688; 0.540000;, - -1.021228;-0.299668; 0.540000;, - -1.021228;-2.034688; 0.540000;, - -1.021228;-0.299668; 0.360000;, - -1.021228;-2.034688; 0.360000;, - -0.841228;-2.034688; 0.360000;, - -1.021228;-2.034688; 0.540000;, - -1.021228;-2.034688; 0.360000;, - -1.021228;-2.034688; 0.540000;, - -0.841228;-2.034688; 0.360000;, - -0.841228;-2.034688; 0.540000;, - -0.841228;-2.034688; 0.360000;, - -0.841228;-0.299668; 0.540000;, - -0.841228;-2.034688; 0.540000;, - -0.841228;-0.299668; 0.540000;, - -0.841228;-2.034688; 0.360000;, - -0.841228;-0.299668; 0.360000;, - -0.841228;-0.299668; 0.540000;, - -1.021228;-2.034688; 0.540000;, - -0.841228;-2.034688; 0.540000;, - -1.021228;-2.034688; 0.540000;, - -0.841228;-0.299668; 0.540000;, - -1.021228;-0.299668; 0.540000;, - 0.898772;-0.299668; 0.360000;, - 1.078772;-2.034688; 0.360000;, - 0.898772;-2.034688; 0.360000;, - 1.078772;-2.034688; 0.360000;, - 0.898772;-0.299668; 0.360000;, - 1.078772;-0.299668; 0.360000;, - 0.898772;-0.299668; 0.360000;, - 1.078772;-0.299668; 0.540000;, - 1.078772;-0.299668; 0.360000;, - 1.078772;-0.299668; 0.540000;, - 0.898772;-0.299668; 0.360000;, - 0.898772;-0.299668; 0.540000;, - 0.898772;-0.299668; 0.360000;, - 0.898772;-2.034688; 0.540000;, - 0.898772;-0.299668; 0.540000;, - 0.898772;-2.034688; 0.540000;, - 0.898772;-0.299668; 0.360000;, - 0.898772;-2.034688; 0.360000;, - 1.078772;-2.034688; 0.360000;, - 0.898772;-2.034688; 0.540000;, - 0.898772;-2.034688; 0.360000;, - 0.898772;-2.034688; 0.540000;, - 1.078772;-2.034688; 0.360000;, - 1.078772;-2.034688; 0.540000;, - 1.078772;-2.034688; 0.360000;, - 1.078772;-0.299668; 0.540000;, - 1.078772;-2.034688; 0.540000;, - 1.078772;-0.299668; 0.540000;, - 1.078772;-2.034688; 0.360000;, - 1.078772;-0.299668; 0.360000;, - 1.078772;-0.299668; 0.540000;, - 0.898772;-2.034688; 0.540000;, - 1.078772;-2.034688; 0.540000;, - 0.898772;-2.034688; 0.540000;, - 1.078772;-0.299668; 0.540000;, - 0.898772;-0.299668; 0.540000;, - 0.898772; 2.035352; 0.360000;, - 1.078772; 0.300332; 0.360000;, - 0.898772; 0.300332; 0.360000;, - 1.078772; 0.300332; 0.360000;, - 0.898772; 2.035352; 0.360000;, - 1.078772; 2.035352; 0.360000;, - 0.898772; 2.035352; 0.360000;, - 1.078772; 2.035352; 0.540000;, - 1.078772; 2.035352; 0.360000;, - 1.078772; 2.035352; 0.540000;, - 0.898772; 2.035352; 0.360000;, - 0.898772; 2.035352; 0.540000;, - 0.898772; 2.035352; 0.360000;, - 0.898772; 0.300332; 0.540000;, - 0.898772; 2.035352; 0.540000;, - 0.898772; 0.300332; 0.540000;, - 0.898772; 2.035352; 0.360000;, - 0.898772; 0.300332; 0.360000;, - 1.078772; 0.300332; 0.360000;, - 0.898772; 0.300332; 0.540000;, - 0.898772; 0.300332; 0.360000;, - 0.898772; 0.300332; 0.540000;, - 1.078772; 0.300332; 0.360000;, - 1.078772; 0.300332; 0.540000;, - 1.078772; 0.300332; 0.360000;, - 1.078772; 2.035352; 0.540000;, - 1.078772; 0.300332; 0.540000;, - 1.078772; 2.035352; 0.540000;, - 1.078772; 0.300332; 0.360000;, - 1.078772; 2.035352; 0.360000;, - 1.078772; 2.035352; 0.540000;, - 0.898772; 0.300332; 0.540000;, - 1.078772; 0.300332; 0.540000;, - 0.898772; 0.300332; 0.540000;, - 1.078772; 2.035352; 0.540000;, - 0.898772; 2.035352; 0.540000;, - 2.153772;-0.424668; 0.875000;, - 1.303772;-0.424668; 0.025000;, - 2.153772;-0.424668; 0.025000;, - 1.303772;-0.424668; 0.025000;, - 2.153772;-0.424668; 0.875000;, - 1.303772;-0.424668; 0.875000;, - 2.153772;-0.424668; 0.875000;, - 1.303772; 0.425332; 0.875000;, - 1.303772;-0.424668; 0.875000;, - 1.303772; 0.425332; 0.875000;, - 2.153772;-0.424668; 0.875000;, - 2.153772; 0.425332; 0.875000;, - 2.153772;-0.424668; 0.875000;, - 2.153772; 0.425332; 0.025000;, - 2.153772; 0.425332; 0.875000;, - 2.153772; 0.425332; 0.025000;, - 2.153772;-0.424668; 0.875000;, - 2.153772;-0.424668; 0.025000;, - 1.303772;-0.424668; 0.025000;, - 2.153772; 0.425332; 0.025000;, - 2.153772;-0.424668; 0.025000;, - 2.153772; 0.425332; 0.025000;, - 1.303772;-0.424668; 0.025000;, - 1.303772; 0.425332; 0.025000;, - 1.303772;-0.424668; 0.025000;, - 1.303772; 0.425332; 0.875000;, - 1.303772; 0.425332; 0.025000;, - 1.303772; 0.425332; 0.875000;, - 1.303772;-0.424668; 0.025000;, - 1.303772;-0.424668; 0.875000;, - 1.303772; 0.425332; 0.875000;, - 2.153772; 0.425332; 0.025000;, - 1.303772; 0.425332; 0.025000;, - 2.153772; 0.425332; 0.025000;, - 1.303772; 0.425332; 0.875000;, - 2.153772; 0.425332; 0.875000;; - 132; - 3;2,1,0;, - 3;5,4,3;, - 3;8,7,6;, - 3;11,10,9;, - 3;14,13,12;, - 3;17,16,15;, - 3;20,19,18;, - 3;23,22,21;, - 3;26,25,24;, - 3;29,28,27;, - 3;32,31,30;, - 3;35,34,33;, - 3;38,37,36;, - 3;41,40,39;, - 3;44,43,42;, - 3;47,46,45;, - 3;50,49,48;, - 3;53,52,51;, - 3;56,55,54;, - 3;59,58,57;, - 3;62,61,60;, - 3;65,64,63;, - 3;68,67,66;, - 3;71,70,69;, - 3;74,73,72;, - 3;77,76,75;, - 3;80,79,78;, - 3;83,82,81;, - 3;86,85,84;, - 3;89,88,87;, - 3;92,91,90;, - 3;95,94,93;, - 3;98,97,96;, - 3;101,100,99;, - 3;104,103,102;, - 3;107,106,105;, - 3;110,109,108;, - 3;113,112,111;, - 3;116,115,114;, - 3;119,118,117;, - 3;122,121,120;, - 3;125,124,123;, - 3;128,127,126;, - 3;131,130,129;, - 3;134,133,132;, - 3;137,136,135;, - 3;140,139,138;, - 3;143,142,141;, - 3;146,145,144;, - 3;149,148,147;, - 3;152,151,150;, - 3;155,154,153;, - 3;158,157,156;, - 3;161,160,159;, - 3;164,163,162;, - 3;167,166,165;, - 3;170,169,168;, - 3;173,172,171;, - 3;176,175,174;, - 3;179,178,177;, - 3;182,181,180;, - 3;185,184,183;, - 3;188,187,186;, - 3;191,190,189;, - 3;194,193,192;, - 3;197,196,195;, - 3;200,199,198;, - 3;203,202,201;, - 3;206,205,204;, - 3;209,208,207;, - 3;212,211,210;, - 3;215,214,213;, - 3;218,217,216;, - 3;221,220,219;, - 3;224,223,222;, - 3;227,226,225;, - 3;230,229,228;, - 3;233,232,231;, - 3;236,235,234;, - 3;239,238,237;, - 3;242,241,240;, - 3;245,244,243;, - 3;248,247,246;, - 3;251,250,249;, - 3;254,253,252;, - 3;257,256,255;, - 3;260,259,258;, - 3;263,262,261;, - 3;266,265,264;, - 3;269,268,267;, - 3;272,271,270;, - 3;275,274,273;, - 3;278,277,276;, - 3;281,280,279;, - 3;284,283,282;, - 3;287,286,285;, - 3;290,289,288;, - 3;293,292,291;, - 3;296,295,294;, - 3;299,298,297;, - 3;302,301,300;, - 3;305,304,303;, - 3;308,307,306;, - 3;311,310,309;, - 3;314,313,312;, - 3;317,316,315;, - 3;320,319,318;, - 3;323,322,321;, - 3;326,325,324;, - 3;329,328,327;, - 3;332,331,330;, - 3;335,334,333;, - 3;338,337,336;, - 3;341,340,339;, - 3;344,343,342;, - 3;347,346,345;, - 3;350,349,348;, - 3;353,352,351;, - 3;356,355,354;, - 3;359,358,357;, - 3;362,361,360;, - 3;365,364,363;, - 3;368,367,366;, - 3;371,370,369;, - 3;374,373,372;, - 3;377,376,375;, - 3;380,379,378;, - 3;383,382,381;, - 3;386,385,384;, - 3;389,388,387;, - 3;392,391,390;, - 3;395,394,393;; - MeshNormals { // Group8 normals - 132; - 0.000000; 0.000000;-1.000000;, - -0.000000;-0.000000;-1.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;, - 0.000000;-1.000000; 0.000000;, - -0.000000;-1.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;-1.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;, - 1.000000;-0.000000; 0.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;, - 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; 1.000000;-0.000000;, - -0.000000; 1.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;, - 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;-1.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;, - 1.000000;-0.000000; 0.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;, - 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; 1.000000;-0.000000;, - -0.000000; 1.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;, - 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; 1.000000;-0.000000;, - -0.000000; 1.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;, - 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; 1.000000;-0.000000;, - -0.000000; 1.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;, - 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; 1.000000;-0.000000;, - -0.000000; 1.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;, - 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; 1.000000;-0.000000;, - -0.000000; 1.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;, - 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; 1.000000;-0.000000;, - -0.000000; 1.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;, - 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;-1.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;, - 1.000000;-0.000000; 0.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;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000; 0.000000;; - 132; - 3;0,0,0;, - 3;1,1,1;, - 3;2,2,2;, - 3;3,3,3;, - 3;4,4,4;, - 3;5,5,5;, - 3;6,6,6;, - 3;7,7,7;, - 3;8,8,8;, - 3;9,9,9;, - 3;10,10,10;, - 3;11,11,11;, - 3;12,12,12;, - 3;13,13,13;, - 3;14,14,14;, - 3;15,15,15;, - 3;16,16,16;, - 3;17,17,17;, - 3;18,18,18;, - 3;19,19,19;, - 3;20,20,20;, - 3;21,21,21;, - 3;22,22,22;, - 3;23,23,23;, - 3;24,24,24;, - 3;25,25,25;, - 3;26,26,26;, - 3;27,27,27;, - 3;28,28,28;, - 3;29,29,29;, - 3;30,30,30;, - 3;31,31,31;, - 3;32,32,32;, - 3;33,33,33;, - 3;34,34,34;, - 3;35,35,35;, - 3;36,36,36;, - 3;37,37,37;, - 3;38,38,38;, - 3;39,39,39;, - 3;40,40,40;, - 3;41,41,41;, - 3;42,42,42;, - 3;43,43,43;, - 3;44,44,44;, - 3;45,45,45;, - 3;46,46,46;, - 3;47,47,47;, - 3;48,48,48;, - 3;49,49,49;, - 3;50,50,50;, - 3;51,51,51;, - 3;52,52,52;, - 3;53,53,53;, - 3;54,54,54;, - 3;55,55,55;, - 3;56,56,56;, - 3;57,57,57;, - 3;58,58,58;, - 3;59,59,59;, - 3;60,60,60;, - 3;61,61,61;, - 3;62,62,62;, - 3;63,63,63;, - 3;64,64,64;, - 3;65,65,65;, - 3;66,66,66;, - 3;67,67,67;, - 3;68,68,68;, - 3;69,69,69;, - 3;70,70,70;, - 3;71,71,71;, - 3;72,72,72;, - 3;73,73,73;, - 3;74,74,74;, - 3;75,75,75;, - 3;76,76,76;, - 3;77,77,77;, - 3;78,78,78;, - 3;79,79,79;, - 3;80,80,80;, - 3;81,81,81;, - 3;82,82,82;, - 3;83,83,83;, - 3;84,84,84;, - 3;85,85,85;, - 3;86,86,86;, - 3;87,87,87;, - 3;88,88,88;, - 3;89,89,89;, - 3;90,90,90;, - 3;91,91,91;, - 3;92,92,92;, - 3;93,93,93;, - 3;94,94,94;, - 3;95,95,95;, - 3;96,96,96;, - 3;97,97,97;, - 3;98,98,98;, - 3;99,99,99;, - 3;100,100,100;, - 3;101,101,101;, - 3;102,102,102;, - 3;103,103,103;, - 3;104,104,104;, - 3;105,105,105;, - 3;106,106,106;, - 3;107,107,107;, - 3;108,108,108;, - 3;109,109,109;, - 3;110,110,110;, - 3;111,111,111;, - 3;112,112,112;, - 3;113,113,113;, - 3;114,114,114;, - 3;115,115,115;, - 3;116,116,116;, - 3;117,117,117;, - 3;118,118,118;, - 3;119,119,119;, - 3;120,120,120;, - 3;121,121,121;, - 3;122,122,122;, - 3;123,123,123;, - 3;124,124,124;, - 3;125,125,125;, - 3;126,126,126;, - 3;127,127,127;, - 3;128,128,128;, - 3;129,129,129;, - 3;130,130,130;, - 3;131,131,131;; - } // End of Group8 normals - MeshTextureCoords { // Group8 UV coordinates - 396; - 0.791890; 0.042023;, - 0.769813; 0.261376;, - 0.792562; 0.261306;, - 0.769813; 0.261376;, - 0.791890; 0.042023;, - 0.769140; 0.042093;, - 0.654039; 0.687069;, - 0.631220; 0.664389;, - 0.631290; 0.687139;, - 0.631220; 0.664389;, - 0.654039; 0.687069;, - 0.653970; 0.664319;, - 0.840589; 0.506007;, - 0.818513; 0.286654;, - 0.817840; 0.505937;, - 0.818513; 0.286654;, - 0.840589; 0.506007;, - 0.841262; 0.286723;, - 0.761662; 0.579451;, - 0.738843; 0.602130;, - 0.761592; 0.602200;, - 0.738843; 0.602130;, - 0.761662; 0.579451;, - 0.738912; 0.579381;, - 0.889289; 0.261376;, - 0.867212; 0.042023;, - 0.866540; 0.261306;, - 0.867212; 0.042023;, - 0.889289; 0.261376;, - 0.889962; 0.042093;, - 0.915912; 0.261376;, - 0.937989; 0.042023;, - 0.915239; 0.042093;, - 0.937989; 0.042023;, - 0.915912; 0.261376;, - 0.938662; 0.261306;, - 0.175538; 0.625391;, - 0.291573; 0.794100;, - 0.292089; 0.625748;, - 0.291573; 0.794100;, - 0.175538; 0.625391;, - 0.175022; 0.793742;, - 0.016501; 0.983071;, - 0.154432; 0.813366;, - 0.017022; 0.812944;, - 0.154432; 0.813366;, - 0.016501; 0.983071;, - 0.153910; 0.983492;, - 0.330007; 0.992934;, - 0.452425; 0.850997;, - 0.330444; 0.850622;, - 0.452425; 0.850997;, - 0.330007; 0.992934;, - 0.451989; 0.993308;, - 0.312934; 0.813407;, - 0.174973; 0.985292;, - 0.313460; 0.984867;, - 0.174973; 0.985292;, - 0.312934; 0.813407;, - 0.174447; 0.813831;, - 0.436312; 0.657161;, - 0.316831; 0.795693;, - 0.435886; 0.796059;, - 0.316831; 0.795693;, - 0.436312; 0.657161;, - 0.317258; 0.656796;, - 0.033508; 0.622901;, - 0.154544; 0.796589;, - 0.154010; 0.622532;, - 0.154544; 0.796589;, - 0.033508; 0.622901;, - 0.034042; 0.796959;, - 0.623041; 0.391917;, - 0.646463; 0.172704;, - 0.623714; 0.172634;, - 0.646463; 0.172704;, - 0.623041; 0.391917;, - 0.645790; 0.391987;, - 0.569101; 0.820105;, - 0.546281; 0.797425;, - 0.546351; 0.820174;, - 0.546281; 0.797425;, - 0.569101; 0.820105;, - 0.569031; 0.797355;, - 0.333405; 0.388448;, - 0.311328; 0.169095;, - 0.310655; 0.388379;, - 0.311328; 0.169095;, - 0.333405; 0.388448;, - 0.334078; 0.169165;, - 0.750233; 0.664389;, - 0.727414; 0.687069;, - 0.750163; 0.687139;, - 0.727414; 0.687069;, - 0.750233; 0.664389;, - 0.727483; 0.664320;, - 0.079845; 0.356852;, - 0.057769; 0.137499;, - 0.057096; 0.356782;, - 0.057769; 0.137499;, - 0.079845; 0.356852;, - 0.080518; 0.137569;, - 0.743863; 0.286723;, - 0.720440; 0.505937;, - 0.743190; 0.506007;, - 0.720440; 0.505937;, - 0.743863; 0.286723;, - 0.721113; 0.286654;, - 0.049423; 0.374174;, - 0.137611; 0.466455;, - 0.137893; 0.374445;, - 0.137611; 0.466455;, - 0.049423; 0.374174;, - 0.049141; 0.466183;, - 0.174944; 0.469990;, - 0.263132; 0.377710;, - 0.174662; 0.377981;, - 0.263132; 0.377710;, - 0.174944; 0.469990;, - 0.263415; 0.469719;, - 0.580273; 0.622991;, - 0.670973; 0.532845;, - 0.580550; 0.532567;, - 0.670973; 0.532845;, - 0.580273; 0.622991;, - 0.670696; 0.623268;, - 0.529615; 0.406926;, - 0.440862; 0.498664;, - 0.529333; 0.498935;, - 0.440862; 0.498664;, - 0.529615; 0.406926;, - 0.441145; 0.406654;, - 0.638413; 0.497521;, - 0.550214; 0.408779;, - 0.549943; 0.497250;, - 0.550214; 0.408779;, - 0.638413; 0.497521;, - 0.638685; 0.409050;, - 0.313837; 0.406042;, - 0.402590; 0.497780;, - 0.402308; 0.405770;, - 0.402590; 0.497780;, - 0.313837; 0.406042;, - 0.314120; 0.498051;, - 0.122426; 0.356782;, - 0.145849; 0.137569;, - 0.123099; 0.137499;, - 0.145849; 0.137569;, - 0.122426; 0.356782;, - 0.145176; 0.356852;, - 0.605943; 0.687069;, - 0.583123; 0.664389;, - 0.583193; 0.687139;, - 0.583123; 0.664389;, - 0.605943; 0.687069;, - 0.605873; 0.664319;, - 0.398735; 0.388448;, - 0.376659; 0.169095;, - 0.375986; 0.388379;, - 0.376659; 0.169095;, - 0.398735; 0.388448;, - 0.399408; 0.169165;, - 0.702136; 0.735166;, - 0.679317; 0.712486;, - 0.679387; 0.735236;, - 0.679317; 0.712486;, - 0.702136; 0.735166;, - 0.702066; 0.712416;, - 0.259206; 0.356852;, - 0.237129; 0.137499;, - 0.236457; 0.356782;, - 0.237129; 0.137499;, - 0.259206; 0.356852;, - 0.259879; 0.137569;, - 0.771603; 0.768078;, - 0.748180; 0.987291;, - 0.770930; 0.987361;, - 0.748180; 0.987291;, - 0.771603; 0.768078;, - 0.748853; 0.768008;, - 0.796880; 0.987291;, - 0.820302; 0.768078;, - 0.797553; 0.768008;, - 0.820302; 0.768078;, - 0.796880; 0.987291;, - 0.819630; 0.987361;, - 0.654039; 0.712486;, - 0.631220; 0.735166;, - 0.653970; 0.735236;, - 0.631220; 0.735166;, - 0.654039; 0.712486;, - 0.631290; 0.712416;, - 0.531771; 0.388448;, - 0.509694; 0.169095;, - 0.509021; 0.388379;, - 0.509694; 0.169095;, - 0.531771; 0.388448;, - 0.532444; 0.169165;, - 0.521004; 0.820105;, - 0.498185; 0.797425;, - 0.498254; 0.820174;, - 0.498185; 0.797425;, - 0.521004; 0.820105;, - 0.520934; 0.797355;, - 0.965729; 0.987361;, - 0.943652; 0.768008;, - 0.942979; 0.987291;, - 0.943652; 0.768008;, - 0.965729; 0.987361;, - 0.966402; 0.768078;, - 0.171799; 0.356852;, - 0.193876; 0.137499;, - 0.171126; 0.137569;, - 0.193876; 0.137499;, - 0.171799; 0.356852;, - 0.194548; 0.356782;, - 0.557721; 0.391917;, - 0.581143; 0.172704;, - 0.558394; 0.172634;, - 0.581143; 0.172704;, - 0.557721; 0.391917;, - 0.580471; 0.391987;, - 0.798330; 0.687069;, - 0.775510; 0.664389;, - 0.775580; 0.687139;, - 0.775510; 0.664389;, - 0.798330; 0.687069;, - 0.798260; 0.664320;, - 0.937989; 0.506007;, - 0.915912; 0.286654;, - 0.915239; 0.505937;, - 0.915912; 0.286654;, - 0.937989; 0.506007;, - 0.938662; 0.286723;, - 0.713565; 0.554034;, - 0.690746; 0.531354;, - 0.690816; 0.554103;, - 0.690746; 0.531354;, - 0.713565; 0.554034;, - 0.713495; 0.531284;, - 0.840589; 0.261376;, - 0.818513; 0.042023;, - 0.817840; 0.261306;, - 0.818513; 0.042023;, - 0.840589; 0.261376;, - 0.841262; 0.042093;, - 0.722903; 0.768078;, - 0.699481; 0.987291;, - 0.722230; 0.987361;, - 0.699481; 0.987291;, - 0.722903; 0.768078;, - 0.700153; 0.768008;, - 0.791890; 0.286654;, - 0.769813; 0.506007;, - 0.792562; 0.505937;, - 0.769813; 0.506007;, - 0.791890; 0.286654;, - 0.769140; 0.286723;, - 0.750233; 0.735166;, - 0.727414; 0.712486;, - 0.727483; 0.735236;, - 0.727414; 0.712486;, - 0.750233; 0.735166;, - 0.750163; 0.712416;, - 0.868329; 0.987361;, - 0.846253; 0.768008;, - 0.845580; 0.987292;, - 0.846253; 0.768008;, - 0.868329; 0.987361;, - 0.869002; 0.768078;, - 0.761662; 0.531354;, - 0.738843; 0.554034;, - 0.761592; 0.554103;, - 0.738843; 0.554034;, - 0.761662; 0.531354;, - 0.738912; 0.531284;, - 0.694490; 0.261376;, - 0.672413; 0.042023;, - 0.671741; 0.261306;, - 0.672413; 0.042023;, - 0.694490; 0.261376;, - 0.695163; 0.042093;, - 0.964612; 0.261376;, - 0.986689; 0.042023;, - 0.963939; 0.042093;, - 0.986689; 0.042023;, - 0.964612; 0.261376;, - 0.987361; 0.261306;, - 0.671741; 0.505937;, - 0.695163; 0.286723;, - 0.672413; 0.286654;, - 0.695163; 0.286723;, - 0.671741; 0.505937;, - 0.694490; 0.506007;, - 0.679387; 0.664320;, - 0.702066; 0.687139;, - 0.702136; 0.664389;, - 0.702066; 0.687139;, - 0.679387; 0.664320;, - 0.679317; 0.687069;, - 0.889289; 0.506007;, - 0.867212; 0.286654;, - 0.866540; 0.505937;, - 0.867212; 0.286654;, - 0.889289; 0.506007;, - 0.889962; 0.286723;, - 0.583193; 0.712416;, - 0.605873; 0.735236;, - 0.605943; 0.712486;, - 0.605873; 0.735236;, - 0.583193; 0.712416;, - 0.583123; 0.735166;, - 0.743190; 0.261376;, - 0.721113; 0.042023;, - 0.720440; 0.261306;, - 0.721113; 0.042023;, - 0.743190; 0.261376;, - 0.743863; 0.042093;, - 0.625504; 0.768078;, - 0.602081; 0.987292;, - 0.624831; 0.987361;, - 0.602081; 0.987292;, - 0.625504; 0.768078;, - 0.602754; 0.768008;, - 0.986689; 0.286654;, - 0.964612; 0.506006;, - 0.987361; 0.505937;, - 0.964612; 0.506006;, - 0.986689; 0.286654;, - 0.963939; 0.286723;, - 0.472907; 0.820105;, - 0.450088; 0.797425;, - 0.450158; 0.820174;, - 0.450088; 0.797425;, - 0.472907; 0.820105;, - 0.472837; 0.797355;, - 0.447435; 0.388448;, - 0.425358; 0.169095;, - 0.424686; 0.388379;, - 0.425358; 0.169095;, - 0.447435; 0.388448;, - 0.448108; 0.169165;, - 0.713565; 0.597276;, - 0.690746; 0.619956;, - 0.713495; 0.620026;, - 0.690746; 0.619956;, - 0.713565; 0.597276;, - 0.690816; 0.597207;, - 0.917029; 0.987361;, - 0.894952; 0.768008;, - 0.894280; 0.987292;, - 0.894952; 0.768008;, - 0.917029; 0.987361;, - 0.917702; 0.768078;, - 0.651454; 0.987361;, - 0.673531; 0.768008;, - 0.650781; 0.768078;, - 0.673531; 0.768008;, - 0.651454; 0.987361;, - 0.674203; 0.987291;, - 0.171126; 0.607116;, - 0.278884; 0.500017;, - 0.171456; 0.499687;, - 0.278884; 0.500017;, - 0.171126; 0.607116;, - 0.278555; 0.607445;, - 0.561052; 0.780245;, - 0.453953; 0.657919;, - 0.453623; 0.779871;, - 0.453953; 0.657919;, - 0.561052; 0.780245;, - 0.561381; 0.658294;, - 0.440634; 0.530577;, - 0.560163; 0.638335;, - 0.560531; 0.530906;, - 0.560163; 0.638335;, - 0.440634; 0.530577;, - 0.440266; 0.638005;, - 0.469375; 0.879603;, - 0.576474; 0.987361;, - 0.576804; 0.879933;, - 0.576474; 0.987361;, - 0.469375; 0.879603;, - 0.469046; 0.987032;, - 0.145519; 0.607445;, - 0.038420; 0.499687;, - 0.038090; 0.607116;, - 0.038420; 0.499687;, - 0.145519; 0.607445;, - 0.145849; 0.500017;, - 0.418084; 0.531284;, - 0.310985; 0.639042;, - 0.418413; 0.638712;, - 0.310985; 0.639042;, - 0.418084; 0.531284;, - 0.310655; 0.531613;; - } // End of Group8 UV coordinates - MeshMaterialList { // Group8 material list - 1; - 132; - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 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 FrontCol { - 0.800000; 0.800000; 0.800000; 1.000000;; - 96.078431; - 0.164706; 0.164706; 0.164706;; - 0.000000; 0.000000; 0.000000;; - } - } // End of Group8 material list - XSkinMeshHeader { - 1; - 3; - 11; - } - SkinWeights { - "Armature_Bone_010"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.920000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_010 skin weights - SkinWeights { - "Armature_Bone_008"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.480000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_008 skin weights - SkinWeights { - "Armature_Bone_009"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.920000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_009 skin weights - SkinWeights { - "Armature_Bone"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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, 1.000000,-0.000000, 0.000000, - -0.000000, 0.000000,-1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - 0.450000, 0.250000,-0.000000, 1.000000;; - } // End of Armature_Bone skin weights - SkinWeights { - "Armature_Bone_001"; - 36; - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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, 1.000000, 0.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - 0.000000,-0.000000, 1.000000, 0.000000, - -0.000000,-1.300000,-0.450000, 1.000000;; - } // End of Armature_Bone_001 skin weights - SkinWeights { - "Armature_Bone_002"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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,-1.000000,-0.000000, 0.000000, - 1.000000,-0.000000, 0.000000, 0.000000, - -0.000000, 0.000000, 1.000000, 0.000000, - -0.000000,-1.245258,-0.450000, 1.000000;; - } // End of Armature_Bone_002 skin weights - SkinWeights { - "Armature_Bone_003"; - 36; - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.980000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_003 skin weights - SkinWeights { - "Armature_Bone_004"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.980000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_004 skin weights - SkinWeights { - "Armature_Bone_005"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.650000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_005 skin weights - SkinWeights { - "Armature_Bone_006"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.650000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_006 skin weights - SkinWeights { - "Armature_Bone_007"; - 36; - 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; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.480000,-0.350000,-0.450000, 1.000000;; - } // End of Armature_Bone_007 skin weights - } // End of Group8 mesh - } // End of Group8 - } // End of Armature -} // End of Root -AnimationSet Global { - Animation { - {Armature} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 1;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 2;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 3;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 4;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 5;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 6;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 7;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 8;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 9;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 10;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 11;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 12;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 13;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 14;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 15;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 16;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 17;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 18;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 19;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 20;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 21;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 22;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 23;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 24;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 25;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 26;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 27;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 28;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 29;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 30;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 31;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 32;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 33;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 34;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 35;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 36;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 37;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 38;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 39;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 40;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 41;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 42;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 43;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 44;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 45;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 46;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 47;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 48;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 49;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 50;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 51;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 52;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 53;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 54;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 55;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 56;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 57;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 58;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 59;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 60;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 61;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 62;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 63;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 64;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 65;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 66;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 67;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 68;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 69;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 70;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 71;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 72;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 73;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 74;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 75;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 76;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 77;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 78;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 79;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 80;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 81;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 82;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 83;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 84;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 85;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 86;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 87;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 88;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 89;4;-0.707107, 0.000000, 0.000000, 0.707107;;, - 90;4;-0.707107, 0.000000, 0.000000, 0.707107;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 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;;; - } - } - Animation { - {Armature_Bone} - AnimationKey { // Rotation - 0; - 91; - 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.499506, 0.499506, 0.500473,-0.500473;;, - 42;4;-0.498019, 0.498019, 0.501896,-0.501896;;, - 43;4;-0.495602, 0.495601, 0.504211,-0.504211;;, - 44;4;-0.492439, 0.492439, 0.507238,-0.507238;;, - 45;4;-0.488857, 0.488857, 0.510667,-0.510667;;, - 46;4;-0.485275, 0.485275, 0.514096,-0.514096;;, - 47;4;-0.482113, 0.482113, 0.517123,-0.517123;;, - 48;4;-0.479695, 0.479695, 0.519437,-0.519437;;, - 49;4;-0.478209, 0.478208, 0.520861,-0.520861;;, - 50;4;-0.477714, 0.477714, 0.521334,-0.521334;;, - 51;4;-0.478682, 0.478681, 0.520367,-0.520367;;, - 52;4;-0.481592, 0.481592, 0.517456,-0.517457;;, - 53;4;-0.486324, 0.486324, 0.512725,-0.512725;;, - 54;4;-0.492513, 0.492513, 0.506535,-0.506535;;, - 55;4;-0.499524, 0.499524, 0.499524,-0.499524;;, - 56;4;-0.506535, 0.506535, 0.492513,-0.492513;;, - 57;4;-0.512725, 0.512725, 0.486324,-0.486324;;, - 58;4;-0.517457, 0.517456, 0.481592,-0.481592;;, - 59;4;-0.520367, 0.520367, 0.478681,-0.478681;;, - 60;4;-0.521334, 0.521334, 0.477714,-0.477714;;, - 61;4;-0.521286, 0.521286, 0.477768,-0.477768;;, - 62;4;-0.521135, 0.521135, 0.477934,-0.477934;;, - 63;4;-0.520874, 0.520874, 0.478222,-0.478222;;, - 64;4;-0.520494, 0.520494, 0.478639,-0.478639;;, - 65;4;-0.519987, 0.519987, 0.479193,-0.479193;;, - 66;4;-0.519348, 0.519348, 0.479888,-0.479888;;, - 67;4;-0.518574, 0.518574, 0.480726,-0.480726;;, - 68;4;-0.517665, 0.517665, 0.481706,-0.481706;;, - 69;4;-0.516623, 0.516623, 0.482823,-0.482823;;, - 70;4;-0.515456, 0.515456, 0.484068,-0.484068;;, - 71;4;-0.514175, 0.514175, 0.485426,-0.485426;;, - 72;4;-0.512794, 0.512794, 0.486883,-0.486883;;, - 73;4;-0.511327, 0.511327, 0.488420,-0.488420;;, - 74;4;-0.509793, 0.509793, 0.490019,-0.490019;;, - 75;4;-0.508208, 0.508208, 0.491660,-0.491660;;, - 76;4;-0.506587, 0.506587, 0.493328,-0.493328;;, - 77;4;-0.504945, 0.504945, 0.495007,-0.495007;;, - 78;4;-0.503293, 0.503293, 0.496685,-0.496686;;, - 79;4;-0.501642, 0.501642, 0.498352,-0.498352;;, - 80;4;-0.500000, 0.500000, 0.500000,-0.500000;;, - 81;4;-0.498096, 0.498096, 0.501883,-0.501883;;, - 82;4;-0.495674, 0.495674, 0.504242,-0.504242;;, - 83;4;-0.492810, 0.492810, 0.507002,-0.507002;;, - 84;4;-0.489661, 0.489661, 0.510016,-0.510016;;, - 85;4;-0.486463, 0.486462, 0.513062,-0.513062;;, - 86;4;-0.483491, 0.483491, 0.515880,-0.515880;;, - 87;4;-0.481000, 0.481000, 0.518236,-0.518236;;, - 88;4;-0.479167, 0.479167, 0.519965,-0.519965;;, - 89;4;-0.478071, 0.478071, 0.520998,-0.520998;;, - 90;4;-0.477714, 0.477714, 0.521334,-0.521334;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.250000, 0.000000, 0.450000;;, - 1;3;-0.250000, 0.000000, 0.450000;;, - 2;3;-0.250000, 0.000000, 0.450000;;, - 3;3;-0.250000, 0.000000, 0.450000;;, - 4;3;-0.250000, 0.000000, 0.450000;;, - 5;3;-0.250000, 0.000000, 0.450000;;, - 6;3;-0.250000, 0.000000, 0.450000;;, - 7;3;-0.250000, 0.000000, 0.450000;;, - 8;3;-0.250000, 0.000000, 0.450000;;, - 9;3;-0.250000, 0.000000, 0.450000;;, - 10;3;-0.250000, 0.000000, 0.450000;;, - 11;3;-0.250000, 0.000000, 0.450000;;, - 12;3;-0.250000, 0.000000, 0.450000;;, - 13;3;-0.250000, 0.000000, 0.450000;;, - 14;3;-0.250000, 0.000000, 0.450000;;, - 15;3;-0.250000, 0.000000, 0.450000;;, - 16;3;-0.250000, 0.000000, 0.450000;;, - 17;3;-0.250000, 0.000000, 0.450000;;, - 18;3;-0.250000, 0.000000, 0.450000;;, - 19;3;-0.250000, 0.000000, 0.450000;;, - 20;3;-0.250000, 0.000000, 0.450000;;, - 21;3;-0.250000, 0.000000, 0.450000;;, - 22;3;-0.250000, 0.000000, 0.450000;;, - 23;3;-0.250000, 0.000000, 0.450000;;, - 24;3;-0.250000, 0.000000, 0.450000;;, - 25;3;-0.250000, 0.000000, 0.450000;;, - 26;3;-0.250000, 0.000000, 0.450000;;, - 27;3;-0.250000, 0.000000, 0.450000;;, - 28;3;-0.250000, 0.000000, 0.450000;;, - 29;3;-0.250000, 0.000000, 0.450000;;, - 30;3;-0.250000, 0.000000, 0.450000;;, - 31;3;-0.250000, 0.000000, 0.450000;;, - 32;3;-0.250000, 0.000000, 0.450000;;, - 33;3;-0.250000, 0.000000, 0.450000;;, - 34;3;-0.250000, 0.000000, 0.450000;;, - 35;3;-0.250000, 0.000000, 0.450000;;, - 36;3;-0.250000, 0.000000, 0.450000;;, - 37;3;-0.250000, 0.000000, 0.450000;;, - 38;3;-0.250000, 0.000000, 0.450000;;, - 39;3;-0.250000, 0.000000, 0.450000;;, - 40;3;-0.250000, 0.000000, 0.450000;;, - 41;3;-0.256652,-0.000000, 0.450000;;, - 42;3;-0.276671,-0.000000, 0.450000;;, - 43;3;-0.309217,-0.000000, 0.450000;;, - 44;3;-0.351785,-0.000000, 0.450000;;, - 45;3;-0.400005,-0.000000, 0.450000;;, - 46;3;-0.448223,-0.000000, 0.450000;;, - 47;3;-0.490788,-0.000000, 0.450000;;, - 48;3;-0.523332,-0.000000, 0.450000;;, - 49;3;-0.543349,-0.000000, 0.450000;;, - 50;3;-0.550000, 0.000000, 0.450000;;, - 51;3;-0.538915, 0.000000, 0.450665;;, - 52;3;-0.505555, 0.000000, 0.452667;;, - 53;3;-0.451317, 0.000000, 0.455921;;, - 54;3;-0.380379, 0.000000, 0.460178;;, - 55;3;-0.300018, 0.000000, 0.465000;;, - 56;3;-0.219653, 0.000000, 0.469822;;, - 57;3;-0.148705, 0.000000, 0.474079;;, - 58;3;-0.094456, 0.000000, 0.477333;;, - 59;3;-0.061088, 0.000000, 0.479335;;, - 60;3;-0.050000, 0.000000, 0.480000;;, - 61;3;-0.050255, 0.000000, 0.479835;;, - 62;3;-0.051081, 0.000000, 0.479335;;, - 63;3;-0.052583, 0.000000, 0.478499;;, - 64;3;-0.054869, 0.000000, 0.477333;;, - 65;3;-0.058060, 0.000000, 0.475851;;, - 66;3;-0.062274, 0.000000, 0.474079;;, - 67;3;-0.067628, 0.000000, 0.472053;;, - 68;3;-0.074226, 0.000000, 0.469822;;, - 69;3;-0.082149, 0.000000, 0.467448;;, - 70;3;-0.091450, 0.000000, 0.465000;;, - 71;3;-0.102149, 0.000000, 0.462552;;, - 72;3;-0.114226, 0.000000, 0.460178;;, - 73;3;-0.127628, 0.000000, 0.457947;;, - 74;3;-0.142274, 0.000000, 0.455921;;, - 75;3;-0.158060, 0.000000, 0.454149;;, - 76;3;-0.174869, 0.000000, 0.452667;;, - 77;3;-0.192583, 0.000000, 0.451501;;, - 78;3;-0.211082, 0.000000, 0.450665;;, - 79;3;-0.230255,-0.000000, 0.450165;;, - 80;3;-0.250000,-0.000000, 0.450000;;, - 81;3;-0.273894,-0.000000, 0.450000;;, - 82;3;-0.305344,-0.000000, 0.450000;;, - 83;3;-0.343336,-0.000000, 0.450000;;, - 84;3;-0.385731,-0.000000, 0.450000;;, - 85;3;-0.429259,-0.000000, 0.450000;;, - 86;3;-0.470015,-0.000000, 0.450000;;, - 87;3;-0.504371,-0.000000, 0.450000;;, - 88;3;-0.529776,-0.000000, 0.450000;;, - 89;3;-0.545022,-0.000000, 0.450000;;, - 90;3;-0.550000, 0.000000, 0.450000;;; - } - } - Animation { - {Armature_Bone_001} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 1;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 2;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 3;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 4;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 5;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 6;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 7;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 8;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 9;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 10;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 11;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 12;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 13;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 14;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 15;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 16;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 17;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 18;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 19;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 20;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 21;4;-0.707085,-0.001645,-0.707085, 0.001645;;, - 22;4;-0.707025,-0.006280,-0.707025, 0.006280;;, - 23;4;-0.706947,-0.012230,-0.706947, 0.012230;;, - 24;4;-0.706886,-0.016865,-0.706886, 0.016865;;, - 25;4;-0.706865,-0.018510,-0.706865, 0.018510;;, - 26;4;-0.706886,-0.017462,-0.706886, 0.017462;;, - 27;4;-0.706947,-0.014250,-0.706947, 0.014249;;, - 28;4;-0.707025,-0.009423,-0.707025, 0.009423;;, - 29;4;-0.707085,-0.004300,-0.707085, 0.004300;;, - 30;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 31;4;-0.707085, 0.004299,-0.707085,-0.004300;;, - 32;4;-0.707025, 0.009423,-0.707025,-0.009423;;, - 33;4;-0.706947, 0.014249,-0.706947,-0.014249;;, - 34;4;-0.706886, 0.017462,-0.706886,-0.017462;;, - 35;4;-0.706865, 0.018510,-0.706865,-0.018510;;, - 36;4;-0.706886, 0.016864,-0.706886,-0.016865;;, - 37;4;-0.706947, 0.012230,-0.706947,-0.012230;;, - 38;4;-0.707025, 0.006280,-0.707025,-0.006280;;, - 39;4;-0.707085, 0.001645,-0.707085,-0.001645;;, - 40;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 41;4;-0.707092, 0.000684,-0.707092, 0.000684;;, - 42;4;-0.707047, 0.002742,-0.707047, 0.002742;;, - 43;4;-0.706974, 0.006088,-0.706974, 0.006088;;, - 44;4;-0.706879, 0.010464,-0.706879, 0.010464;;, - 45;4;-0.706770, 0.015422,-0.706770, 0.015422;;, - 46;4;-0.706662, 0.020379,-0.706662, 0.020380;;, - 47;4;-0.706567, 0.024756,-0.706567, 0.024756;;, - 48;4;-0.706494, 0.028102,-0.706494, 0.028102;;, - 49;4;-0.706449, 0.030160,-0.706449, 0.030160;;, - 50;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 51;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 52;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 53;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 54;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 55;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 56;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 57;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 58;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 59;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 60;4;-0.706434, 0.030843,-0.706434, 0.030844;;, - 61;4;-0.706438, 0.030673,-0.706438, 0.030674;;, - 62;4;-0.706449, 0.030160,-0.706449, 0.030160;;, - 63;4;-0.706468, 0.029301,-0.706468, 0.029301;;, - 64;4;-0.706494, 0.028102,-0.706494, 0.028102;;, - 65;4;-0.706527, 0.026578,-0.706527, 0.026578;;, - 66;4;-0.706567, 0.024756,-0.706567, 0.024756;;, - 67;4;-0.706612, 0.022673,-0.706612, 0.022673;;, - 68;4;-0.706662, 0.020379,-0.706662, 0.020380;;, - 69;4;-0.706716, 0.017939,-0.706716, 0.017939;;, - 70;4;-0.706770, 0.015422,-0.706770, 0.015422;;, - 71;4;-0.706825, 0.012905,-0.706825, 0.012905;;, - 72;4;-0.706879, 0.010464,-0.706879, 0.010464;;, - 73;4;-0.706929, 0.008171,-0.706929, 0.008171;;, - 74;4;-0.706974, 0.006088,-0.706974, 0.006088;;, - 75;4;-0.707014, 0.004265,-0.707014, 0.004265;;, - 76;4;-0.707047, 0.002742,-0.707047, 0.002742;;, - 77;4;-0.707073, 0.001543,-0.707073, 0.001543;;, - 78;4;-0.707092, 0.000684,-0.707092, 0.000684;;, - 79;4;-0.707103, 0.000170,-0.707103, 0.000170;;, - 80;4;-0.707107,-0.000000,-0.707107,-0.000000;;, - 81;4;-0.707092, 0.000684,-0.707092, 0.000684;;, - 82;4;-0.707047, 0.002742,-0.707047, 0.002742;;, - 83;4;-0.706974, 0.006088,-0.706974, 0.006088;;, - 84;4;-0.706879, 0.010464,-0.706879, 0.010464;;, - 85;4;-0.706770, 0.015422,-0.706770, 0.015422;;, - 86;4;-0.706662, 0.020379,-0.706662, 0.020379;;, - 87;4;-0.706567, 0.024756,-0.706567, 0.024756;;, - 88;4;-0.706494, 0.028102,-0.706494, 0.028102;;, - 89;4;-0.706449, 0.030160,-0.706449, 0.030160;;, - 90;4;-0.706434, 0.030843,-0.706434, 0.030844;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.650000, 0.000000;;, - 1;3;-0.000000, 0.650000, 0.000000;;, - 2;3;-0.000000, 0.650000, 0.000000;;, - 3;3;-0.000000, 0.650000, 0.000000;;, - 4;3;-0.000000, 0.650000, 0.000000;;, - 5;3;-0.000000, 0.650000, 0.000000;;, - 6;3;-0.000000, 0.650000, 0.000000;;, - 7;3;-0.000000, 0.650000, 0.000000;;, - 8;3;-0.000000, 0.650000, 0.000000;;, - 9;3;-0.000000, 0.650000, 0.000000;;, - 10;3;-0.000000, 0.650000, 0.000000;;, - 11;3;-0.000000, 0.650000, 0.000000;;, - 12;3;-0.000000, 0.650000, 0.000000;;, - 13;3;-0.000000, 0.650000, 0.000000;;, - 14;3;-0.000000, 0.650000, 0.000000;;, - 15;3;-0.000000, 0.650000, 0.000000;;, - 16;3;-0.000000, 0.650000, 0.000000;;, - 17;3;-0.000000, 0.650000, 0.000000;;, - 18;3;-0.000000, 0.650000, 0.000000;;, - 19;3;-0.000000, 0.650000, 0.000000;;, - 20;3;-0.000000, 0.650000, 0.000000;;, - 21;3;-0.000000, 0.650000, 0.000000;;, - 22;3;-0.000000, 0.650000, 0.000000;;, - 23;3;-0.000000, 0.650000, 0.000000;;, - 24;3;-0.000000, 0.650000, 0.000000;;, - 25;3;-0.000000, 0.650000, 0.000000;;, - 26;3;-0.000000, 0.650000, 0.000000;;, - 27;3;-0.000000, 0.650000, 0.000000;;, - 28;3;-0.000000, 0.650000, 0.000000;;, - 29;3;-0.000000, 0.650000, 0.000000;;, - 30;3;-0.000000, 0.650000, 0.000000;;, - 31;3;-0.000000, 0.650000, 0.000000;;, - 32;3;-0.000000, 0.650000, 0.000000;;, - 33;3;-0.000000, 0.650000, 0.000000;;, - 34;3;-0.000000, 0.650000, 0.000000;;, - 35;3;-0.000000, 0.650000, 0.000000;;, - 36;3;-0.000000, 0.650000, 0.000000;;, - 37;3;-0.000000, 0.650000, 0.000000;;, - 38;3;-0.000000, 0.650000, 0.000000;;, - 39;3;-0.000000, 0.650000, 0.000000;;, - 40;3;-0.000000, 0.650000, 0.000000;;, - 41;3; 0.000000, 0.650000, 0.000000;;, - 42;3; 0.000000, 0.650000, 0.000000;;, - 43;3; 0.000000, 0.650000, 0.000000;;, - 44;3;-0.000000, 0.650000, 0.000000;;, - 45;3;-0.000000, 0.650000, 0.000000;;, - 46;3;-0.000000, 0.650000,-0.000000;;, - 47;3; 0.000000, 0.650000, 0.000000;;, - 48;3; 0.000000, 0.650000,-0.000000;;, - 49;3; 0.000000, 0.650000,-0.000000;;, - 50;3; 0.000000, 0.650000,-0.000000;;, - 51;3; 0.000000, 0.650000,-0.000000;;, - 52;3;-0.000000, 0.650000, 0.000000;;, - 53;3; 0.000000, 0.650000,-0.000000;;, - 54;3;-0.000000, 0.650000,-0.000000;;, - 55;3;-0.000000, 0.650000,-0.000000;;, - 56;3; 0.000000, 0.650000,-0.000000;;, - 57;3; 0.000000, 0.650000,-0.000000;;, - 58;3;-0.000000, 0.650000,-0.000000;;, - 59;3; 0.000000, 0.650000,-0.000000;;, - 60;3;-0.000000, 0.650000,-0.000000;;, - 61;3; 0.000000, 0.650000,-0.000000;;, - 62;3;-0.000000, 0.650000, 0.000000;;, - 63;3; 0.000000, 0.650000,-0.000000;;, - 64;3; 0.000000, 0.650000, 0.000000;;, - 65;3;-0.000000, 0.650000, 0.000000;;, - 66;3;-0.000000, 0.650000,-0.000000;;, - 67;3;-0.000000, 0.650000,-0.000000;;, - 68;3;-0.000000, 0.650000, 0.000000;;, - 69;3;-0.000000, 0.650000,-0.000000;;, - 70;3;-0.000000, 0.650000, 0.000000;;, - 71;3; 0.000000, 0.650000,-0.000000;;, - 72;3;-0.000000, 0.650000,-0.000000;;, - 73;3;-0.000000, 0.650000,-0.000000;;, - 74;3;-0.000000, 0.650000, 0.000000;;, - 75;3; 0.000000, 0.650000, 0.000000;;, - 76;3;-0.000000, 0.650000,-0.000000;;, - 77;3;-0.000000, 0.650000, 0.000000;;, - 78;3; 0.000000, 0.650000,-0.000000;;, - 79;3;-0.000000, 0.650000, 0.000000;;, - 80;3;-0.000000, 0.650000, 0.000000;;, - 81;3;-0.000000, 0.650000, 0.000000;;, - 82;3;-0.000000, 0.650000, 0.000000;;, - 83;3; 0.000000, 0.650000,-0.000000;;, - 84;3;-0.000000, 0.650000, 0.000000;;, - 85;3; 0.000000, 0.650000,-0.000000;;, - 86;3;-0.000000, 0.650000, 0.000000;;, - 87;3;-0.000000, 0.650000,-0.000000;;, - 88;3; 0.000000, 0.650000,-0.000000;;, - 89;3; 0.000000, 0.650000,-0.000000;;, - 90;3; 0.000000, 0.650000,-0.000000;;; - } - } - Animation { - {Armature_Bone_002} - AnimationKey { // Rotation - 0; - 91; - 0;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 1;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 2;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 3;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 4;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 5;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 6;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 7;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 8;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 9;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 10;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 11;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 12;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 13;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 14;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 15;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 16;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 17;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 18;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 19;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 20;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 21;4; 0.001645,-0.707085, 0.001645, 0.707085;;, - 22;4; 0.006280,-0.707025, 0.006280, 0.707025;;, - 23;4; 0.012230,-0.706947, 0.012230, 0.706947;;, - 24;4; 0.016865,-0.706886, 0.016865, 0.706886;;, - 25;4; 0.018510,-0.706864, 0.018510, 0.706865;;, - 26;4; 0.017462,-0.706886, 0.017462, 0.706886;;, - 27;4; 0.014249,-0.706947, 0.014250, 0.706947;;, - 28;4; 0.009423,-0.707025, 0.009423, 0.707025;;, - 29;4; 0.004300,-0.707085, 0.004300, 0.707085;;, - 30;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 31;4;-0.004299,-0.707085,-0.004299, 0.707085;;, - 32;4;-0.009423,-0.707025,-0.009423, 0.707025;;, - 33;4;-0.014249,-0.706947,-0.014249, 0.706947;;, - 34;4;-0.017462,-0.706886,-0.017462, 0.706886;;, - 35;4;-0.018510,-0.706864,-0.018510, 0.706865;;, - 36;4;-0.016865,-0.706886,-0.016864, 0.706886;;, - 37;4;-0.012230,-0.706947,-0.012230, 0.706947;;, - 38;4;-0.006280,-0.707025,-0.006280, 0.707025;;, - 39;4;-0.001645,-0.707085,-0.001645, 0.707085;;, - 40;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 41;4; 0.001366,-0.707047,-0.001366, 0.707047;;, - 42;4; 0.005478,-0.706868,-0.005478, 0.706868;;, - 43;4; 0.012164,-0.706576,-0.012164, 0.706576;;, - 44;4; 0.020908,-0.706194,-0.020908, 0.706194;;, - 45;4; 0.030814,-0.705761,-0.030814, 0.705762;;, - 46;4; 0.040720,-0.705329,-0.040720, 0.705329;;, - 47;4; 0.049465,-0.704947,-0.049465, 0.704947;;, - 48;4; 0.056150,-0.704655,-0.056150, 0.704655;;, - 49;4; 0.060262,-0.704476,-0.060262, 0.704476;;, - 50;4; 0.061628,-0.704416,-0.061628, 0.704416;;, - 51;4; 0.060262,-0.704476,-0.060262, 0.704476;;, - 52;4; 0.056150,-0.704655,-0.056150, 0.704655;;, - 53;4; 0.049465,-0.704947,-0.049465, 0.704947;;, - 54;4; 0.040720,-0.705329,-0.040720, 0.705329;;, - 55;4; 0.030814,-0.705761,-0.030814, 0.705762;;, - 56;4; 0.020908,-0.706194,-0.020908, 0.706194;;, - 57;4; 0.012164,-0.706576,-0.012164, 0.706576;;, - 58;4; 0.005478,-0.706868,-0.005478, 0.706868;;, - 59;4; 0.001366,-0.707047,-0.001366, 0.707047;;, - 60;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 61;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 62;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 63;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 64;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 65;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 66;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 67;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 68;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 69;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 70;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 71;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 72;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 73;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 74;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 75;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 76;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 77;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 78;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 79;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 80;4; 0.000000,-0.707107, 0.000000, 0.707107;;, - 81;4; 0.001366,-0.707047,-0.001366, 0.707047;;, - 82;4; 0.005478,-0.706868,-0.005478, 0.706868;;, - 83;4; 0.012164,-0.706576,-0.012164, 0.706576;;, - 84;4; 0.020908,-0.706194,-0.020908, 0.706194;;, - 85;4; 0.030814,-0.705761,-0.030814, 0.705762;;, - 86;4; 0.040720,-0.705329,-0.040720, 0.705329;;, - 87;4; 0.049464,-0.704947,-0.049464, 0.704947;;, - 88;4; 0.056150,-0.704655,-0.056150, 0.704655;;, - 89;4; 0.060262,-0.704476,-0.060262, 0.704476;;, - 90;4; 0.061628,-0.704416,-0.061628, 0.704416;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.104742,-0.000000;;, - 1;3;-0.000000, 0.104742,-0.000000;;, - 2;3;-0.000000, 0.104742,-0.000000;;, - 3;3;-0.000000, 0.104742,-0.000000;;, - 4;3;-0.000000, 0.104742,-0.000000;;, - 5;3;-0.000000, 0.104742,-0.000000;;, - 6;3;-0.000000, 0.104742,-0.000000;;, - 7;3;-0.000000, 0.104742,-0.000000;;, - 8;3;-0.000000, 0.104742,-0.000000;;, - 9;3;-0.000000, 0.104742,-0.000000;;, - 10;3;-0.000000, 0.104742,-0.000000;;, - 11;3;-0.000000, 0.104742,-0.000000;;, - 12;3;-0.000000, 0.104742,-0.000000;;, - 13;3;-0.000000, 0.104742,-0.000000;;, - 14;3;-0.000000, 0.104742,-0.000000;;, - 15;3;-0.000000, 0.104742,-0.000000;;, - 16;3;-0.000000, 0.104742,-0.000000;;, - 17;3;-0.000000, 0.104742,-0.000000;;, - 18;3;-0.000000, 0.104742,-0.000000;;, - 19;3;-0.000000, 0.104742,-0.000000;;, - 20;3;-0.000000, 0.104742,-0.000000;;, - 21;3;-0.000000, 0.104742,-0.000000;;, - 22;3;-0.000000, 0.104742,-0.000000;;, - 23;3;-0.000000, 0.104742,-0.000000;;, - 24;3;-0.000000, 0.104742,-0.000000;;, - 25;3;-0.000000, 0.104742,-0.000000;;, - 26;3;-0.000000, 0.104742,-0.000000;;, - 27;3;-0.000000, 0.104742,-0.000000;;, - 28;3;-0.000000, 0.104742,-0.000000;;, - 29;3;-0.000000, 0.104742,-0.000000;;, - 30;3;-0.000000, 0.104742,-0.000000;;, - 31;3;-0.000000, 0.104742,-0.000000;;, - 32;3;-0.000000, 0.104742,-0.000000;;, - 33;3;-0.000000, 0.104742,-0.000000;;, - 34;3;-0.000000, 0.104742,-0.000000;;, - 35;3;-0.000000, 0.104742,-0.000000;;, - 36;3;-0.000000, 0.104742,-0.000000;;, - 37;3;-0.000000, 0.104742,-0.000000;;, - 38;3;-0.000000, 0.104742,-0.000000;;, - 39;3;-0.000000, 0.104742,-0.000000;;, - 40;3;-0.000000, 0.104742,-0.000000;;, - 41;3;-0.000000, 0.104742,-0.000000;;, - 42;3;-0.000000, 0.104742,-0.000000;;, - 43;3;-0.000000, 0.104742,-0.000000;;, - 44;3;-0.000000, 0.104742, 0.000000;;, - 45;3;-0.000000, 0.104742, 0.000000;;, - 46;3;-0.000000, 0.104742, 0.000000;;, - 47;3;-0.000000, 0.104742,-0.000000;;, - 48;3;-0.000000, 0.104742,-0.000000;;, - 49;3;-0.000000, 0.104742,-0.000000;;, - 50;3;-0.000000, 0.104742,-0.000000;;, - 51;3;-0.000000, 0.104742,-0.000000;;, - 52;3;-0.000000, 0.104742,-0.000000;;, - 53;3;-0.000000, 0.104742,-0.000000;;, - 54;3;-0.000000, 0.104742,-0.000000;;, - 55;3;-0.000000, 0.104742,-0.000000;;, - 56;3;-0.000000, 0.104742,-0.000000;;, - 57;3;-0.000000, 0.104742, 0.000000;;, - 58;3;-0.000000, 0.104742,-0.000000;;, - 59;3;-0.000000, 0.104742,-0.000000;;, - 60;3;-0.000000, 0.104742,-0.000000;;, - 61;3;-0.000000, 0.104742,-0.000000;;, - 62;3;-0.000000, 0.104742, 0.000000;;, - 63;3;-0.000000, 0.104742,-0.000000;;, - 64;3;-0.000000, 0.104742,-0.000000;;, - 65;3;-0.000000, 0.104742,-0.000000;;, - 66;3;-0.000000, 0.104742,-0.000000;;, - 67;3;-0.000000, 0.104742, 0.000000;;, - 68;3;-0.000000, 0.104742,-0.000000;;, - 69;3;-0.000000, 0.104742,-0.000000;;, - 70;3;-0.000000, 0.104742,-0.000000;;, - 71;3;-0.000000, 0.104742,-0.000000;;, - 72;3;-0.000000, 0.104742,-0.000000;;, - 73;3;-0.000000, 0.104742,-0.000000;;, - 74;3;-0.000000, 0.104742,-0.000000;;, - 75;3;-0.000000, 0.104742, 0.000000;;, - 76;3;-0.000000, 0.104742,-0.000000;;, - 77;3;-0.000000, 0.104742, 0.000000;;, - 78;3;-0.000000, 0.104742,-0.000000;;, - 79;3;-0.000000, 0.104742,-0.000000;;, - 80;3;-0.000000, 0.104742,-0.000000;;, - 81;3;-0.000000, 0.104742,-0.000000;;, - 82;3;-0.000000, 0.104742,-0.000000;;, - 83;3;-0.000000, 0.104742,-0.000000;;, - 84;3;-0.000000, 0.104742,-0.000000;;, - 85;3;-0.000000, 0.104742,-0.000000;;, - 86;3;-0.000000, 0.104742,-0.000000;;, - 87;3;-0.000000, 0.104742,-0.000000;;, - 88;3;-0.000000, 0.104742,-0.000000;;, - 89;3;-0.000000, 0.104742,-0.000000;;, - 90;3;-0.000000, 0.104742,-0.000000;;; - } - } - Animation { - {Armature_Bone_003} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.521372,-0.373562,-0.717607, 0.271409;;, - 1;4;-0.521372,-0.373562,-0.717607, 0.271409;;, - 2;4;-0.521720,-0.372975,-0.717828, 0.270623;;, - 3;4;-0.522772,-0.371198,-0.718497, 0.268245;;, - 4;4;-0.524529,-0.368229,-0.719615, 0.264272;;, - 5;4;-0.526978,-0.364092,-0.721173, 0.258737;;, - 6;4;-0.530082,-0.358848,-0.723148, 0.251720;;, - 7;4;-0.533779,-0.352602,-0.725500, 0.243363;;, - 8;4;-0.537979,-0.345506,-0.728172, 0.233868;;, - 9;4;-0.542564,-0.337759,-0.731089, 0.223503;;, - 10;4;-0.547392,-0.329604,-0.734159, 0.212591;;, - 11;4;-0.552301,-0.321309,-0.737283, 0.201492;;, - 12;4;-0.557128,-0.313154,-0.740354, 0.190580;;, - 13;4;-0.561713,-0.305408,-0.743270, 0.180215;;, - 14;4;-0.565913,-0.298312,-0.745942, 0.170720;;, - 15;4;-0.569610,-0.292066,-0.748294, 0.162363;;, - 16;4;-0.572714,-0.286823,-0.750268, 0.155347;;, - 17;4;-0.575163,-0.282686,-0.751826, 0.149811;;, - 18;4;-0.576920,-0.279716,-0.752944, 0.145838;;, - 19;4;-0.577972,-0.277940,-0.753613, 0.143461;;, - 20;4;-0.578320,-0.277352,-0.753834, 0.142675;;, - 21;4;-0.576627,-0.280156,-0.752890, 0.146237;;, - 22;4;-0.571448,-0.288742,-0.749983, 0.157172;;, - 23;4;-0.563701,-0.301608,-0.745583, 0.173632;;, - 24;4;-0.555528,-0.315215,-0.740860, 0.191158;;, - 25;4;-0.548739,-0.326564,-0.736827, 0.205935;;, - 26;4;-0.541934,-0.337929,-0.732811, 0.220696;;, - 27;4;-0.533807,-0.351491,-0.728041, 0.238268;;, - 28;4;-0.526369,-0.364047,-0.723332, 0.255037;;, - 29;4;-0.521920,-0.371903,-0.719696, 0.266701;;, - 30;4;-0.521372,-0.373562,-0.717607, 0.271409;;, - 31;4;-0.532218,-0.367504,-0.710577, 0.272070;;, - 32;4;-0.560598,-0.352141,-0.693602, 0.270643;;, - 33;4;-0.597293,-0.330912,-0.673316, 0.266052;;, - 34;4;-0.627395,-0.310427,-0.659430, 0.258134;;, - 35;4;-0.641170,-0.295651,-0.657655, 0.247754;;, - 36;4;-0.639448,-0.286484,-0.669021, 0.229826;;, - 37;4;-0.625575,-0.281662,-0.692470, 0.200783;;, - 38;4;-0.604942,-0.280181,-0.720988, 0.169433;;, - 39;4;-0.586986,-0.279490,-0.743709, 0.147873;;, - 40;4;-0.578320,-0.277352,-0.753834, 0.142675;;, - 41;4;-0.574801,-0.274652,-0.756772, 0.147268;;, - 42;4;-0.570734,-0.273188,-0.759001, 0.154621;;, - 43;4;-0.566146,-0.273163,-0.760382, 0.164665;;, - 44;4;-0.561133,-0.274717,-0.760810, 0.177022;;, - 45;4;-0.555865,-0.277866,-0.760245, 0.190947;;, - 46;4;-0.550567,-0.282455,-0.758748, 0.205409;;, - 47;4;-0.545468,-0.288185,-0.756475, 0.219327;;, - 48;4;-0.540745,-0.294692,-0.753632, 0.231814;;, - 49;4;-0.536503,-0.301636,-0.750423, 0.242310;;, - 50;4;-0.532782,-0.308746,-0.747016, 0.250572;;, - 51;4;-0.528397,-0.317047,-0.743526, 0.257785;;, - 52;4;-0.522205,-0.327623,-0.740018, 0.265075;;, - 53;4;-0.514426,-0.340152,-0.736573, 0.272232;;, - 54;4;-0.505542,-0.353969,-0.733301, 0.278967;;, - 55;4;-0.496301,-0.368064,-0.730328, 0.284949;;, - 56;4;-0.487609,-0.381238,-0.727769, 0.289874;;, - 57;4;-0.480314,-0.392384,-0.725694, 0.293546;;, - 58;4;-0.475022,-0.400732,-0.724122, 0.295908;;, - 59;4;-0.472031,-0.405927,-0.723024, 0.297027;;, - 60;4;-0.471380,-0.407950,-0.722347, 0.297040;;, - 61;4;-0.472005,-0.408360,-0.721822, 0.296528;;, - 62;4;-0.472912,-0.408603,-0.721227, 0.295965;;, - 63;4;-0.474113,-0.408659,-0.720567, 0.295341;;, - 64;4;-0.475616,-0.408507,-0.719854, 0.294648;;, - 65;4;-0.477422,-0.408126,-0.719101, 0.293879;;, - 66;4;-0.479526,-0.407496,-0.718327, 0.293025;;, - 67;4;-0.481916,-0.406601,-0.717553, 0.292077;;, - 68;4;-0.484568,-0.405429,-0.716805, 0.291031;;, - 69;4;-0.487450,-0.403974,-0.716108, 0.289880;;, - 70;4;-0.490519,-0.402236,-0.715492, 0.288624;;, - 71;4;-0.493728,-0.400223,-0.714982, 0.287263;;, - 72;4;-0.497026,-0.397953,-0.714604, 0.285801;;, - 73;4;-0.500359,-0.395447,-0.714376, 0.284242;;, - 74;4;-0.503678,-0.392730,-0.714315, 0.282597;;, - 75;4;-0.506940,-0.389831,-0.714427, 0.280873;;, - 76;4;-0.510109,-0.386780,-0.714718, 0.279080;;, - 77;4;-0.513155,-0.383603,-0.715187, 0.277228;;, - 78;4;-0.516056,-0.380326,-0.715829, 0.275327;;, - 79;4;-0.518798,-0.376973,-0.716639, 0.273385;;, - 80;4;-0.521372,-0.373562,-0.717607, 0.271409;;, - 81;4;-0.523770,-0.369166,-0.719159, 0.269231;;, - 82;4;-0.525953,-0.362878,-0.721719, 0.266703;;, - 83;4;-0.527869,-0.354911,-0.725194, 0.263900;;, - 84;4;-0.529468,-0.345742,-0.729358, 0.260960;;, - 85;4;-0.530719,-0.336128,-0.733840, 0.258077;;, - 86;4;-0.531625,-0.326991,-0.738178, 0.255470;;, - 87;4;-0.532222,-0.319204,-0.741922, 0.253331;;, - 88;4;-0.532571,-0.313399,-0.744739, 0.251782;;, - 89;4;-0.532738,-0.309895,-0.746451, 0.250867;;, - 90;4;-0.532782,-0.308746,-0.747016, 0.250572;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.530000,-0.350000;;, - 1;3;-0.000000, 0.530000,-0.350000;;, - 2;3;-0.000000, 0.530000,-0.350000;;, - 3;3;-0.000000, 0.530000,-0.350000;;, - 4;3;-0.000000, 0.530000,-0.350000;;, - 5;3;-0.000000, 0.530000,-0.350000;;, - 6;3;-0.000000, 0.530000,-0.350000;;, - 7;3;-0.000000, 0.530000,-0.350000;;, - 8;3;-0.000000, 0.530000,-0.350000;;, - 9;3;-0.000000, 0.530000,-0.350000;;, - 10;3;-0.000000, 0.530000,-0.350000;;, - 11;3;-0.000000, 0.530000,-0.350000;;, - 12;3;-0.000000, 0.530000,-0.350000;;, - 13;3;-0.000000, 0.530000,-0.350000;;, - 14;3;-0.000000, 0.530000,-0.350000;;, - 15;3;-0.000000, 0.530000,-0.350000;;, - 16;3;-0.000000, 0.530000,-0.350000;;, - 17;3;-0.000000, 0.530000,-0.350000;;, - 18;3;-0.000000, 0.530000,-0.350000;;, - 19;3;-0.000000, 0.530000,-0.350000;;, - 20;3;-0.000000, 0.530000,-0.350000;;, - 21;3;-0.000000, 0.530000,-0.350000;;, - 22;3;-0.000000, 0.530000,-0.350000;;, - 23;3;-0.000000, 0.530000,-0.350000;;, - 24;3;-0.000000, 0.530000,-0.350000;;, - 25;3;-0.000000, 0.530000,-0.350000;;, - 26;3;-0.000000, 0.530000,-0.350000;;, - 27;3;-0.000000, 0.530000,-0.350000;;, - 28;3;-0.000000, 0.530000,-0.350000;;, - 29;3;-0.000000, 0.530000,-0.350000;;, - 30;3;-0.000000, 0.530000,-0.350000;;, - 31;3;-0.000000, 0.530000,-0.350000;;, - 32;3;-0.000000, 0.530000,-0.350000;;, - 33;3;-0.000000, 0.530000,-0.350000;;, - 34;3;-0.000000, 0.530000,-0.350000;;, - 35;3;-0.000000, 0.530000,-0.350000;;, - 36;3;-0.000000, 0.530000,-0.350000;;, - 37;3;-0.000000, 0.530000,-0.350000;;, - 38;3;-0.000000, 0.530000,-0.350000;;, - 39;3;-0.000000, 0.530000,-0.350000;;, - 40;3;-0.000000, 0.530000,-0.350000;;, - 41;3;-0.000237, 0.529993,-0.350000;;, - 42;3;-0.000949, 0.529973,-0.350000;;, - 43;3;-0.002107, 0.529938,-0.350000;;, - 44;3;-0.003622, 0.529889,-0.350000;;, - 45;3;-0.005338, 0.529831,-0.350000;;, - 46;3;-0.007054, 0.529766,-0.350000;;, - 47;3;-0.008569, 0.529700,-0.350000;;, - 48;3;-0.009728, 0.529638,-0.350000;;, - 49;3;-0.010440, 0.529582,-0.350000;;, - 50;3;-0.010677, 0.529534,-0.350000;;, - 51;3;-0.010475, 0.529488,-0.350300;;, - 52;3;-0.009864, 0.529436,-0.351204;;, - 53;3;-0.008868, 0.529381,-0.352674;;, - 54;3;-0.007558, 0.529324,-0.354597;;, - 55;3;-0.006060, 0.529270,-0.356775;;, - 56;3;-0.004545, 0.529222,-0.358953;;, - 57;3;-0.003180, 0.529183,-0.360876;;, - 58;3;-0.002099, 0.529155,-0.362346;;, - 59;3;-0.001380, 0.529138,-0.363250;;, - 60;3;-0.001050, 0.529133,-0.363550;;, - 61;3;-0.000919, 0.529138,-0.363476;;, - 62;3;-0.000795, 0.529152,-0.363250;;, - 63;3;-0.000679, 0.529176,-0.362872;;, - 64;3;-0.000571, 0.529210,-0.362346;;, - 65;3;-0.000473, 0.529253,-0.361676;;, - 66;3;-0.000384, 0.529304,-0.360876;;, - 67;3;-0.000305, 0.529363,-0.359961;;, - 68;3;-0.000237, 0.529427,-0.358953;;, - 69;3;-0.000179, 0.529496,-0.357881;;, - 70;3;-0.000131, 0.529566,-0.356775;;, - 71;3;-0.000093, 0.529637,-0.355669;;, - 72;3;-0.000063, 0.529706,-0.354597;;, - 73;3;-0.000040, 0.529770,-0.353590;;, - 74;3;-0.000024, 0.529829,-0.352674;;, - 75;3;-0.000013, 0.529880,-0.351874;;, - 76;3;-0.000007, 0.529923,-0.351204;;, - 77;3;-0.000003, 0.529957,-0.350678;;, - 78;3;-0.000001, 0.529981,-0.350300;;, - 79;3;-0.000000, 0.529995,-0.350075;;, - 80;3;-0.000000, 0.530000,-0.350000;;, - 81;3;-0.000237, 0.529990,-0.350000;;, - 82;3;-0.000949, 0.529959,-0.350000;;, - 83;3;-0.002107, 0.529908,-0.350000;;, - 84;3;-0.003622, 0.529842,-0.350000;;, - 85;3;-0.005338, 0.529767,-0.350000;;, - 86;3;-0.007054, 0.529692,-0.350000;;, - 87;3;-0.008569, 0.529626,-0.350000;;, - 88;3;-0.009728, 0.529575,-0.350000;;, - 89;3;-0.010440, 0.529544,-0.350000;;, - 90;3;-0.010677, 0.529534,-0.350000;;; - } - } - Animation { - {Armature_Bone_004} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 1;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 2;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 3;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 4;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 5;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 6;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 7;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 8;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 9;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 10;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 11;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 12;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 13;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 14;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 15;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 16;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 17;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 18;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 19;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 20;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 21;4;-0.711526, 0.271122,-0.531270,-0.368452;;, - 22;4;-0.694726, 0.269518,-0.559476,-0.353263;;, - 23;4;-0.674039, 0.265328,-0.596574,-0.331632;;, - 24;4;-0.659646, 0.257918,-0.627184,-0.310638;;, - 25;4;-0.657658, 0.247750,-0.641173,-0.295648;;, - 26;4;-0.669148, 0.229947,-0.639326,-0.286357;;, - 27;4;-0.692894, 0.201204,-0.625155,-0.281238;;, - 28;4;-0.721647, 0.170090,-0.604285,-0.279522;;, - 29;4;-0.744265, 0.148428,-0.586431,-0.278935;;, - 30;4;-0.753835, 0.142675,-0.578320,-0.277352;;, - 31;4;-0.754582, 0.148090,-0.574936,-0.278303;;, - 32;4;-0.751765, 0.159588,-0.569668,-0.286325;;, - 33;4;-0.746292, 0.175619,-0.562995,-0.299617;;, - 34;4;-0.740329, 0.192487,-0.556063,-0.313882;;, - 35;4;-0.735723, 0.207039,-0.549848,-0.325455;;, - 36;4;-0.731359, 0.221682,-0.543390,-0.336938;;, - 37;4;-0.725972, 0.238766,-0.535879,-0.350989;;, - 38;4;-0.720955, 0.254969,-0.528748,-0.364113;;, - 39;4;-0.717939, 0.266394,-0.523678,-0.372210;;, - 40;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 41;4;-0.719093, 0.272596,-0.520790,-0.370477;;, - 42;4;-0.721609, 0.272299,-0.520998,-0.365059;;, - 43;4;-0.725063, 0.270560,-0.521972,-0.357506;;, - 44;4;-0.729228, 0.267588,-0.523599,-0.348325;;, - 45;4;-0.733729, 0.263791,-0.525660,-0.338354;;, - 46;4;-0.738095, 0.259728,-0.527855,-0.328649;;, - 47;4;-0.741870, 0.255986,-0.529872,-0.320238;;, - 48;4;-0.744714, 0.253042,-0.531456,-0.313890;;, - 49;4;-0.746445, 0.251194,-0.532448,-0.310023;;, - 50;4;-0.747016, 0.250572,-0.532782,-0.308746;;, - 51;4;-0.746510, 0.251643,-0.531380,-0.310905;;, - 52;4;-0.744981, 0.254860,-0.527167,-0.317407;;, - 53;4;-0.742479, 0.260075,-0.520332,-0.327995;;, - 54;4;-0.739178, 0.266868,-0.511419,-0.341870;;, - 55;4;-0.735395, 0.274519,-0.501368,-0.357634;;, - 56;4;-0.731544, 0.282102,-0.491384,-0.373466;;, - 57;4;-0.728048, 0.288700,-0.482667,-0.387538;;, - 58;4;-0.725239, 0.293608,-0.476139,-0.398433;;, - 59;4;-0.723314, 0.296429,-0.472321,-0.405330;;, - 60;4;-0.722347, 0.297039,-0.471380,-0.407950;;, - 61;4;-0.721823, 0.296528,-0.472004,-0.408360;;, - 62;4;-0.721227, 0.295965,-0.472912,-0.408603;;, - 63;4;-0.720567, 0.295341,-0.474113,-0.408659;;, - 64;4;-0.719854, 0.294648,-0.475615,-0.408507;;, - 65;4;-0.719101, 0.293879,-0.477422,-0.408126;;, - 66;4;-0.718327, 0.293024,-0.479526,-0.407496;;, - 67;4;-0.717553, 0.292077,-0.481916,-0.406602;;, - 68;4;-0.716805, 0.291030,-0.484568,-0.405429;;, - 69;4;-0.716108, 0.289880,-0.487450,-0.403974;;, - 70;4;-0.715492, 0.288624,-0.490519,-0.402236;;, - 71;4;-0.714982, 0.287263,-0.493728,-0.400224;;, - 72;4;-0.714604, 0.285800,-0.497025,-0.397953;;, - 73;4;-0.714377, 0.284242,-0.500358,-0.395447;;, - 74;4;-0.714315, 0.282597,-0.503678,-0.392730;;, - 75;4;-0.714427, 0.280872,-0.506940,-0.389831;;, - 76;4;-0.714718, 0.279080,-0.510109,-0.386780;;, - 77;4;-0.715187, 0.277228,-0.513155,-0.383603;;, - 78;4;-0.715829, 0.275327,-0.516056,-0.380326;;, - 79;4;-0.716639, 0.273385,-0.518798,-0.376973;;, - 80;4;-0.717607, 0.271409,-0.521372,-0.373563;;, - 81;4;-0.719159, 0.269231,-0.523770,-0.369166;;, - 82;4;-0.721719, 0.266703,-0.525953,-0.362878;;, - 83;4;-0.725194, 0.263900,-0.527869,-0.354911;;, - 84;4;-0.729358, 0.260960,-0.529468,-0.345742;;, - 85;4;-0.733841, 0.258077,-0.530719,-0.336128;;, - 86;4;-0.738178, 0.255470,-0.531625,-0.326991;;, - 87;4;-0.741922, 0.253331,-0.532222,-0.319204;;, - 88;4;-0.744739, 0.251782,-0.532571,-0.313400;;, - 89;4;-0.746452, 0.250867,-0.532738,-0.309896;;, - 90;4;-0.747016, 0.250572,-0.532782,-0.308746;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.530000, 0.350000;;, - 1;3;-0.000000, 0.530000, 0.350000;;, - 2;3;-0.000000, 0.530000, 0.350000;;, - 3;3;-0.000000, 0.530000, 0.350000;;, - 4;3;-0.000000, 0.530000, 0.350000;;, - 5;3;-0.000000, 0.530000, 0.350000;;, - 6;3;-0.000000, 0.530000, 0.350000;;, - 7;3;-0.000000, 0.530000, 0.350000;;, - 8;3;-0.000000, 0.530000, 0.350000;;, - 9;3;-0.000000, 0.530000, 0.350000;;, - 10;3;-0.000000, 0.530000, 0.350000;;, - 11;3;-0.000000, 0.530000, 0.350000;;, - 12;3;-0.000000, 0.530000, 0.350000;;, - 13;3;-0.000000, 0.530000, 0.350000;;, - 14;3;-0.000000, 0.530000, 0.350000;;, - 15;3;-0.000000, 0.530000, 0.350000;;, - 16;3;-0.000000, 0.530000, 0.350000;;, - 17;3;-0.000000, 0.530000, 0.350000;;, - 18;3;-0.000000, 0.530000, 0.350000;;, - 19;3;-0.000000, 0.530000, 0.350000;;, - 20;3;-0.000000, 0.530000, 0.350000;;, - 21;3;-0.000000, 0.530000, 0.350000;;, - 22;3;-0.000000, 0.530000, 0.350000;;, - 23;3;-0.000000, 0.530000, 0.350000;;, - 24;3;-0.000000, 0.530000, 0.350000;;, - 25;3;-0.000000, 0.530000, 0.350000;;, - 26;3;-0.000000, 0.530000, 0.350000;;, - 27;3;-0.000000, 0.530000, 0.350000;;, - 28;3;-0.000000, 0.530000, 0.350000;;, - 29;3;-0.000000, 0.530000, 0.350000;;, - 30;3;-0.000000, 0.530000, 0.350000;;, - 31;3;-0.000000, 0.530000, 0.350000;;, - 32;3;-0.000000, 0.530000, 0.350000;;, - 33;3;-0.000000, 0.530000, 0.350000;;, - 34;3;-0.000000, 0.530000, 0.350000;;, - 35;3;-0.000000, 0.530000, 0.350000;;, - 36;3;-0.000000, 0.530000, 0.350000;;, - 37;3;-0.000000, 0.530000, 0.350000;;, - 38;3;-0.000000, 0.530000, 0.350000;;, - 39;3;-0.000000, 0.530000, 0.350000;;, - 40;3;-0.000000, 0.530000, 0.350000;;, - 41;3;-0.000237, 0.529993, 0.350000;;, - 42;3;-0.000949, 0.529972, 0.350000;;, - 43;3;-0.002107, 0.529937, 0.350000;;, - 44;3;-0.003622, 0.529889, 0.350000;;, - 45;3;-0.005338, 0.529830, 0.350000;;, - 46;3;-0.007054, 0.529766, 0.350000;;, - 47;3;-0.008569, 0.529700, 0.350000;;, - 48;3;-0.009727, 0.529637, 0.350000;;, - 49;3;-0.010440, 0.529581, 0.350000;;, - 50;3;-0.010677, 0.529534, 0.350000;;, - 51;3;-0.010474, 0.529487, 0.350300;;, - 52;3;-0.009864, 0.529436, 0.351204;;, - 53;3;-0.008868, 0.529381, 0.352674;;, - 54;3;-0.007557, 0.529324, 0.354597;;, - 55;3;-0.006060, 0.529270, 0.356775;;, - 56;3;-0.004545, 0.529221, 0.358953;;, - 57;3;-0.003180, 0.529183, 0.360876;;, - 58;3;-0.002099, 0.529154, 0.362346;;, - 59;3;-0.001380, 0.529138, 0.363250;;, - 60;3;-0.001050, 0.529133, 0.363550;;, - 61;3;-0.000919, 0.529138, 0.363476;;, - 62;3;-0.000795, 0.529152, 0.363250;;, - 63;3;-0.000679, 0.529176, 0.362872;;, - 64;3;-0.000571, 0.529210, 0.362346;;, - 65;3;-0.000473, 0.529253, 0.361676;;, - 66;3;-0.000384, 0.529304, 0.360876;;, - 67;3;-0.000305, 0.529363, 0.359961;;, - 68;3;-0.000237, 0.529427, 0.358953;;, - 69;3;-0.000179, 0.529496, 0.357881;;, - 70;3;-0.000131, 0.529566, 0.356775;;, - 71;3;-0.000093, 0.529637, 0.355669;;, - 72;3;-0.000063, 0.529706, 0.354597;;, - 73;3;-0.000040, 0.529770, 0.353590;;, - 74;3;-0.000024, 0.529829, 0.352674;;, - 75;3;-0.000013, 0.529880, 0.351874;;, - 76;3;-0.000007, 0.529923, 0.351204;;, - 77;3;-0.000003, 0.529957, 0.350678;;, - 78;3;-0.000001, 0.529981, 0.350300;;, - 79;3;-0.000000, 0.529995, 0.350075;;, - 80;3;-0.000000, 0.530000, 0.350000;;, - 81;3;-0.000237, 0.529990, 0.350000;;, - 82;3;-0.000949, 0.529959, 0.350000;;, - 83;3;-0.002107, 0.529908, 0.350000;;, - 84;3;-0.003622, 0.529842, 0.350000;;, - 85;3;-0.005338, 0.529767, 0.350000;;, - 86;3;-0.007054, 0.529692, 0.350000;;, - 87;3;-0.008569, 0.529626, 0.350000;;, - 88;3;-0.009728, 0.529575, 0.350000;;, - 89;3;-0.010440, 0.529544, 0.350000;;, - 90;3;-0.010677, 0.529534, 0.350000;;; - } - } - Animation { - {Armature_Bone_005} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 1;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 2;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 3;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 4;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 5;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 6;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 7;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 8;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 9;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 10;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 11;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 12;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 13;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 14;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 15;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 16;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 17;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 18;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 19;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 20;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 21;4;-0.458165,-0.529128,-0.580253, 0.413424;;, - 22;4;-0.485022,-0.509173,-0.567658, 0.418827;;, - 23;4;-0.520997,-0.481797,-0.552980, 0.424009;;, - 24;4;-0.551918,-0.457063,-0.544453, 0.424631;;, - 25;4;-0.568174,-0.442078,-0.546703, 0.418648;;, - 26;4;-0.571035,-0.436250,-0.561149, 0.401655;;, - 27;4;-0.564162,-0.437257,-0.587043, 0.371317;;, - 28;4;-0.551425,-0.442800,-0.616746, 0.336882;;, - 29;4;-0.539986,-0.448221,-0.639074, 0.311690;;, - 30;4;-0.535080,-0.449901,-0.647452, 0.303455;;, - 31;4;-0.531946,-0.451827,-0.646375, 0.307016;;, - 32;4;-0.524334,-0.459202,-0.641077, 0.316466;;, - 33;4;-0.513384,-0.470639,-0.632633, 0.330305;;, - 34;4;-0.501818,-0.482826,-0.623608, 0.344954;;, - 35;4;-0.491956,-0.492938,-0.616190, 0.357361;;, - 36;4;-0.482171,-0.503169,-0.608694, 0.369650;;, - 37;4;-0.470787,-0.515639,-0.599484, 0.384019;;, - 38;4;-0.459980,-0.527301,-0.590892, 0.397638;;, - 39;4;-0.452303,-0.534580,-0.585656, 0.407186;;, - 40;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 41;4;-0.447915,-0.533507,-0.587177, 0.412167;;, - 42;4;-0.448096,-0.528982,-0.591044, 0.411934;;, - 43;4;-0.449338,-0.522574,-0.596382, 0.410607;;, - 44;4;-0.451489,-0.514719,-0.602837, 0.408344;;, - 45;4;-0.454251,-0.506145,-0.609825, 0.405456;;, - 46;4;-0.457213,-0.497772,-0.616612, 0.402367;;, - 47;4;-0.459946,-0.490498,-0.622486, 0.399523;;, - 48;4;-0.462097,-0.484999,-0.626914, 0.397286;;, - 49;4;-0.463449,-0.481645,-0.629610, 0.395882;;, - 50;4;-0.463904,-0.480537,-0.630499, 0.395409;;, - 51;4;-0.462538,-0.482319,-0.629304, 0.396271;;, - 52;4;-0.458438,-0.487692,-0.625698, 0.398855;;, - 53;4;-0.451796,-0.496454,-0.619816, 0.403038;;, - 54;4;-0.443156,-0.507961,-0.612087, 0.408474;;, - 55;4;-0.433443,-0.521071,-0.603275, 0.414574;;, - 56;4;-0.423843,-0.534294,-0.594377, 0.420589;;, - 57;4;-0.415531,-0.546129,-0.586399, 0.425776;;, - 58;4;-0.409404,-0.555405,-0.580127, 0.429570;;, - 59;4;-0.405965,-0.561440,-0.576020, 0.431653;;, - 60;4;-0.405371,-0.563994,-0.574240, 0.431930;;, - 61;4;-0.406259,-0.564713,-0.573641, 0.431321;;, - 62;4;-0.407297,-0.565226,-0.573088, 0.430729;;, - 63;4;-0.408494,-0.565514,-0.572593, 0.430147;;, - 64;4;-0.409860,-0.565560,-0.572172, 0.429565;;, - 65;4;-0.411400,-0.565347,-0.571841, 0.428976;;, - 66;4;-0.413120,-0.564864,-0.571616, 0.428366;;, - 67;4;-0.415018,-0.564102,-0.571516, 0.427721;;, - 68;4;-0.417090,-0.563058,-0.571558, 0.427028;;, - 69;4;-0.419326,-0.561739,-0.571757, 0.426271;;, - 70;4;-0.421710,-0.560156,-0.572126, 0.425436;;, - 71;4;-0.424223,-0.558330,-0.572673, 0.424509;;, - 72;4;-0.426842,-0.556289,-0.573401, 0.423480;;, - 73;4;-0.429540,-0.554063,-0.574310, 0.422342;;, - 74;4;-0.432294,-0.551687,-0.575393, 0.421089;;, - 75;4;-0.435078,-0.549194,-0.576642, 0.419721;;, - 76;4;-0.437872,-0.546617,-0.578044, 0.418239;;, - 77;4;-0.440658,-0.543984,-0.579587, 0.416647;;, - 78;4;-0.443419,-0.541320,-0.581257, 0.414952;;, - 79;4;-0.446145,-0.538647,-0.583039, 0.413158;;, - 80;4;-0.448826,-0.535982,-0.584921, 0.411273;;, - 81;4;-0.451451,-0.532462,-0.587594, 0.409260;;, - 82;4;-0.453975,-0.527244,-0.591737, 0.407099;;, - 83;4;-0.456335,-0.520506,-0.597207, 0.404853;;, - 84;4;-0.458453,-0.512660,-0.603658, 0.402617;;, - 85;4;-0.460254,-0.504371,-0.610532, 0.400519;;, - 86;4;-0.461687,-0.496450,-0.617139, 0.398688;;, - 87;4;-0.462735,-0.489674,-0.622814, 0.397229;;, - 88;4;-0.463421,-0.484608,-0.627070, 0.396197;;, - 89;4;-0.463792,-0.481544,-0.629650, 0.395599;;, - 90;4;-0.463904,-0.480537,-0.630499, 0.395409;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.450000,-0.350000;;, - 1;3;-0.000000, 0.450000,-0.350000;;, - 2;3;-0.000000, 0.450000,-0.350000;;, - 3;3;-0.000000, 0.450000,-0.350000;;, - 4;3;-0.000000, 0.450000,-0.350000;;, - 5;3;-0.000000, 0.450000,-0.350000;;, - 6;3;-0.000000, 0.450000,-0.350000;;, - 7;3;-0.000000, 0.450000,-0.350000;;, - 8;3;-0.000000, 0.450000,-0.350000;;, - 9;3;-0.000000, 0.450000,-0.350000;;, - 10;3;-0.000000, 0.450000,-0.350000;;, - 11;3;-0.000000, 0.450000,-0.350000;;, - 12;3;-0.000000, 0.450000,-0.350000;;, - 13;3;-0.000000, 0.450000,-0.350000;;, - 14;3;-0.000000, 0.450000,-0.350000;;, - 15;3;-0.000000, 0.450000,-0.350000;;, - 16;3;-0.000000, 0.450000,-0.350000;;, - 17;3;-0.000000, 0.450000,-0.350000;;, - 18;3;-0.000000, 0.450000,-0.350000;;, - 19;3;-0.000000, 0.450000,-0.350000;;, - 20;3;-0.000000, 0.450000,-0.350000;;, - 21;3;-0.000000, 0.450000,-0.350000;;, - 22;3;-0.000000, 0.450000,-0.350000;;, - 23;3;-0.000000, 0.450000,-0.350000;;, - 24;3;-0.000000, 0.450000,-0.350000;;, - 25;3;-0.000000, 0.450000,-0.350000;;, - 26;3;-0.000000, 0.450000,-0.350000;;, - 27;3;-0.000000, 0.450000,-0.350000;;, - 28;3;-0.000000, 0.450000,-0.350000;;, - 29;3;-0.000000, 0.450000,-0.350000;;, - 30;3;-0.000000, 0.450000,-0.350000;;, - 31;3;-0.000000, 0.450000,-0.350000;;, - 32;3;-0.000000, 0.450000,-0.350000;;, - 33;3;-0.000000, 0.450000,-0.350000;;, - 34;3;-0.000000, 0.450000,-0.350000;;, - 35;3;-0.000000, 0.450000,-0.350000;;, - 36;3;-0.000000, 0.450000,-0.350000;;, - 37;3;-0.000000, 0.450000,-0.350000;;, - 38;3;-0.000000, 0.450000,-0.350000;;, - 39;3;-0.000000, 0.450000,-0.350000;;, - 40;3;-0.000000, 0.450000,-0.350000;;, - 41;3;-0.000082, 0.449998,-0.350000;;, - 42;3;-0.000329, 0.449991,-0.350000;;, - 43;3;-0.000731, 0.449978,-0.350000;;, - 44;3;-0.001257, 0.449962,-0.350000;;, - 45;3;-0.001852, 0.449941,-0.350000;;, - 46;3;-0.002448, 0.449919,-0.350000;;, - 47;3;-0.002973, 0.449896,-0.350000;;, - 48;3;-0.003375, 0.449874,-0.350000;;, - 49;3;-0.003622, 0.449855,-0.350000;;, - 50;3;-0.003704, 0.449838,-0.350000;;, - 51;3;-0.003634, 0.449822,-0.350104;;, - 52;3;-0.003422, 0.449804,-0.350418;;, - 53;3;-0.003077, 0.449785,-0.350928;;, - 54;3;-0.002622, 0.449766,-0.351595;;, - 55;3;-0.002103, 0.449747,-0.352351;;, - 56;3;-0.001577, 0.449730,-0.353106;;, - 57;3;-0.001103, 0.449716,-0.353773;;, - 58;3;-0.000728, 0.449707,-0.354283;;, - 59;3;-0.000479, 0.449701,-0.354597;;, - 60;3;-0.000364, 0.449699,-0.354701;;, - 61;3;-0.000319, 0.449701,-0.354675;;, - 62;3;-0.000276, 0.449706,-0.354597;;, - 63;3;-0.000236, 0.449714,-0.354466;;, - 64;3;-0.000198, 0.449726,-0.354283;;, - 65;3;-0.000164, 0.449741,-0.354051;;, - 66;3;-0.000133, 0.449759,-0.353773;;, - 67;3;-0.000106, 0.449779,-0.353456;;, - 68;3;-0.000082, 0.449801,-0.353106;;, - 69;3;-0.000062, 0.449825,-0.352734;;, - 70;3;-0.000046, 0.449850,-0.352351;;, - 71;3;-0.000032, 0.449874,-0.351967;;, - 72;3;-0.000022, 0.449898,-0.351595;;, - 73;3;-0.000014, 0.449920,-0.351245;;, - 74;3;-0.000009, 0.449941,-0.350928;;, - 75;3;-0.000005, 0.449959,-0.350650;;, - 76;3;-0.000002, 0.449973,-0.350418;;, - 77;3;-0.000001, 0.449985,-0.350235;;, - 78;3;-0.000000, 0.449993,-0.350104;;, - 79;3;-0.000000, 0.449998,-0.350026;;, - 80;3;-0.000000, 0.450000,-0.350000;;, - 81;3;-0.000082, 0.449997,-0.350000;;, - 82;3;-0.000329, 0.449986,-0.350000;;, - 83;3;-0.000731, 0.449968,-0.350000;;, - 84;3;-0.001257, 0.449945,-0.350000;;, - 85;3;-0.001852, 0.449919,-0.350000;;, - 86;3;-0.002448, 0.449893,-0.350000;;, - 87;3;-0.002973, 0.449870,-0.350000;;, - 88;3;-0.003375, 0.449853,-0.350000;;, - 89;3;-0.003622, 0.449842,-0.350000;;, - 90;3;-0.003704, 0.449838,-0.350000;;; - } - } - Animation { - {Armature_Bone_006} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.584921, 0.411273,-0.448826,-0.535982;;, - 1;4;-0.584921, 0.411273,-0.448826,-0.535982;;, - 2;4;-0.585303, 0.410615,-0.449353,-0.535456;;, - 3;4;-0.586458, 0.408623,-0.450946,-0.533866;;, - 4;4;-0.588388, 0.405296,-0.453608,-0.531210;;, - 5;4;-0.591077, 0.400660,-0.457317,-0.527508;;, - 6;4;-0.594485, 0.394783,-0.462018,-0.522816;;, - 7;4;-0.598545, 0.387783,-0.467618,-0.517228;;, - 8;4;-0.603157, 0.379831,-0.473979,-0.510879;;, - 9;4;-0.608191, 0.371150,-0.480924,-0.503948;;, - 10;4;-0.613492, 0.362011,-0.488235,-0.496652;;, - 11;4;-0.618883, 0.352715,-0.495672,-0.489230;;, - 12;4;-0.624183, 0.343576,-0.502983,-0.481934;;, - 13;4;-0.629218, 0.334895,-0.509927,-0.475003;;, - 14;4;-0.633830, 0.326943,-0.516289,-0.468654;;, - 15;4;-0.637889, 0.319944,-0.521888,-0.463066;;, - 16;4;-0.641297, 0.314068,-0.526589,-0.458375;;, - 17;4;-0.643986, 0.309432,-0.530298,-0.454673;;, - 18;4;-0.645915, 0.306104,-0.532960,-0.452017;;, - 19;4;-0.647070, 0.304113,-0.534553,-0.450427;;, - 20;4;-0.647452, 0.303455,-0.535080,-0.449901;;, - 21;4;-0.645682, 0.306506,-0.532638,-0.452338;;, - 22;4;-0.640256, 0.315863,-0.525153,-0.459808;;, - 23;4;-0.632104, 0.329919,-0.513909,-0.471030;;, - 24;4;-0.623449, 0.344842,-0.501970,-0.482944;;, - 25;4;-0.616187, 0.357364,-0.491953,-0.492942;;, - 26;4;-0.608924, 0.369886,-0.481935,-0.502939;;, - 27;4;-0.600269, 0.384809,-0.469997,-0.514854;;, - 28;4;-0.592118, 0.398865,-0.458752,-0.526076;;, - 29;4;-0.586691, 0.408221,-0.451267,-0.533545;;, - 30;4;-0.584921, 0.411273,-0.448826,-0.535982;;, - 31;4;-0.580252, 0.413424,-0.458164,-0.529129;;, - 32;4;-0.567657, 0.418828,-0.485020,-0.509174;;, - 33;4;-0.552978, 0.424012,-0.520994,-0.481800;;, - 34;4;-0.544451, 0.424634,-0.551914,-0.457067;;, - 35;4;-0.546700, 0.418652,-0.568169,-0.442082;;, - 36;4;-0.561078, 0.401550,-0.571099,-0.436362;;, - 37;4;-0.586812, 0.370952,-0.564388,-0.437627;;, - 38;4;-0.616388, 0.336310,-0.551780,-0.443374;;, - 39;4;-0.638773, 0.311207,-0.540287,-0.448705;;, - 40;4;-0.647452, 0.303455,-0.535080,-0.449901;;, - 41;4;-0.648710, 0.306194,-0.532745,-0.448891;;, - 42;4;-0.649623, 0.311711,-0.528455,-0.448732;;, - 43;4;-0.650033, 0.319956,-0.522227,-0.449569;;, - 44;4;-0.649768, 0.330568,-0.514291,-0.451503;;, - 45;4;-0.648672, 0.342823,-0.505129,-0.454551;;, - 46;4;-0.646656, 0.355703,-0.495432,-0.458610;;, - 47;4;-0.643724, 0.368133,-0.485945,-0.463478;;, - 48;4;-0.639962, 0.379222,-0.477292,-0.468905;;, - 49;4;-0.635506, 0.388399,-0.469880,-0.474655;;, - 50;4;-0.630499, 0.395409,-0.463904,-0.480537;;, - 51;4;-0.624789, 0.401358,-0.458023,-0.487406;;, - 52;4;-0.618189, 0.407316,-0.450929,-0.496154;;, - 53;4;-0.610879, 0.413107,-0.442860,-0.506524;;, - 54;4;-0.603194, 0.418495,-0.434262,-0.517982;;, - 55;4;-0.595608, 0.423213,-0.425776,-0.529710;;, - 56;4;-0.588664, 0.427027,-0.418130,-0.540732;;, - 57;4;-0.582837, 0.429790,-0.411969,-0.550143;;, - 58;4;-0.578437, 0.431475,-0.407714,-0.557310;;, - 59;4;-0.575581, 0.432148,-0.405526,-0.561935;;, - 60;4;-0.574240, 0.431930,-0.405371,-0.563994;;, - 61;4;-0.573641, 0.431321,-0.406259,-0.564713;;, - 62;4;-0.573088, 0.430729,-0.407296,-0.565226;;, - 63;4;-0.572594, 0.430147,-0.408494,-0.565514;;, - 64;4;-0.572172, 0.429565,-0.409859,-0.565560;;, - 65;4;-0.571841, 0.428976,-0.411400,-0.565348;;, - 66;4;-0.571616, 0.428365,-0.413120,-0.564864;;, - 67;4;-0.571516, 0.427721,-0.415018,-0.564102;;, - 68;4;-0.571558, 0.427028,-0.417090,-0.563059;;, - 69;4;-0.571757, 0.426271,-0.419326,-0.561739;;, - 70;4;-0.572126, 0.425436,-0.421710,-0.560156;;, - 71;4;-0.572673, 0.424509,-0.424223,-0.558330;;, - 72;4;-0.573401, 0.423480,-0.426841,-0.556289;;, - 73;4;-0.574310, 0.422342,-0.429540,-0.554063;;, - 74;4;-0.575393, 0.421089,-0.432293,-0.551687;;, - 75;4;-0.576642, 0.419721,-0.435078,-0.549194;;, - 76;4;-0.578044, 0.418239,-0.437872,-0.546617;;, - 77;4;-0.579587, 0.416647,-0.440658,-0.543984;;, - 78;4;-0.581257, 0.414952,-0.443419,-0.541320;;, - 79;4;-0.583039, 0.413158,-0.446145,-0.538647;;, - 80;4;-0.584921, 0.411273,-0.448826,-0.535982;;, - 81;4;-0.587594, 0.409259,-0.451450,-0.532463;;, - 82;4;-0.591737, 0.407099,-0.453975,-0.527244;;, - 83;4;-0.597207, 0.404852,-0.456335,-0.520506;;, - 84;4;-0.603658, 0.402617,-0.458453,-0.512660;;, - 85;4;-0.610532, 0.400519,-0.460254,-0.504371;;, - 86;4;-0.617139, 0.398688,-0.461686,-0.496450;;, - 87;4;-0.622814, 0.397229,-0.462735,-0.489674;;, - 88;4;-0.627070, 0.396197,-0.463421,-0.484608;;, - 89;4;-0.629650, 0.395599,-0.463792,-0.481544;;, - 90;4;-0.630499, 0.395409,-0.463904,-0.480537;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.450000, 0.350000;;, - 1;3;-0.000000, 0.450000, 0.350000;;, - 2;3;-0.000000, 0.450000, 0.350000;;, - 3;3;-0.000000, 0.450000, 0.350000;;, - 4;3;-0.000000, 0.450000, 0.350000;;, - 5;3;-0.000000, 0.450000, 0.350000;;, - 6;3;-0.000000, 0.450000, 0.350000;;, - 7;3;-0.000000, 0.450000, 0.350000;;, - 8;3;-0.000000, 0.450000, 0.350000;;, - 9;3;-0.000000, 0.450000, 0.350000;;, - 10;3;-0.000000, 0.450000, 0.350000;;, - 11;3;-0.000000, 0.450000, 0.350000;;, - 12;3;-0.000000, 0.450000, 0.350000;;, - 13;3;-0.000000, 0.450000, 0.350000;;, - 14;3;-0.000000, 0.450000, 0.350000;;, - 15;3;-0.000000, 0.450000, 0.350000;;, - 16;3;-0.000000, 0.450000, 0.350000;;, - 17;3;-0.000000, 0.450000, 0.350000;;, - 18;3;-0.000000, 0.450000, 0.350000;;, - 19;3;-0.000000, 0.450000, 0.350000;;, - 20;3;-0.000000, 0.450000, 0.350000;;, - 21;3;-0.000000, 0.450000, 0.350000;;, - 22;3;-0.000000, 0.450000, 0.350000;;, - 23;3;-0.000000, 0.450000, 0.350000;;, - 24;3;-0.000000, 0.450000, 0.350000;;, - 25;3;-0.000000, 0.450000, 0.350000;;, - 26;3;-0.000000, 0.450000, 0.350000;;, - 27;3;-0.000000, 0.450000, 0.350000;;, - 28;3;-0.000000, 0.450000, 0.350000;;, - 29;3;-0.000000, 0.450000, 0.350000;;, - 30;3;-0.000000, 0.450000, 0.350000;;, - 31;3;-0.000000, 0.450000, 0.350000;;, - 32;3;-0.000000, 0.450000, 0.350000;;, - 33;3;-0.000000, 0.450000, 0.350000;;, - 34;3;-0.000000, 0.450000, 0.350000;;, - 35;3;-0.000000, 0.450000, 0.350000;;, - 36;3;-0.000000, 0.450000, 0.350000;;, - 37;3;-0.000000, 0.450000, 0.350000;;, - 38;3;-0.000000, 0.450000, 0.350000;;, - 39;3;-0.000000, 0.450000, 0.350000;;, - 40;3;-0.000000, 0.450000, 0.350000;;, - 41;3;-0.000082, 0.449998, 0.350000;;, - 42;3;-0.000329, 0.449991, 0.350000;;, - 43;3;-0.000731, 0.449978, 0.350000;;, - 44;3;-0.001257, 0.449962, 0.350000;;, - 45;3;-0.001852, 0.449941, 0.350000;;, - 46;3;-0.002447, 0.449919, 0.350000;;, - 47;3;-0.002973, 0.449896, 0.350000;;, - 48;3;-0.003375, 0.449874, 0.350000;;, - 49;3;-0.003622, 0.449855, 0.350000;;, - 50;3;-0.003704, 0.449838, 0.350000;;, - 51;3;-0.003634, 0.449822, 0.350104;;, - 52;3;-0.003422, 0.449804, 0.350418;;, - 53;3;-0.003077, 0.449785, 0.350928;;, - 54;3;-0.002622, 0.449766, 0.351595;;, - 55;3;-0.002103, 0.449747, 0.352351;;, - 56;3;-0.001577, 0.449730, 0.353106;;, - 57;3;-0.001103, 0.449716, 0.353773;;, - 58;3;-0.000728, 0.449707, 0.354283;;, - 59;3;-0.000479, 0.449701, 0.354597;;, - 60;3;-0.000364, 0.449699, 0.354701;;, - 61;3;-0.000319, 0.449701, 0.354675;;, - 62;3;-0.000276, 0.449706, 0.354597;;, - 63;3;-0.000236, 0.449714, 0.354466;;, - 64;3;-0.000198, 0.449726, 0.354283;;, - 65;3;-0.000164, 0.449741, 0.354051;;, - 66;3;-0.000133, 0.449759, 0.353773;;, - 67;3;-0.000106, 0.449779, 0.353456;;, - 68;3;-0.000082, 0.449801, 0.353106;;, - 69;3;-0.000062, 0.449825, 0.352734;;, - 70;3;-0.000046, 0.449850, 0.352351;;, - 71;3;-0.000032, 0.449874, 0.351967;;, - 72;3;-0.000022, 0.449898, 0.351595;;, - 73;3;-0.000014, 0.449920, 0.351245;;, - 74;3;-0.000008, 0.449941, 0.350928;;, - 75;3;-0.000005, 0.449958, 0.350650;;, - 76;3;-0.000002, 0.449973, 0.350418;;, - 77;3;-0.000001, 0.449985, 0.350235;;, - 78;3;-0.000000, 0.449993, 0.350104;;, - 79;3;-0.000000, 0.449998, 0.350026;;, - 80;3;-0.000000, 0.450000, 0.350000;;, - 81;3;-0.000082, 0.449997, 0.350000;;, - 82;3;-0.000329, 0.449986, 0.350000;;, - 83;3;-0.000731, 0.449968, 0.350000;;, - 84;3;-0.001257, 0.449945, 0.350000;;, - 85;3;-0.001852, 0.449919, 0.350000;;, - 86;3;-0.002447, 0.449893, 0.350000;;, - 87;3;-0.002973, 0.449870, 0.350000;;, - 88;3;-0.003375, 0.449853, 0.350000;;, - 89;3;-0.003622, 0.449842, 0.350000;;, - 90;3;-0.003704, 0.449838, 0.350000;;; - } - } - Animation { - {Armature_Bone_007} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.319598,-0.677966,-0.431912, 0.501669;;, - 1;4;-0.319598,-0.677966,-0.431912, 0.501669;;, - 2;4;-0.320288,-0.677564,-0.432404, 0.501164;;, - 3;4;-0.322372,-0.676349,-0.433891, 0.499638;;, - 4;4;-0.325856,-0.674318,-0.436378, 0.497088;;, - 5;4;-0.330709,-0.671489,-0.439841, 0.493535;;, - 6;4;-0.336861,-0.667903,-0.444232, 0.489032;;, - 7;4;-0.344189,-0.663631,-0.449461, 0.483668;;, - 8;4;-0.352514,-0.658778,-0.455403, 0.477574;;, - 9;4;-0.361602,-0.653480,-0.461888, 0.470922;;, - 10;4;-0.371169,-0.647903,-0.468716, 0.463918;;, - 11;4;-0.380901,-0.642230,-0.475661, 0.456795;;, - 12;4;-0.390468,-0.636653,-0.482489, 0.449792;;, - 13;4;-0.399556,-0.631356,-0.488974, 0.443140;;, - 14;4;-0.407880,-0.626503,-0.494915, 0.437046;;, - 15;4;-0.415208,-0.622231,-0.500145, 0.431682;;, - 16;4;-0.421360,-0.618645,-0.504535, 0.427179;;, - 17;4;-0.426213,-0.615816,-0.507998, 0.423627;;, - 18;4;-0.429696,-0.613786,-0.510484, 0.421077;;, - 19;4;-0.431781,-0.612571,-0.511972, 0.419551;;, - 20;4;-0.432470,-0.612169,-0.512464, 0.419046;;, - 21;4;-0.429387,-0.614143,-0.510072, 0.421273;;, - 22;4;-0.419907,-0.620167,-0.502767, 0.428129;;, - 23;4;-0.405596,-0.629149,-0.491862, 0.438496;;, - 24;4;-0.390288,-0.638570,-0.480398, 0.449617;;, - 25;4;-0.377291,-0.646324,-0.470931, 0.459101;;, - 26;4;-0.364229,-0.654013,-0.461528, 0.468650;;, - 27;4;-0.348669,-0.663183,-0.450316, 0.480022;;, - 28;4;-0.333850,-0.671656,-0.439920, 0.490898;;, - 29;4;-0.323610,-0.676921,-0.433375, 0.498513;;, - 30;4;-0.319598,-0.677966,-0.431912, 0.501669;;, - 31;4;-0.327670,-0.669831,-0.430042, 0.507163;;, - 32;4;-0.352888,-0.648194,-0.423547, 0.520203;;, - 33;4;-0.387412,-0.619323,-0.416423, 0.534923;;, - 34;4;-0.417717,-0.593952,-0.414002, 0.543210;;, - 35;4;-0.434447,-0.579463,-0.419063, 0.540621;;, - 36;4;-0.440884,-0.576226,-0.433477, 0.524172;;, - 37;4;-0.442160,-0.582730,-0.457437, 0.493244;;, - 38;4;-0.439302,-0.595269,-0.484296, 0.457130;;, - 39;4;-0.435193,-0.606820,-0.504479, 0.429642;;, - 40;4;-0.432470,-0.612169,-0.512464, 0.419046;;, - 41;4;-0.429595,-0.613661,-0.513835, 0.418885;;, - 42;4;-0.424003,-0.615068,-0.514731, 0.421605;;, - 43;4;-0.415735,-0.616478,-0.514971, 0.427194;;, - 44;4;-0.405129,-0.618016,-0.514359, 0.435331;;, - 45;4;-0.392883,-0.619833,-0.512733, 0.445324;;, - 46;4;-0.379976,-0.622073,-0.510015, 0.456171;;, - 47;4;-0.367454,-0.624838,-0.506235, 0.466788;;, - 48;4;-0.356187,-0.628169,-0.501517, 0.476256;;, - 49;4;-0.346735,-0.632048,-0.496033, 0.483969;;, - 50;4;-0.339356,-0.636425,-0.489959, 0.489634;;, - 51;4;-0.332631,-0.641463,-0.482758, 0.494513;;, - 52;4;-0.325176,-0.647323,-0.473852, 0.499877;;, - 53;4;-0.317225,-0.653846,-0.463499, 0.505551;;, - 54;4;-0.309166,-0.660738,-0.452224, 0.511256;;, - 55;4;-0.301519,-0.667569,-0.440811, 0.516622;;, - 56;4;-0.294842,-0.673854,-0.430183, 0.521256;;, - 57;4;-0.289593,-0.679160,-0.421182, 0.524840;;, - 58;4;-0.286040,-0.683203,-0.414389, 0.527195;;, - 59;4;-0.284245,-0.685870,-0.410063, 0.528286;;, - 60;4;-0.284124,-0.687183,-0.408206, 0.528181;;, - 61;4;-0.284832,-0.687823,-0.407596, 0.527496;;, - 62;4;-0.285632,-0.688402,-0.407109, 0.526768;;, - 63;4;-0.286533,-0.688910,-0.406763, 0.525992;;, - 64;4;-0.287546,-0.689333,-0.406577, 0.525161;;, - 65;4;-0.288679,-0.689658,-0.406571, 0.524266;;, - 66;4;-0.289941,-0.689870,-0.406764, 0.523301;;, - 67;4;-0.291339,-0.689955,-0.407173, 0.522260;;, - 68;4;-0.292877,-0.689900,-0.407814, 0.521136;;, - 69;4;-0.294555,-0.689694,-0.408696, 0.519926;;, - 70;4;-0.296371,-0.689331,-0.409825, 0.518627;;, - 71;4;-0.298318,-0.688807,-0.411198, 0.517240;;, - 72;4;-0.300386,-0.688122,-0.412807, 0.515767;;, - 73;4;-0.302562,-0.687282,-0.414637, 0.514213;;, - 74;4;-0.304831,-0.686294,-0.416671, 0.512584;;, - 75;4;-0.307179,-0.685170,-0.418887, 0.510887;;, - 76;4;-0.309589,-0.683923,-0.421261, 0.509131;;, - 77;4;-0.312048,-0.682566,-0.423771, 0.507324;;, - 78;4;-0.314543,-0.681113,-0.426396, 0.505473;;, - 79;4;-0.317063,-0.679575,-0.429116, 0.503586;;, - 80;4;-0.319598,-0.677966,-0.431912, 0.501669;;, - 81;4;-0.322226,-0.675630,-0.435638, 0.499738;;, - 82;4;-0.324997,-0.671919,-0.441128, 0.497831;;, - 83;4;-0.327833,-0.666965,-0.448197, 0.495999;;, - 84;4;-0.330616,-0.661085,-0.456410, 0.494307;;, - 85;4;-0.333197,-0.654792,-0.465078, 0.492825;;, - 86;4;-0.335425,-0.648727,-0.473352, 0.491611;;, - 87;4;-0.337185,-0.643507,-0.480427, 0.490696;;, - 88;4;-0.338420,-0.639587,-0.485713, 0.490080;;, - 89;4;-0.339131,-0.637208,-0.488909, 0.489739;;, - 90;4;-0.339356,-0.636425,-0.489959, 0.489634;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.370000,-0.350000;;, - 1;3;-0.000000, 0.370000,-0.350000;;, - 2;3;-0.000000, 0.370000,-0.350000;;, - 3;3;-0.000000, 0.370000,-0.350000;;, - 4;3;-0.000000, 0.370000,-0.350000;;, - 5;3;-0.000000, 0.370000,-0.350000;;, - 6;3;-0.000000, 0.370000,-0.350000;;, - 7;3;-0.000000, 0.370000,-0.350000;;, - 8;3;-0.000000, 0.370000,-0.350000;;, - 9;3;-0.000000, 0.370000,-0.350000;;, - 10;3;-0.000000, 0.370000,-0.350000;;, - 11;3;-0.000000, 0.370000,-0.350000;;, - 12;3;-0.000000, 0.370000,-0.350000;;, - 13;3;-0.000000, 0.370000,-0.350000;;, - 14;3;-0.000000, 0.370000,-0.350000;;, - 15;3;-0.000000, 0.370000,-0.350000;;, - 16;3;-0.000000, 0.370000,-0.350000;;, - 17;3;-0.000000, 0.370000,-0.350000;;, - 18;3;-0.000000, 0.370000,-0.350000;;, - 19;3;-0.000000, 0.370000,-0.350000;;, - 20;3;-0.000000, 0.370000,-0.350000;;, - 21;3;-0.000000, 0.370000,-0.350000;;, - 22;3;-0.000000, 0.370000,-0.350000;;, - 23;3;-0.000000, 0.370000,-0.350000;;, - 24;3;-0.000000, 0.370000,-0.350000;;, - 25;3;-0.000000, 0.370000,-0.350000;;, - 26;3;-0.000000, 0.370000,-0.350000;;, - 27;3;-0.000000, 0.370000,-0.350000;;, - 28;3;-0.000000, 0.370000,-0.350000;;, - 29;3;-0.000000, 0.370000,-0.350000;;, - 30;3;-0.000000, 0.370000,-0.350000;;, - 31;3;-0.000000, 0.370000,-0.350000;;, - 32;3;-0.000000, 0.370000,-0.350000;;, - 33;3;-0.000000, 0.370000,-0.350000;;, - 34;3;-0.000000, 0.370000,-0.350000;;, - 35;3;-0.000000, 0.370000,-0.350000;;, - 36;3;-0.000000, 0.370000,-0.350000;;, - 37;3;-0.000000, 0.370000,-0.350000;;, - 38;3;-0.000000, 0.370000,-0.350000;;, - 39;3;-0.000000, 0.370000,-0.350000;;, - 40;3;-0.000000, 0.370000,-0.350000;;, - 41;3; 0.000072, 0.370002,-0.350000;;, - 42;3; 0.000290, 0.370008,-0.350000;;, - 43;3; 0.000645, 0.370019,-0.350000;;, - 44;3; 0.001109, 0.370034,-0.350000;;, - 45;3; 0.001634, 0.370052,-0.350000;;, - 46;3; 0.002159, 0.370072,-0.350000;;, - 47;3; 0.002623, 0.370092,-0.350000;;, - 48;3; 0.002978, 0.370111,-0.350000;;, - 49;3; 0.003196, 0.370128,-0.350000;;, - 50;3; 0.003268, 0.370143,-0.350000;;, - 51;3; 0.003206, 0.370157,-0.349908;;, - 52;3; 0.003020, 0.370173,-0.349631;;, - 53;3; 0.002715, 0.370190,-0.349181;;, - 54;3; 0.002313, 0.370207,-0.348593;;, - 55;3; 0.001855, 0.370224,-0.347926;;, - 56;3; 0.001391, 0.370238,-0.347259;;, - 57;3; 0.000973, 0.370250,-0.346671;;, - 58;3; 0.000642, 0.370259,-0.346221;;, - 59;3; 0.000422, 0.370264,-0.345944;;, - 60;3; 0.000321, 0.370265,-0.345852;;, - 61;3; 0.000281, 0.370264,-0.345875;;, - 62;3; 0.000243, 0.370259,-0.345944;;, - 63;3; 0.000208, 0.370252,-0.346059;;, - 64;3; 0.000175, 0.370242,-0.346221;;, - 65;3; 0.000145, 0.370229,-0.346426;;, - 66;3; 0.000117, 0.370213,-0.346671;;, - 67;3; 0.000093, 0.370195,-0.346951;;, - 68;3; 0.000073, 0.370175,-0.347259;;, - 69;3; 0.000055, 0.370154,-0.347587;;, - 70;3; 0.000040, 0.370133,-0.347926;;, - 71;3; 0.000028, 0.370111,-0.348264;;, - 72;3; 0.000019, 0.370090,-0.348593;;, - 73;3; 0.000012, 0.370070,-0.348901;;, - 74;3; 0.000007, 0.370052,-0.349181;;, - 75;3; 0.000004, 0.370037,-0.349426;;, - 76;3; 0.000002, 0.370024,-0.349631;;, - 77;3; 0.000001, 0.370013,-0.349792;;, - 78;3; 0.000000, 0.370006,-0.349908;;, - 79;3;-0.000000, 0.370002,-0.349977;;, - 80;3;-0.000000, 0.370000,-0.350000;;, - 81;3; 0.000072, 0.370003,-0.350000;;, - 82;3; 0.000290, 0.370013,-0.350000;;, - 83;3; 0.000645, 0.370028,-0.350000;;, - 84;3; 0.001109, 0.370048,-0.350000;;, - 85;3; 0.001634, 0.370072,-0.350000;;, - 86;3; 0.002159, 0.370094,-0.350000;;, - 87;3; 0.002623, 0.370115,-0.350000;;, - 88;3; 0.002978, 0.370130,-0.350000;;, - 89;3; 0.003196, 0.370140,-0.350000;;, - 90;3; 0.003268, 0.370143,-0.350000;;; - } - } - Animation { - {Armature_Bone_008} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 1;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 2;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 3;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 4;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 5;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 6;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 7;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 8;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 9;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 10;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 11;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 12;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 13;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 14;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 15;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 16;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 17;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 18;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 19;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 20;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 21;4;-0.430343, 0.506930,-0.327682,-0.669908;;, - 22;4;-0.426552, 0.521158,-0.351077,-0.646621;;, - 23;4;-0.423372, 0.537841,-0.382799,-0.615139;;, - 24;4;-0.424177, 0.547749,-0.410786,-0.587535;;, - 25;4;-0.430424, 0.545661,-0.426685,-0.572130;;, - 26;4;-0.446036, 0.529623,-0.431828,-0.568361;;, - 27;4;-0.473165, 0.500168,-0.429575,-0.573601;;, - 28;4;-0.503646, 0.466128,-0.422607,-0.584473;;, - 29;4;-0.525804, 0.440497,-0.416136,-0.594529;;, - 30;4;-0.532957, 0.430963,-0.414106,-0.598952;;, - 31;4;-0.529573, 0.432276,-0.411956,-0.601876;;, - 32;4;-0.520708, 0.438284,-0.403853,-0.608859;;, - 33;4;-0.507758, 0.447792,-0.391311,-0.618867;;, - 34;4;-0.494055, 0.457946,-0.377950,-0.629434;;, - 35;4;-0.482438, 0.466313,-0.366855,-0.638456;;, - 36;4;-0.470683, 0.474543,-0.355897,-0.647615;;, - 37;4;-0.456654, 0.484374,-0.342859,-0.658508;;, - 38;4;-0.443445, 0.493627,-0.330572,-0.668775;;, - 39;4;-0.434691, 0.499748,-0.322355,-0.675648;;, - 40;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 41;4;-0.433297, 0.501304,-0.319938,-0.677143;;, - 42;4;-0.437234, 0.500436,-0.321192,-0.674436;;, - 43;4;-0.443562, 0.499099,-0.323304,-0.669960;;, - 44;4;-0.451798, 0.497393,-0.326109,-0.664065;;, - 45;4;-0.461102, 0.495485,-0.329311,-0.657361;;, - 46;4;-0.470390, 0.493593,-0.332529,-0.650642;;, - 47;4;-0.478580, 0.491932,-0.335379,-0.644701;;, - 48;4;-0.484836, 0.490667,-0.337563,-0.640154;;, - 49;4;-0.488682, 0.489891,-0.338909,-0.637355;;, - 50;4;-0.489959, 0.489634,-0.339356,-0.636425;;, - 51;4;-0.488203, 0.490544,-0.338076,-0.637494;;, - 52;4;-0.482907, 0.493275,-0.334232,-0.640722;;, - 53;4;-0.474276, 0.497695,-0.328002,-0.645990;;, - 54;4;-0.462950, 0.503437,-0.319892,-0.652919;;, - 55;4;-0.450057, 0.509882,-0.310765,-0.660829;;, - 56;4;-0.437072, 0.516234,-0.301731,-0.668832;;, - 57;4;-0.425478, 0.521708,-0.293889,-0.676029;;, - 58;4;-0.416428, 0.525709,-0.288078,-0.681717;;, - 59;4;-0.410592, 0.527900,-0.284774,-0.685484;;, - 60;4;-0.408206, 0.528180,-0.284123,-0.687183;;, - 61;4;-0.407596, 0.527496,-0.284832,-0.687823;;, - 62;4;-0.407109, 0.526768,-0.285632,-0.688402;;, - 63;4;-0.406763, 0.525992,-0.286533,-0.688910;;, - 64;4;-0.406577, 0.525161,-0.287546,-0.689333;;, - 65;4;-0.406571, 0.524266,-0.288679,-0.689658;;, - 66;4;-0.406764, 0.523301,-0.289941,-0.689870;;, - 67;4;-0.407173, 0.522260,-0.291339,-0.689955;;, - 68;4;-0.407814, 0.521136,-0.292877,-0.689900;;, - 69;4;-0.408696, 0.519926,-0.294555,-0.689694;;, - 70;4;-0.409825, 0.518627,-0.296371,-0.689331;;, - 71;4;-0.411198, 0.517240,-0.298318,-0.688807;;, - 72;4;-0.412807, 0.515767,-0.300386,-0.688122;;, - 73;4;-0.414638, 0.514213,-0.302562,-0.687282;;, - 74;4;-0.416671, 0.512583,-0.304831,-0.686294;;, - 75;4;-0.418887, 0.510887,-0.307178,-0.685170;;, - 76;4;-0.421261, 0.509131,-0.309589,-0.683923;;, - 77;4;-0.423772, 0.507324,-0.312048,-0.682566;;, - 78;4;-0.426396, 0.505473,-0.314543,-0.681113;;, - 79;4;-0.429116, 0.503586,-0.317062,-0.679575;;, - 80;4;-0.431912, 0.501668,-0.319598,-0.677966;;, - 81;4;-0.435638, 0.499737,-0.322226,-0.675630;;, - 82;4;-0.441129, 0.497831,-0.324997,-0.671920;;, - 83;4;-0.448197, 0.495999,-0.327833,-0.666966;;, - 84;4;-0.456410, 0.494307,-0.330616,-0.661085;;, - 85;4;-0.465078, 0.492825,-0.333197,-0.654792;;, - 86;4;-0.473352, 0.491611,-0.335425,-0.648727;;, - 87;4;-0.480427, 0.490696,-0.337185,-0.643507;;, - 88;4;-0.485713, 0.490080,-0.338420,-0.639587;;, - 89;4;-0.488910, 0.489739,-0.339131,-0.637208;;, - 90;4;-0.489959, 0.489634,-0.339356,-0.636425;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.370000, 0.350000;;, - 1;3;-0.000000, 0.370000, 0.350000;;, - 2;3;-0.000000, 0.370000, 0.350000;;, - 3;3;-0.000000, 0.370000, 0.350000;;, - 4;3;-0.000000, 0.370000, 0.350000;;, - 5;3;-0.000000, 0.370000, 0.350000;;, - 6;3;-0.000000, 0.370000, 0.350000;;, - 7;3;-0.000000, 0.370000, 0.350000;;, - 8;3;-0.000000, 0.370000, 0.350000;;, - 9;3;-0.000000, 0.370000, 0.350000;;, - 10;3;-0.000000, 0.370000, 0.350000;;, - 11;3;-0.000000, 0.370000, 0.350000;;, - 12;3;-0.000000, 0.370000, 0.350000;;, - 13;3;-0.000000, 0.370000, 0.350000;;, - 14;3;-0.000000, 0.370000, 0.350000;;, - 15;3;-0.000000, 0.370000, 0.350000;;, - 16;3;-0.000000, 0.370000, 0.350000;;, - 17;3;-0.000000, 0.370000, 0.350000;;, - 18;3;-0.000000, 0.370000, 0.350000;;, - 19;3;-0.000000, 0.370000, 0.350000;;, - 20;3;-0.000000, 0.370000, 0.350000;;, - 21;3;-0.000000, 0.370000, 0.350000;;, - 22;3;-0.000000, 0.370000, 0.350000;;, - 23;3;-0.000000, 0.370000, 0.350000;;, - 24;3;-0.000000, 0.370000, 0.350000;;, - 25;3;-0.000000, 0.370000, 0.350000;;, - 26;3;-0.000000, 0.370000, 0.350000;;, - 27;3;-0.000000, 0.370000, 0.350000;;, - 28;3;-0.000000, 0.370000, 0.350000;;, - 29;3;-0.000000, 0.370000, 0.350000;;, - 30;3;-0.000000, 0.370000, 0.350000;;, - 31;3;-0.000000, 0.370000, 0.350000;;, - 32;3;-0.000000, 0.370000, 0.350000;;, - 33;3;-0.000000, 0.370000, 0.350000;;, - 34;3;-0.000000, 0.370000, 0.350000;;, - 35;3;-0.000000, 0.370000, 0.350000;;, - 36;3;-0.000000, 0.370000, 0.350000;;, - 37;3;-0.000000, 0.370000, 0.350000;;, - 38;3;-0.000000, 0.370000, 0.350000;;, - 39;3;-0.000000, 0.370000, 0.350000;;, - 40;3;-0.000000, 0.370000, 0.350000;;, - 41;3; 0.000072, 0.370002, 0.350000;;, - 42;3; 0.000291, 0.370008, 0.350000;;, - 43;3; 0.000645, 0.370019, 0.350000;;, - 44;3; 0.001109, 0.370034, 0.350000;;, - 45;3; 0.001634, 0.370052, 0.350000;;, - 46;3; 0.002159, 0.370072, 0.350000;;, - 47;3; 0.002623, 0.370092, 0.350000;;, - 48;3; 0.002978, 0.370111, 0.350000;;, - 49;3; 0.003196, 0.370128, 0.350000;;, - 50;3; 0.003268, 0.370143, 0.350000;;, - 51;3; 0.003206, 0.370157, 0.349908;;, - 52;3; 0.003020, 0.370173, 0.349631;;, - 53;3; 0.002715, 0.370190, 0.349181;;, - 54;3; 0.002314, 0.370207, 0.348593;;, - 55;3; 0.001855, 0.370224, 0.347926;;, - 56;3; 0.001391, 0.370238, 0.347259;;, - 57;3; 0.000973, 0.370250, 0.346671;;, - 58;3; 0.000643, 0.370259, 0.346221;;, - 59;3; 0.000422, 0.370264, 0.345944;;, - 60;3; 0.000322, 0.370265, 0.345852;;, - 61;3; 0.000281, 0.370264, 0.345875;;, - 62;3; 0.000243, 0.370260, 0.345944;;, - 63;3; 0.000208, 0.370252, 0.346060;;, - 64;3; 0.000175, 0.370242, 0.346221;;, - 65;3; 0.000145, 0.370229, 0.346426;;, - 66;3; 0.000118, 0.370213, 0.346671;;, - 67;3; 0.000093, 0.370195, 0.346951;;, - 68;3; 0.000073, 0.370175, 0.347259;;, - 69;3; 0.000055, 0.370154, 0.347587;;, - 70;3; 0.000040, 0.370133, 0.347926;;, - 71;3; 0.000028, 0.370111, 0.348264;;, - 72;3; 0.000019, 0.370090, 0.348593;;, - 73;3; 0.000012, 0.370070, 0.348901;;, - 74;3; 0.000007, 0.370052, 0.349181;;, - 75;3; 0.000004, 0.370037, 0.349426;;, - 76;3; 0.000002, 0.370024, 0.349631;;, - 77;3; 0.000001, 0.370013, 0.349793;;, - 78;3; 0.000000, 0.370006, 0.349908;;, - 79;3;-0.000000, 0.370002, 0.349977;;, - 80;3;-0.000000, 0.370000, 0.350000;;, - 81;3; 0.000072, 0.370003, 0.350000;;, - 82;3; 0.000290, 0.370013, 0.350000;;, - 83;3; 0.000645, 0.370028, 0.350000;;, - 84;3; 0.001109, 0.370049, 0.350000;;, - 85;3; 0.001634, 0.370071, 0.350000;;, - 86;3; 0.002159, 0.370094, 0.350000;;, - 87;3; 0.002623, 0.370115, 0.350000;;, - 88;3; 0.002978, 0.370130, 0.350000;;, - 89;3; 0.003196, 0.370140, 0.350000;;, - 90;3; 0.003268, 0.370143, 0.350000;;; - } - } - Animation { - {Armature_Bone_009} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 1;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 2;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 3;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 4;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 5;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 6;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 7;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 8;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 9;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 10;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 11;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 12;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 13;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 14;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 15;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 16;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 17;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 18;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 19;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 20;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 21;4;-0.171292,-0.792475,-0.251317, 0.526549;;, - 22;4;-0.193248,-0.771364,-0.249637, 0.546270;;, - 23;4;-0.223546,-0.743385,-0.249591, 0.570717;;, - 24;4;-0.251250,-0.719894,-0.253662, 0.588055;;, - 25;4;-0.268549,-0.708463,-0.262571, 0.591119;;, - 26;4;-0.279750,-0.709268,-0.276909, 0.577247;;, - 27;4;-0.290100,-0.720419,-0.296449, 0.546706;;, - 28;4;-0.297644,-0.737394,-0.316737, 0.509204;;, - 29;4;-0.300956,-0.752215,-0.331815, 0.479757;;, - 30;4;-0.300181,-0.759263,-0.338560, 0.467747;;, - 31;4;-0.294533,-0.762200,-0.337904, 0.467422;;, - 32;4;-0.282366,-0.766052,-0.330739, 0.471577;;, - 33;4;-0.265342,-0.770585,-0.318723, 0.479071;;, - 34;4;-0.247421,-0.775245,-0.305812, 0.487182;;, - 35;4;-0.231981,-0.779557,-0.295379, 0.493587;;, - 36;4;-0.216498,-0.784385,-0.284989, 0.499477;;, - 37;4;-0.198473,-0.790273,-0.272179, 0.506361;;, - 38;4;-0.181365,-0.795779,-0.260244, 0.512886;;, - 39;4;-0.169233,-0.799209,-0.253042, 0.517465;;, - 40;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 41;4;-0.162442,-0.798703,-0.255561, 0.519869;;, - 42;4;-0.162930,-0.796660,-0.261194, 0.519765;;, - 43;4;-0.165185,-0.793799,-0.268891, 0.519134;;, - 44;4;-0.168946,-0.790314,-0.278146, 0.518052;;, - 45;4;-0.173708,-0.786524,-0.288130, 0.516669;;, - 46;4;-0.178778,-0.782831,-0.297805, 0.515188;;, - 47;4;-0.183435,-0.779629,-0.306165, 0.513823;;, - 48;4;-0.187092,-0.777211,-0.312460, 0.512749;;, - 49;4;-0.189384,-0.775737,-0.316289, 0.512075;;, - 50;4;-0.190155,-0.775251,-0.317551, 0.511848;;, - 51;4;-0.188583,-0.775815,-0.315644, 0.512426;;, - 52;4;-0.183859,-0.777517,-0.309895, 0.514159;;, - 53;4;-0.176198,-0.780295,-0.300528, 0.516967;;, - 54;4;-0.166213,-0.783949,-0.288242, 0.520619;;, - 55;4;-0.154958,-0.788121,-0.274267, 0.524724;;, - 56;4;-0.143790,-0.792342,-0.260205, 0.528780;;, - 57;4;-0.134055,-0.796137,-0.247668, 0.532291;;, - 58;4;-0.126785,-0.799138,-0.237910, 0.534877;;, - 59;4;-0.122565,-0.801125,-0.231658, 0.536325;;, - 60;4;-0.121580,-0.802023,-0.229163, 0.536569;;, - 61;4;-0.122260,-0.802383,-0.228579, 0.536191;;, - 62;4;-0.123065,-0.802757,-0.228082, 0.535757;;, - 63;4;-0.124009,-0.803138,-0.227689, 0.535265;;, - 64;4;-0.125105,-0.803515,-0.227422, 0.534711;;, - 65;4;-0.126364,-0.803880,-0.227305, 0.534092;;, - 66;4;-0.127799,-0.804220,-0.227360, 0.533407;;, - 67;4;-0.129416,-0.804520,-0.227612, 0.532656;;, - 68;4;-0.131222,-0.804766,-0.228084, 0.531841;;, - 69;4;-0.133216,-0.804941,-0.228794, 0.530964;;, - 70;4;-0.135394,-0.805033,-0.229757, 0.530032;;, - 71;4;-0.137745,-0.805026,-0.230980, 0.529051;;, - 72;4;-0.140256,-0.804911,-0.232466, 0.528030;;, - 73;4;-0.142909,-0.804681,-0.234207, 0.526978;;, - 74;4;-0.145683,-0.804331,-0.236193, 0.525905;;, - 75;4;-0.148557,-0.803862,-0.238407, 0.524818;;, - 76;4;-0.151511,-0.803274,-0.240830, 0.523727;;, - 77;4;-0.154526,-0.802573,-0.243440, 0.522638;;, - 78;4;-0.157585,-0.801765,-0.246218, 0.521556;;, - 79;4;-0.160672,-0.800856,-0.249142, 0.520486;;, - 80;4;-0.163776,-0.799854,-0.252193, 0.519432;;, - 81;4;-0.167041,-0.798407,-0.256322, 0.518362;;, - 82;4;-0.170579,-0.796167,-0.262460, 0.517258;;, - 83;4;-0.174288,-0.793213,-0.270398, 0.516150;;, - 84;4;-0.178005,-0.789731,-0.279646, 0.515083;;, - 85;4;-0.181517,-0.786021,-0.289423, 0.514109;;, - 86;4;-0.184597,-0.782457,-0.298769, 0.513280;;, - 87;4;-0.187063,-0.779396,-0.306766, 0.512634;;, - 88;4;-0.188814,-0.777100,-0.312745, 0.512185;;, - 89;4;-0.189831,-0.775709,-0.316363, 0.511929;;, - 90;4;-0.190155,-0.775251,-0.317551, 0.511848;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.280000,-0.350000;;, - 1;3;-0.000000, 0.280000,-0.350000;;, - 2;3;-0.000000, 0.280000,-0.350000;;, - 3;3;-0.000000, 0.280000,-0.350000;;, - 4;3;-0.000000, 0.280000,-0.350000;;, - 5;3;-0.000000, 0.280000,-0.350000;;, - 6;3;-0.000000, 0.280000,-0.350000;;, - 7;3;-0.000000, 0.280000,-0.350000;;, - 8;3;-0.000000, 0.280000,-0.350000;;, - 9;3;-0.000000, 0.280000,-0.350000;;, - 10;3;-0.000000, 0.280000,-0.350000;;, - 11;3;-0.000000, 0.280000,-0.350000;;, - 12;3;-0.000000, 0.280000,-0.350000;;, - 13;3;-0.000000, 0.280000,-0.350000;;, - 14;3;-0.000000, 0.280000,-0.350000;;, - 15;3;-0.000000, 0.280000,-0.350000;;, - 16;3;-0.000000, 0.280000,-0.350000;;, - 17;3;-0.000000, 0.280000,-0.350000;;, - 18;3;-0.000000, 0.280000,-0.350000;;, - 19;3;-0.000000, 0.280000,-0.350000;;, - 20;3;-0.000000, 0.280000,-0.350000;;, - 21;3;-0.000000, 0.280000,-0.350000;;, - 22;3;-0.000000, 0.280000,-0.350000;;, - 23;3;-0.000000, 0.280000,-0.350000;;, - 24;3;-0.000000, 0.280000,-0.350000;;, - 25;3;-0.000000, 0.280000,-0.350000;;, - 26;3;-0.000000, 0.280000,-0.350000;;, - 27;3;-0.000000, 0.280000,-0.350000;;, - 28;3;-0.000000, 0.280000,-0.350000;;, - 29;3;-0.000000, 0.280000,-0.350000;;, - 30;3;-0.000000, 0.280000,-0.350000;;, - 31;3;-0.000000, 0.280000,-0.350000;;, - 32;3;-0.000000, 0.280000,-0.350000;;, - 33;3;-0.000000, 0.280000,-0.350000;;, - 34;3;-0.000000, 0.280000,-0.350000;;, - 35;3;-0.000000, 0.280000,-0.350000;;, - 36;3;-0.000000, 0.280000,-0.350000;;, - 37;3;-0.000000, 0.280000,-0.350000;;, - 38;3;-0.000000, 0.280000,-0.350000;;, - 39;3;-0.000000, 0.280000,-0.350000;;, - 40;3;-0.000000, 0.280000,-0.350000;;, - 41;3; 0.000246, 0.280007,-0.350000;;, - 42;3; 0.000988, 0.280029,-0.350000;;, - 43;3; 0.002193, 0.280065,-0.350000;;, - 44;3; 0.003770, 0.280115,-0.350000;;, - 45;3; 0.005556, 0.280177,-0.350000;;, - 46;3; 0.007342, 0.280244,-0.350000;;, - 47;3; 0.008919, 0.280313,-0.350000;;, - 48;3; 0.010124, 0.280378,-0.350000;;, - 49;3; 0.010866, 0.280436,-0.350000;;, - 50;3; 0.011112, 0.280485,-0.350000;;, - 51;3; 0.010902, 0.280533,-0.349687;;, - 52;3; 0.010267, 0.280587,-0.348746;;, - 53;3; 0.009230, 0.280645,-0.347216;;, - 54;3; 0.007866, 0.280703,-0.345215;;, - 55;3; 0.006308, 0.280760,-0.342948;;, - 56;3; 0.004730, 0.280810,-0.340681;;, - 57;3; 0.003310, 0.280851,-0.338680;;, - 58;3; 0.002184, 0.280880,-0.337150;;, - 59;3; 0.001436, 0.280897,-0.336209;;, - 60;3; 0.001093, 0.280902,-0.335897;;, - 61;3; 0.000957, 0.280897,-0.335974;;, - 62;3; 0.000827, 0.280882,-0.336209;;, - 63;3; 0.000706, 0.280857,-0.336602;;, - 64;3; 0.000594, 0.280822,-0.337150;;, - 65;3; 0.000492, 0.280778,-0.337847;;, - 66;3; 0.000400, 0.280724,-0.338680;;, - 67;3; 0.000318, 0.280663,-0.339633;;, - 68;3; 0.000247, 0.280596,-0.340681;;, - 69;3; 0.000186, 0.280525,-0.341797;;, - 70;3; 0.000137, 0.280451,-0.342948;;, - 71;3; 0.000096, 0.280378,-0.344099;;, - 72;3; 0.000065, 0.280306,-0.345215;;, - 73;3; 0.000042, 0.280239,-0.346264;;, - 74;3; 0.000025, 0.280178,-0.347216;;, - 75;3; 0.000014, 0.280125,-0.348050;;, - 76;3; 0.000007, 0.280080,-0.348746;;, - 77;3; 0.000003, 0.280045,-0.349295;;, - 78;3; 0.000001, 0.280020,-0.349687;;, - 79;3;-0.000000, 0.280005,-0.349922;;, - 80;3;-0.000000, 0.280000,-0.350000;;, - 81;3; 0.000246, 0.280011,-0.350000;;, - 82;3; 0.000988, 0.280043,-0.350000;;, - 83;3; 0.002193, 0.280096,-0.350000;;, - 84;3; 0.003770, 0.280165,-0.350000;;, - 85;3; 0.005556, 0.280243,-0.350000;;, - 86;3; 0.007342, 0.280321,-0.350000;;, - 87;3; 0.008919, 0.280389,-0.350000;;, - 88;3; 0.010125, 0.280442,-0.350000;;, - 89;3; 0.010866, 0.280474,-0.350000;;, - 90;3; 0.011112, 0.280485,-0.350000;;; - } - } - Animation { - {Armature_Bone_010} - AnimationKey { // Rotation - 0; - 91; - 0;4;-0.252193, 0.519431,-0.163776,-0.799855;;, - 1;4;-0.252193, 0.519431,-0.163776,-0.799855;;, - 2;4;-0.252721, 0.519116,-0.164609,-0.799607;;, - 3;4;-0.254316, 0.518161,-0.167128,-0.798857;;, - 4;4;-0.256981, 0.516566,-0.171338,-0.797604;;, - 5;4;-0.260695, 0.514344,-0.177204,-0.795859;;, - 6;4;-0.265402, 0.511527,-0.184638,-0.793646;;, - 7;4;-0.271009, 0.508171,-0.193494,-0.791011;;, - 8;4;-0.277379, 0.504359,-0.203554,-0.788017;;, - 9;4;-0.284333, 0.500198,-0.214537,-0.784749;;, - 10;4;-0.291654, 0.495817,-0.226099,-0.781308;;, - 11;4;-0.299100, 0.491361,-0.237859,-0.777809;;, - 12;4;-0.306421, 0.486980,-0.249422,-0.774368;;, - 13;4;-0.313375, 0.482819,-0.260404,-0.771100;;, - 14;4;-0.319744, 0.479007,-0.270465,-0.768106;;, - 15;4;-0.325351, 0.475652,-0.279320,-0.765471;;, - 16;4;-0.330058, 0.472835,-0.286754,-0.763259;;, - 17;4;-0.333772, 0.470612,-0.292619,-0.761514;;, - 18;4;-0.336438, 0.469017,-0.296829,-0.760261;;, - 19;4;-0.338032, 0.468063,-0.299348,-0.759511;;, - 20;4;-0.338560, 0.467747,-0.300181,-0.759264;;, - 21;4;-0.335792, 0.468887,-0.296643,-0.760735;;, - 22;4;-0.327388, 0.472463,-0.285716,-0.765167;;, - 23;4;-0.314961, 0.478033,-0.269101,-0.771627;;, - 24;4;-0.302097, 0.484277,-0.251131,-0.778154;;, - 25;4;-0.291744, 0.489957,-0.235611,-0.783192;;, - 26;4;-0.281576, 0.495824,-0.219905,-0.788042;;, - 27;4;-0.269440, 0.502794,-0.201209,-0.793843;;, - 28;4;-0.258484, 0.509836,-0.183122,-0.798831;;, - 29;4;-0.252275, 0.515606,-0.169999,-0.801068;;, - 30;4;-0.252193, 0.519431,-0.163776,-0.799855;;, - 31;4;-0.253356, 0.528589,-0.169252,-0.790436;;, - 32;4;-0.252052, 0.548687,-0.190830,-0.768950;;, - 33;4;-0.251141, 0.572270,-0.221992,-0.741836;;, - 34;4;-0.254119, 0.588517,-0.250788,-0.719438;;, - 35;4;-0.262568, 0.591122,-0.268546,-0.708465;;, - 36;4;-0.276680, 0.577477,-0.279973,-0.709043;;, - 37;4;-0.295680, 0.547475,-0.290865,-0.719653;;, - 38;4;-0.315542, 0.510399,-0.298837,-0.736201;;, - 39;4;-0.330806, 0.480766,-0.301963,-0.751207;;, - 40;4;-0.338560, 0.467747,-0.300181,-0.759264;;, - 41;4;-0.342060, 0.465129,-0.294983,-0.762747;;, - 42;4;-0.344609, 0.465174,-0.287133,-0.765377;;, - 43;4;-0.345966, 0.467899,-0.276707,-0.767177;;, - 44;4;-0.345911, 0.473042,-0.264084,-0.768268;;, - 45;4;-0.344307, 0.480004,-0.249999,-0.768883;;, - 46;4;-0.341161, 0.487894,-0.235456,-0.769344;;, - 47;4;-0.336637, 0.495731,-0.221505,-0.769988;;, - 48;4;-0.331002, 0.502669,-0.209000,-0.771089;;, - 49;4;-0.324552, 0.508139,-0.198475,-0.772818;;, - 50;4;-0.317551, 0.511848,-0.190155,-0.775251;;, - 51;4;-0.309437, 0.514831,-0.182375,-0.778220;;, - 52;4;-0.299571, 0.518159,-0.173535,-0.781517;;, - 53;4;-0.288242, 0.521727,-0.163911,-0.785056;;, - 54;4;-0.276014, 0.525357,-0.153985,-0.788687;;, - 55;4;-0.263725, 0.528808,-0.144417,-0.792205;;, - 56;4;-0.252350, 0.531824,-0.135936,-0.795385;;, - 57;4;-0.242771, 0.534188,-0.129158,-0.798035;;, - 58;4;-0.235586, 0.535777,-0.124461,-0.800038;;, - 59;4;-0.231055, 0.536558,-0.121961,-0.801359;;, - 60;4;-0.229163, 0.536569,-0.121580,-0.802023;;, - 61;4;-0.228579, 0.536190,-0.122260,-0.802383;;, - 62;4;-0.228082, 0.535757,-0.123065,-0.802757;;, - 63;4;-0.227689, 0.535265,-0.124009,-0.803138;;, - 64;4;-0.227422, 0.534711,-0.125105,-0.803515;;, - 65;4;-0.227305, 0.534092,-0.126364,-0.803880;;, - 66;4;-0.227360, 0.533407,-0.127799,-0.804220;;, - 67;4;-0.227612, 0.532656,-0.129416,-0.804520;;, - 68;4;-0.228084, 0.531840,-0.131222,-0.804766;;, - 69;4;-0.228794, 0.530964,-0.133216,-0.804942;;, - 70;4;-0.229757, 0.530031,-0.135394,-0.805033;;, - 71;4;-0.230980, 0.529051,-0.137745,-0.805026;;, - 72;4;-0.232466, 0.528030,-0.140256,-0.804911;;, - 73;4;-0.234207, 0.526978,-0.142909,-0.804681;;, - 74;4;-0.236193, 0.525905,-0.145683,-0.804332;;, - 75;4;-0.238407, 0.524818,-0.148557,-0.803862;;, - 76;4;-0.240830, 0.523727,-0.151511,-0.803274;;, - 77;4;-0.243440, 0.522638,-0.154526,-0.802573;;, - 78;4;-0.246218, 0.521556,-0.157584,-0.801765;;, - 79;4;-0.249142, 0.520486,-0.160672,-0.800856;;, - 80;4;-0.252193, 0.519431,-0.163776,-0.799855;;, - 81;4;-0.256322, 0.518362,-0.167041,-0.798407;;, - 82;4;-0.262460, 0.517258,-0.170579,-0.796168;;, - 83;4;-0.270398, 0.516150,-0.174288,-0.793214;;, - 84;4;-0.279646, 0.515082,-0.178005,-0.789731;;, - 85;4;-0.289423, 0.514109,-0.181517,-0.786021;;, - 86;4;-0.298769, 0.513280,-0.184597,-0.782457;;, - 87;4;-0.306766, 0.512634,-0.187063,-0.779396;;, - 88;4;-0.312745, 0.512185,-0.188814,-0.777100;;, - 89;4;-0.316363, 0.511929,-0.189831,-0.775709;;, - 90;4;-0.317551, 0.511848,-0.190155,-0.775251;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 0;3;-0.000000, 0.280000, 0.350000;;, - 1;3;-0.000000, 0.280000, 0.350000;;, - 2;3;-0.000000, 0.280000, 0.350000;;, - 3;3;-0.000000, 0.280000, 0.350000;;, - 4;3;-0.000000, 0.280000, 0.350000;;, - 5;3;-0.000000, 0.280000, 0.350000;;, - 6;3;-0.000000, 0.280000, 0.350000;;, - 7;3;-0.000000, 0.280000, 0.350000;;, - 8;3;-0.000000, 0.280000, 0.350000;;, - 9;3;-0.000000, 0.280000, 0.350000;;, - 10;3;-0.000000, 0.280000, 0.350000;;, - 11;3;-0.000000, 0.280000, 0.350000;;, - 12;3;-0.000000, 0.280000, 0.350000;;, - 13;3;-0.000000, 0.280000, 0.350000;;, - 14;3;-0.000000, 0.280000, 0.350000;;, - 15;3;-0.000000, 0.280000, 0.350000;;, - 16;3;-0.000000, 0.280000, 0.350000;;, - 17;3;-0.000000, 0.280000, 0.350000;;, - 18;3;-0.000000, 0.280000, 0.350000;;, - 19;3;-0.000000, 0.280000, 0.350000;;, - 20;3;-0.000000, 0.280000, 0.350000;;, - 21;3;-0.000000, 0.280000, 0.350000;;, - 22;3;-0.000000, 0.280000, 0.350000;;, - 23;3;-0.000000, 0.280000, 0.350000;;, - 24;3;-0.000000, 0.280000, 0.350000;;, - 25;3;-0.000000, 0.280000, 0.350000;;, - 26;3;-0.000000, 0.280000, 0.350000;;, - 27;3;-0.000000, 0.280000, 0.350000;;, - 28;3;-0.000000, 0.280000, 0.350000;;, - 29;3;-0.000000, 0.280000, 0.350000;;, - 30;3;-0.000000, 0.280000, 0.350000;;, - 31;3;-0.000000, 0.280000, 0.350000;;, - 32;3;-0.000000, 0.280000, 0.350000;;, - 33;3;-0.000000, 0.280000, 0.350000;;, - 34;3;-0.000000, 0.280000, 0.350000;;, - 35;3;-0.000000, 0.280000, 0.350000;;, - 36;3;-0.000000, 0.280000, 0.350000;;, - 37;3;-0.000000, 0.280000, 0.350000;;, - 38;3;-0.000000, 0.280000, 0.350000;;, - 39;3;-0.000000, 0.280000, 0.350000;;, - 40;3;-0.000000, 0.280000, 0.350000;;, - 41;3; 0.000246, 0.280007, 0.350000;;, - 42;3; 0.000988, 0.280029, 0.350000;;, - 43;3; 0.002193, 0.280065, 0.350000;;, - 44;3; 0.003770, 0.280115, 0.350000;;, - 45;3; 0.005556, 0.280177, 0.350000;;, - 46;3; 0.007342, 0.280244, 0.350000;;, - 47;3; 0.008919, 0.280313, 0.350000;;, - 48;3; 0.010125, 0.280378, 0.350000;;, - 49;3; 0.010866, 0.280436, 0.350000;;, - 50;3; 0.011112, 0.280485, 0.350000;;, - 51;3; 0.010902, 0.280534, 0.349687;;, - 52;3; 0.010267, 0.280587, 0.348746;;, - 53;3; 0.009230, 0.280645, 0.347216;;, - 54;3; 0.007866, 0.280703, 0.345215;;, - 55;3; 0.006308, 0.280760, 0.342948;;, - 56;3; 0.004730, 0.280810, 0.340681;;, - 57;3; 0.003310, 0.280851, 0.338680;;, - 58;3; 0.002185, 0.280880, 0.337150;;, - 59;3; 0.001436, 0.280897, 0.336209;;, - 60;3; 0.001093, 0.280903, 0.335897;;, - 61;3; 0.000957, 0.280898, 0.335974;;, - 62;3; 0.000828, 0.280883, 0.336209;;, - 63;3; 0.000707, 0.280857, 0.336602;;, - 64;3; 0.000595, 0.280822, 0.337150;;, - 65;3; 0.000492, 0.280778, 0.337847;;, - 66;3; 0.000400, 0.280724, 0.338680;;, - 67;3; 0.000318, 0.280664, 0.339633;;, - 68;3; 0.000247, 0.280596, 0.340681;;, - 69;3; 0.000186, 0.280525, 0.341797;;, - 70;3; 0.000137, 0.280451, 0.342948;;, - 71;3; 0.000097, 0.280378, 0.344099;;, - 72;3; 0.000065, 0.280306, 0.345215;;, - 73;3; 0.000042, 0.280239, 0.346264;;, - 74;3; 0.000025, 0.280178, 0.347216;;, - 75;3; 0.000014, 0.280125, 0.348050;;, - 76;3; 0.000007, 0.280080, 0.348746;;, - 77;3; 0.000003, 0.280045, 0.349295;;, - 78;3; 0.000001, 0.280020, 0.349687;;, - 79;3; 0.000000, 0.280005, 0.349922;;, - 80;3;-0.000000, 0.280000, 0.350000;;, - 81;3; 0.000246, 0.280011, 0.350000;;, - 82;3; 0.000988, 0.280043, 0.350000;;, - 83;3; 0.002193, 0.280096, 0.350000;;, - 84;3; 0.003770, 0.280165, 0.350000;;, - 85;3; 0.005556, 0.280243, 0.350000;;, - 86;3; 0.007342, 0.280321, 0.350000;;, - 87;3; 0.008919, 0.280390, 0.350000;;, - 88;3; 0.010125, 0.280442, 0.350000;;, - 89;3; 0.010866, 0.280475, 0.350000;;, - 90;3; 0.011112, 0.280485, 0.350000;;; - } - } - Animation { - {Group8} - AnimationKey { // Rotation - 0; - 91; - 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;;; - } - AnimationKey { // Scale - 1; - 91; - 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;;; - } - AnimationKey { // Position - 2; - 91; - 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;;; - } - } -} // End of AnimationSet Global diff --git a/mods/ENTITIES/mobs_mc/models/mobs_squid.b3d b/mods/ENTITIES/mobs_mc/models/mobs_squid.b3d deleted file mode 100644 index 6bba31229..000000000 Binary files a/mods/ENTITIES/mobs_mc/models/mobs_squid.b3d and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/models/mobs_villager.x b/mods/ENTITIES/mobs_mc/models/mobs_villager.x deleted file mode 100644 index 4fd262628..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_villager.x +++ /dev/null @@ -1,5462 +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 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;; - } - } // 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 -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/ENTITIES/mobs_mc/models/mobs_zombie.x b/mods/ENTITIES/mobs_mc/models/mobs_zombie.x deleted file mode 100644 index 038264e22..000000000 --- a/mods/ENTITIES/mobs_mc/models/mobs_zombie.x +++ /dev/null @@ -1,4293 +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 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/ENTITIES/mobs_mc/ocelot.lua b/mods/ENTITIES/mobs_mc/ocelot.lua new file mode 100644 index 000000000..05a5d4762 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/ocelot.lua @@ -0,0 +1,203 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--################### +--################### OCELOT AND CAT +--################### + +local pr = PseudoRandom(os.time()*12) + +local default_walk_chance = 70 + +-- Returns true if the item is food (taming) for the cat/ocelot +local is_food = function(itemstring) + for f=1, #mobs_mc.follow.ocelot do + if itemstring == mobs_mc.follow.ocelot[f] then + return true + elseif string.sub(itemstring, 1, 6) == "group:" and minetest.get_item_group(itemstring, string.sub(itemstring, 7, -1)) ~= 0 then + return true + end + end + return false +end + +-- Ocelot +local ocelot = { + type = "animal", + hp_min = 10, + hp_max = 10, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 0.69, 0.3}, + visual = "mesh", + mesh = "mobs_mc_cat.b3d", + textures = {"mobs_mc_cat_ocelot.png"}, + visual_size = {x=2.0, y=2.0}, + makes_footstep_sound = true, + walk_chance = default_walk_chance, + walk_velocity = 1, + run_velocity = 3, + floats = 1, + runaway = true, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + fall_damage = 0, + fear_height = 4, + sounds = { + random = "mobs_kitten", + distance = 16, + }, + animation = { + speed_normal = 25, speed_run = 50, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + }, + follow = mobs_mc.follow.ocelot, + view_range = 12, + passive = false, + attack_type = "dogfight", + pathfinding = 1, + damage = 2, + attack_animals = true, + specific_attack = { "mobs_mc:chicken" }, + on_rightclick = function(self, clicker) + if self.child then return end + -- Try to tame ocelot (mobs:feed_tame is intentionally NOT used) + local item = clicker:get_wielded_item() + if is_food(item:get_name()) then + if not minetest.settings:get_bool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + -- 1/3 chance of getting tamed + if pr:next(1, 3) == 1 then + local yaw = self.object:get_yaw() + local cat = minetest.add_entity(self.object:getpos(), "mobs_mc:cat") + cat:set_yaw(yaw) + local ent = cat:get_luaentity() + ent.owner = clicker:get_player_name() + ent.tamed = true + self.object:remove() + return + end + end + + end, +} + +mobs:register_mob("mobs_mc:ocelot", ocelot) + +-- Cat +local cat = table.copy(ocelot) +cat.textures = {{"mobs_mc_cat_black.png"}, {"mobs_mc_cat_red.png"}, {"mobs_mc_cat_siamese.png"}} +cat.owner = "" +cat.order = "roam" -- "sit" or "roam" +cat.owner_loyal = true +cat.tamed = true +cat.runaway = false +-- Automatically teleport cat to owner +cat.do_custom = mobs_mc.make_owner_teleport_function(12) +cat.on_rightclick = function(self, clicker) + if mobs:feed_tame(self, clicker, 1, true, false) then return end + if mobs:capture_mob(self, clicker, 0, 60, 5, false, nil) then return end + if mobs:protect(self, clicker) then return end + + if self.child then return end + + -- Toggle sitting order + + if not self.owner or self.owner == "" then + -- Huh? This cat has no owner? Let's fix this! This should never happen. + self.owner = clicker:get_player_name() + end + + if not self.order or self.order == "" or self.order == "sit" then + self.order = "roam" + self.walk_chance = default_walk_chance + self.jump = true + else + -- “Sit!” + -- TODO: Add sitting model + self.order = "sit" + self.walk_chance = 0 + self.jump = false + end + +end + +mobs:register_mob("mobs_mc:cat", cat) + +local base_spawn_chance = 5000 + +-- Spawn ocelot +mobs:spawn({ + name = "mobs_mc:ocelot", + nodes = mobs_mc.spawn.jungle, + light_max = minetest.LIGHT_MAX+1, + light_min = 0, + chance = math.ceil(base_spawn_chance * 1.5), -- emulates 1/3 spawn failure rate + active_object_count = 12, + min_height = 1, -- Right above ocean level + max_height = 31000, + on_spawn = function(self, pos) + --[[ Note: Minecraft has a 1/3 spawn failure rate. + In this mod it is emulated by reducing the spawn rate accordingly (see above). ]] + + -- 1/7 chance to spawn 2 ocelot kittens + if pr:next(1,7) == 1 then + -- Turn object into a child + local make_child = function(object) + local ent = object:get_luaentity() + object:set_properties({ + visual_size = { x = ent.base_size.x/2, y = ent.base_size.y/2 }, + collisionbox = { + ent.base_colbox[1]/2, + ent.base_colbox[2]/2, + ent.base_colbox[3]/2, + ent.base_colbox[4]/2, + ent.base_colbox[5]/2, + ent.base_colbox[6]/2, + } + }) + ent.child = true + end + + -- Possible spawn offsets, two of these will get selected + local k = 0.7 + local offsets = { + { x=k, y=0, z=0 }, + { x=-k, y=0, z=0 }, + { x=0, y=0, z=k }, + { x=0, y=0, z=-k }, + { x=k, y=0, z=k }, + { x=k, y=0, z=-k }, + { x=-k, y=0, z=k }, + { x=-k, y=0, z=-k }, + } + for i=1, 2 do + local o = pr:next(1, #offsets) + local offset = offsets[o] + local child_pos = vector.add(pos, offsets[o]) + table.remove(offsets, o) + make_child(minetest.add_entity(child_pos, "mobs_mc:ocelot")) + end + end + end, +}) + +-- compatibility +mobs:alias_mob("mobs:kitten", "mobs_mc:ocelot") + +-- spawn eggs +-- FIXME: The spawn icon shows a cat texture, not an ocelot texture +mobs:register_egg("mobs_mc:ocelot", S("Ocelot"), "mobs_mc_spawn_icon_cat.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Ocelot loaded") +end diff --git a/mods/ENTITIES/mobs_mc/old_mobs.lua b/mods/ENTITIES/mobs_mc/old_mobs.lua deleted file mode 100644 index 555a7ce28..000000000 --- a/mods/ENTITIES/mobs_mc/old_mobs.lua +++ /dev/null @@ -1,18 +0,0 @@ - --- Compatibility with deleted mobs - --- Magically turn horses into rabbits and cows. :D -mobs:alias_mob("mobs_mc:horse", "mobs_mc:rabbit") -mobs:alias_mob("mobs_mc:horse2", "mobs_mc:cow") -mobs:alias_mob("mobs_mc:horse3", "mobs_mc:cow") - -minetest.register_alias("mobs_mc:horse", "mobs_mc:rabbit") -minetest.register_alias("mobs_mc:horse2", "mobs_mc:cow") -minetest.register_alias("mobs_mc:horse3", "mobs_mc:cow") - --- Magically turn wolves into sheep. (How ironic!) -mobs:alias_mob("mobs_mc:wolf", "mobs_mc:sheep") -mobs:alias_mob("mobs_mc:dog", "mobs_mc:sheep") - -minetest.register_alias("mobs_mc:wolf", "mobs_mc:sheep") - diff --git a/mods/ENTITIES/mobs_mc/parrot.lua b/mods/ENTITIES/mobs_mc/parrot.lua new file mode 100644 index 000000000..40ff07515 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/parrot.lua @@ -0,0 +1,97 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +--################### +--################### PARROT +--################### + + + +mobs:register_mob("mobs_mc:parrot", { + type = "npc", + pathfinding = 1, + hp_min = 6, + hp_max = 6, + collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.89, 0.25}, + visual = "mesh", + mesh = "mobs_mc_parrot.b3d", + textures = {{"mobs_mc_parrot_blue.png"},{"mobs_mc_parrot_green.png"},{"mobs_mc_parrot_grey.png"},{"mobs_mc_parrot_red_blue.png"},{"mobs_mc_parrot_yellow_blue.png"}}, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + walk_velocity = 3, + run_velocity = 5, + drops = { + {name = mobs_mc.items.feather, + chance = 1, + min = 1, + max = 2,}, + }, + animation = { + stand_speed = 50, + walk_speed = 50, + stand_start = 0, + stand_end = 0, + walk_start = 0, + walk_end = 130, + --run_start = 0, + --run_end = 20, + --fly_start = 30, + --fly_end = 45, + }, + walk_chance = 100, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + fall_damage = 0, + fall_speed = -2.25, + attack_type = "dogfight", + jump = true, + jump_height = 4, + floats = 1, + physical = true, + fly = true, + fly_in = {"air"}, + fear_height = 4, + view_range = 16, + follow = mobs_mc.follow.parrot, + on_rightclick = function(self, clicker) + if self._doomed then return end + local item = clicker:get_wielded_item() + -- Kill parrot if fed with cookie + if item:get_name() == mobs_mc.items.cookie then + self.health = 0 + -- Doomed to die + self._doomed = true + if not minetest.settings:get_bool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + return + end + + -- Feed to tame, but not breed + if mobs:feed_tame(self, clicker, 1, false, true) then return end + if mobs:protect(self, clicker) then return end + if mobs:capture_mob(self, clicker, 0, 50, 80, false, nil) then return end + end, + +}) + + +--spawn + +-- spawn eggs +mobs:register_egg("mobs_mc:parrot", S("Parrot"), "mobs_mc_spawn_icon_parrot.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Parrot loaded") +end diff --git a/mods/ENTITIES/mobs_mc/pig.lua b/mods/ENTITIES/mobs_mc/pig.lua index cb9accf07..ffd97a50c 100644 --- a/mods/ENTITIES/mobs_mc/pig.lua +++ b/mods/ENTITIES/mobs_mc/pig.lua @@ -1,48 +1,46 @@ ---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") +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") mobs:register_mob("mobs_mc:pig", { type = "animal", + runaway = true, hp_min = 10, hp_max = 10, - collisionbox = {-0.5, -0.01, -0.5, 0.5, 0.874, 0.5}, - + collisionbox = {-0.45, -0.01, -0.45, 0.45, 0.865, 0.45}, visual = "mesh", - visual_size = {x=0.875, y=0.875}, - mesh = "mobs_pig.x", + mesh = "mobs_mc_pig.b3d", textures = { - {"mobs_pig.png"} + {"mobs_mc_pig.png"}, }, + visual_size = {x=2.5, y=2.5}, makes_footstep_sound = true, walk_velocity = 1, - armor = 100, + run_velocity = 3, drops = { - {name = "mcl_mobitems:porkchop", + {name = mobs_mc.items.porkchop_raw, chance = 1, min = 1, max = 3,}, }, - drawtype = "front", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + water_damage = 1, + lava_damage = 4, light_damage = 0, fear_height = 4, - jump_height = 4.5, sounds = { random = "mobs_pig", death = "mobs_pig_angry", damage = "mobs_pig", + distance = 16, }, animation = { - speed_normal = 24, + speed_normal = 40, stand_start = 0, - stand_end = 23, - walk_start = 24, - walk_end = 49, + stand_end = 0, + walk_start = 0, + walk_end = 40, hurt_start = 118, hurt_end = 154, death_start = 154, @@ -52,8 +50,43 @@ mobs:register_mob("mobs_mc:pig", { look_start = 78, look_end = 108, }, - follow = {"mcl_farming:beetroot_item", "mcl_farming:carrot_item", "mcl_mobitems:carrot_on_a_stick", "mcl_farming:potato_item"}, + follow = mobs_mc.follow.pig, view_range = 5, + do_custom = function(self, dtime) + + -- set needed values if not already present + if not self.v2 then + self.v2 = 0 + self.max_speed_forward = 4 + self.max_speed_reverse = 2 + self.accel = 4 + self.terrain_type = 3 + self.driver_attach_at = {x = 0.0, y = 6.75, z = -1.5} + self.driver_eye_offset = {x = 0, y = 3, z = 0} + self.driver_scale = {x = 1/self.visual_size.x, y = 1/self.visual_size.y} + end + + -- if driver present allow control of horse + if self.driver then + + mobs.drive(self, "walk", "stand", false, dtime) + + return false -- skip rest of mob functions + end + + return true + end, + + on_die = function(self, pos) + + -- drop saddle when horse is killed while riding + -- also detach from horse properly + if self.driver then + mobs.detach(self.driver, {x = 1, y = 0, z = 1}) + end + + end, + on_rightclick = function(self, clicker) if not clicker or not clicker:is_player() then return @@ -61,31 +94,35 @@ mobs:register_mob("mobs_mc:pig", { local wielditem = clicker:get_wielded_item() -- Feed pig - if wielditem:get_name() ~= "mcl_mobitems:carrot_on_a_stick" then - if mobs:feed_tame(self, clicker, 1, true, true) then - return - end + if wielditem:get_name() ~= mobs_mc.items.carrot_on_a_stick then + if mobs:feed_tame(self, clicker, 1, true, true) then return end end - + if mobs:protect(self, clicker) then return end + + if self.child then + return + end + -- Put saddle on pig local item = clicker:get_wielded_item() - if item:get_name() == "mcl_mobitems:saddle" and self.saddle ~= "yes" then + if item:get_name() == mobs_mc.items.saddle and self.saddle ~= "yes" then + self.base_texture = {"mobs_mc_pig.png^mobs_mc_pig_saddle.png"} self.object:set_properties({ - textures = {"mobs_pig_with_saddle.png"}, + textures = self.base_texture }) self.saddle = "yes" self.tamed = true self.drops = { - {name = "mcl_mobitems:porkchop", + {name = mobs_mc.items.porkchop_raw, chance = 1, min = 1, max = 3,}, - {name = "mcl_mobitems:saddle", + {name = mobs_mc.items.saddle, chance = 1, min = 1, max = 1,}, } - if not minetest.setting_getbool("creative_mode") then + if not minetest.settings:get_bool("creative_mode") then local inv = clicker:get_inventory() local stack = inv:get_stack("main", clicker:get_wield_index()) stack:take_item() @@ -94,89 +131,55 @@ mobs:register_mob("mobs_mc:pig", { return end - -- from boats mod - -- Ride pig if it has a saddle and player uses a carrot on a stick - local name = clicker:get_player_name() - if self.driver and clicker == self.driver then - self.driver = nil - clicker:set_detach() - mcl_player.player_attached[name] = false - mcl_player.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}) - mcl_player.player_attached[name] = true - minetest.after(0.2, function() - mcl_player.player_set_animation(clicker, "sit" , 30) - end) - if self.name == "mobs_mc:pig" and self.saddle == "yes" and self.driver then - if wielditem:get_name() == "mcl_mobitems:carrot_on_a_stick" 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}) + -- Mount or detach player + local name = clicker:get_player_name() + if self.driver and clicker == self.driver then + -- Detach if already attached + mobs.detach(clicker, {x=1, y=0, z=0}) + return + + elseif not self.driver and self.saddle == "yes" and wielditem:get_name() == mobs_mc.items.carrot_on_a_stick then + -- Ride pig if it has a saddle and player uses a carrot on a stick + + mobs.attach(self, clicker) + + if not minetest.settings:get_bool("creative_mode") then local inv = self.driver:get_inventory() -- 26 uses if wielditem:get_wear() > 63000 then - wielditem = {name = "mcl_fishing:fishing_rod", count = 1} + -- Break carrot on a stick + local def = wielditem:get_definition() + if def.sounds and def.sounds.breaks then + minetest.sound_play(def.sounds.breaks, {pos = clicker:getpos(), max_hear_distance = 8, gain = 0.5}) + end + wielditem = {name = mobs_mc.items.fishing_rod, count = 1} else wielditem:add_wear(2521) end - inv:set_stack("main", self.driver:get_wield_index(), wielditem) - return + inv:set_stack("main",self.driver:get_wield_index(), wielditem) end + return + + -- Capture pig + elseif not self.driver and clicker:get_wielded_item():get_name() ~= "" then + mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) end - end end, }) -mobs:register_spawn("mobs_mc:pig", {"mcl_core:dirt_with_grass"}, 20, 9, 5000, 1, 31000) - - ---[[ - - 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.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, -]] - - - - - +mobs:register_spawn("mobs_mc:pig", mobs_mc.spawn.grassland, minetest.LIGHT_MAX+1, 9, 15000, 30, 31000) -- compatibility mobs:alias_mob("mobs:pig", "mobs_mc:pig") -- spawn eggs -mobs:register_egg("mobs_mc:pig", "Spawn Pig", "spawn_egg_pig.png") +mobs:register_egg("mobs_mc:pig", S("Pig"), "mobs_mc_spawn_icon_pig.png", 0) + + +if minetest.settings:get("log_mods") then + -if minetest.setting_get("log_mods") then minetest.log("action", "MC Pig loaded") end diff --git a/mods/ENTITIES/mobs_mc/polar_bear.lua b/mods/ENTITIES/mobs_mc/polar_bear.lua new file mode 100644 index 000000000..9f292dad4 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/polar_bear.lua @@ -0,0 +1,83 @@ +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +--################### +--################### POLARBEAR +--################### + + +mobs:register_mob("mobs_mc:polar_bear", { + type = "animal", + runaway = false, + passive = false, + stepheight = 1.2, + hp_min = 30, + hp_max = 30, + collisionbox = {-0.7, -0.01, -0.7, 0.7, 1.39, 0.7}, + visual = "mesh", + mesh = "mobs_mc_polarbear.b3d", + textures = { + {"mobs_mc_polarbear.png"}, + }, + visual_size = {x=3.0, y=3.0}, + makes_footstep_sound = true, + damage = 6, + walk_velocity = 1.2, + run_velocity = 2.4, + group_attack = true, + attack_type = "dogfight", + drops = { + -- 3/4 chance to drop raw fish (poor approximation) + {name = mobs_mc.items.fish_raw, + chance = 2, + min = 0, + max = 2,}, + -- 1/4 to drop raw salmon + {name = mobs_mc.items.salmon_raw, + chance = 4, + min = 0, + max = 2,}, + + }, + water_damage = 0, + floats = 1, + lava_damage = 5, + light_damage = 0, + fear_height = 4, + sounds = { + random = "Cowhurt1", -- TODO: Replace + distance = 16, + }, + animation = { + speed_normal = 25, speed_run = 50, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + }, + + view_range = 16, +}) + + +-- compatibility +mobs:alias_mob("mobs_mc:polarbear", "mobs_mc:polar_bear") + + +mobs:register_spawn("mobs_mc:polar_bear", mobs_mc.spawn.snow, minetest.LIGHT_MAX+1, 0, 7000, 3, 31000) + + +-- spawn egg + + + +mobs:register_egg("mobs_mc:polar_bear", S("Polar Bear"), "mobs_mc_spawn_icon_polarbear.png", 0) + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Polar Bear loaded") +end diff --git a/mods/ENTITIES/mobs_mc/rabbit.lua b/mods/ENTITIES/mobs_mc/rabbit.lua index 199077625..932cf7f30 100644 --- a/mods/ENTITIES/mobs_mc/rabbit.lua +++ b/mods/ENTITIES/mobs_mc/rabbit.lua @@ -1,82 +1,174 @@ +--License for code WTFPL and otherwise stated in readmes -local S = mobs.intllib +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") - --- Rabbit by ExeterDad - -mobs:register_mob("mobs_mc:rabbit", { +local rabbit = { type = "animal", passive = true, - reach = 1, + reach = 2, + hp_min = 3, hp_max = 3, - armor = 100, - collisionbox = {-0.268, -0.5, -0.268, 0.268, 0.167, 0.268}, + collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.49, 0.2}, + visual = "mesh", - mesh = "mobs_bunny.b3d", - drawtype = "front", + mesh = "mobs_mc_rabbit.b3d", textures = { - {"mobs_bunny_black.png"}, - {"mobs_bunny_brown.png"}, - {"mobs_bunny_salt.png"}, - {"mobs_bunny_white.png"}, - {"mobs_bunny_gold.png"}, + {"mobs_mc_rabbit_brown.png"}, + {"mobs_mc_rabbit_gold.png"}, + {"mobs_mc_rabbit_white.png"}, + {"mobs_mc_rabbit_white_splotched.png"}, + {"mobs_mc_rabbit_salt.png"}, + {"mobs_mc_rabbit_black.png"}, }, + visual_size = {x=1.5, y=1.5}, sounds = {}, makes_footstep_sound = false, walk_velocity = 1, - run_velocity = 2, + run_velocity = 3.7, + floats = 1, runaway = true, jump = true, drops = { - {name = "mcl_mobitems:rabbit", chance = 1, min = 0, max = 1}, - {name = "mcl_mobitems:rabbit_hide", chance = 1, min = 0, max = 1}, - {name = "mcl_mobitems:rabbit_foot", chance = 10, min = 1, max = 1}, + {name = mobs_mc.items.rabbit_raw, chance = 1, min = 0, max = 1}, + {name = mobs_mc.items.rabbit_hide, chance = 1, min = 0, max = 1}, + {name = mobs_mc.items.rabbit_foot, chance = 10, min = 1, max = 1}, }, - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + water_damage = 1, + lava_damage = 4, light_damage = 0, - fear_height = 3, + fear_height = 4, animation = { - speed_normal = 15, - stand_start = 1, - stand_end = 15, - walk_start = 16, - walk_end = 24, - punch_start = 16, - punch_end = 24, + speed_normal = 25, speed_run = 50, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, }, - follow = {"mcl_farming:carrot_item", "mcl_farming:carrot_item_gold", "mcl_flowers:dandelion"}, + -- Follow (yellow) dangelions, carrots and golden carrots + follow = mobs_mc.follow.rabbit, view_range = 8, + -- Eat carrots and reduce their growth stage by 1 replace_rate = 10, - replace_what = {"mcl_farming:carrot_3", "mcl_farming:carrot_2", "mcl_farming:carrot_1"}, - replace_with = "air", + replace_what = mobs_mc.replace.rabbit, on_rightclick = function(self, clicker) - - -- feed or tame - if mobs:feed_tame(self, clicker, 1, true, true) then - return - end - + -- Feed, tame protect or capture + if mobs:feed_tame(self, clicker, 1, true, true) then return end + if mobs:protect(self, clicker) then return end + if mobs:capture_mob(self, clicker, 0, 50, 80, false, nil) then return end + end, + do_custom = function(self) + -- Easter egg: Change texture if rabbit is named “Toast” + if self.nametag == "Toast" and not self._has_toast_texture then + self._original_rabbit_texture = self.base_texture + self.base_texture = { "mobs_mc_rabbit_toast.png" } + self.object:set_properties({ textures = self.base_texture }) + self._has_toast_texture = true + elseif self.nametag ~= "Toast" and self._has_toast_texture then + self.base_texture = self._original_rabbit_texture + self.object:set_properties({ textures = self.base_texture }) + self._has_toast_texture = false + end end, -}) - - -local spawn_on = { - "mcl_core::dirt_with_grass", "mcl_core:sand", "mcl_core:snow", "mcl_core:snowblock", "mcl_core:podzol", "mcl_core:ice" } -mobs:spawn({ +mobs:register_mob("mobs_mc:rabbit", rabbit) + +-- The killer bunny (Only with spawn egg) +local killer_bunny = table.copy(rabbit) +killer_bunny.type = "monster" +killer_bunny.attack_type = "dogfight" +killer_bunny.specific_attack = { "player", "mobs_mc:wolf", "mobs_mc:dog" } +killer_bunny.damage = 8 +killer_bunny.passive = false +-- 8 armor points +killer_bunny.armor = 50 +killer_bunny.textures = { "mobs_mc_rabbit_caerbannog.png" } +killer_bunny.view_range = 16 +killer_bunny.replace_rate = nil +killer_bunny.replace_what = nil +killer_bunny.on_rightclick = nil +killer_bunny.run_velocity = 6 +killer_bunny.do_custom = function(self) + if not self._killer_bunny_nametag_set then + self.nametag = "The Killer Bunny" + self._killer_bunny_nametag_set = true + end +end + +mobs:register_mob("mobs_mc:killer_bunny", killer_bunny) + +-- Mob spawning rules. +-- Different skins depending on spawn location + +local spawn = { name = "mobs_mc:rabbit", - nodes = spawn_on, - min_light = 10, chance = 15000, - min_height = 0, - day_toggle = true, -}) + active_object_count = 99, + min_light = 0, + max_light = minetest.LIGHT_MAX+1, +} + +local spawn_desert = table.copy(spawn) +spawn_desert.nodes = mobs_mc.spawn.desert +on_spawn = function(self, pos) + local ent = self:get_luaentity() + texture = "mobs_mc_rabbit_gold.png" + ent.base_texture = { "mobs_mc_rabbit_gold.png" } + self:set_properties({textures = ent.base_texture}) +end +mobs:spawn(spawn_desert) + +local spawn_snow = table.copy(spawn) +spawn_snow.nodes = mobs_mc.spawn.snow +spawn_snow.on_spawn = function(self, pos) + local ent = self:get_luaentity() + local texture + local r = math.random(1, 100) + -- 80% white fur + if r <= 80 then + texture = "mobs_mc_rabbit_white.png" + -- 20% black and white fur + else + texture = "mobs_mc_rabbit_white_splotched.png" + end + ent.base_texture = { texture } + self:set_properties({textures = ent.base_texture}) +end +mobs:spawn(spawn_snow) + +local spawn_grass = table.copy(spawn) +spawn_grass.nodes = mobs_mc.spawn.grassland +spawn_grass.on_spawn = function(self, pos) + local ent = self:get_luaentity() + local texture + local r = math.random(1, 100) + -- 50% brown fur + if r <= 50 then + texture = "mobs_mc_rabbit_brown.png" + -- 40% salt fur + elseif r <= 90 then + texture = "mobs_mc_rabbit_salt.png" + -- 10% black fur + else + texture = "mobs_mc_rabbit_black.png" + end + ent.base_texture = { texture } + self:set_properties({textures = ent.base_texture}) +end +mobs:spawn(spawn_grass) + +-- Spawn egg +mobs:register_egg("mobs_mc:rabbit", S("Rabbit"), "mobs_mc_spawn_icon_rabbit.png", 0) + +-- Note: This spawn egg does not exist in Minecraft +mobs:register_egg("mobs_mc:killer_bunny", S("Killer Bunny"), "mobs_mc_spawn_icon_rabbit.png^[colorize:#FF0000:192", 0) -- TODO: Update inventory image -mobs:register_egg("mobs_mc:rabbit", "Spawn Rabbit", "spawn_egg_rabbit.png", 0) - - -mobs:alias_mob("mobs:bunny", "mobs_mc:bunny") -- compatibility +-- compatibility +mobs:alias_mob("mobs:bunny", "mobs_mc:rabbit") +if minetest.setting_get("log_mods") then + minetest.log("action", "MC Bunny loaded") +end diff --git a/mods/ENTITIES/mobs_mc/sheep.lua b/mods/ENTITIES/mobs_mc/sheep.lua index e02736fff..8fa76b766 100644 --- a/mods/ENTITIES/mobs_mc/sheep.lua +++ b/mods/ENTITIES/mobs_mc/sheep.lua @@ -1,127 +1,138 @@ ---MCmobs v0.2 ---maikerumine ---made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--################### +--################### SHEEP +--################### + local colors = { - -- dyecolor = { woolcolor, textures } - white = { "white", { "mobs_sheep.png" } }, - brown = { "brown", { "mobs_sheep_brown.png" } }, - grey = { "silver", { "mobs_sheep_grey.png" } }, - dark_grey = { "grey", { "mobs_sheep_dark_grey.png" } }, - blue = { "blue", { "mobs_sheep_blue.png" } }, - lightblue = { "light_blue", { "mobs_sheep_lightblue.png" } }, - dark_green = { "green", { "mobs_sheep_dark_green.png" } }, - green = { "lime", { "mobs_sheep_green.png" } }, - violet = { "purple", { "mobs_sheep_violet.png" } }, - pink = { "pink", { "mobs_sheep_pink.png" } }, - yellow = { "yellow", { "mobs_sheep_yellow.png" } }, - orange = { "orange", { "mobs_sheep_orange.png" } }, - red = { "red", { "mobs_sheep_red.png" } }, - cyan = { "cyan", { "mobs_sheep_cyan.png" } }, - magenta = { "magenta", { "mobs_sheep_magenta.png" } }, - black = { "black", { "mobs_sheep_black.png" } }, + -- group = { wool, textures } + unicolor_white = { mobs_mc.items.wool_white, "#FFFFFF00" }, + unicolor_dark_orange = { mobs_mc.items.wool_brown, "#502A00D0" }, + unicolor_grey = { mobs_mc.items.wool_light_grey, "#5B5B5BD0" }, + unicolor_darkgrey = { mobs_mc.items.wool_grey, "#303030D0" }, + unicolor_blue = { mobs_mc.items.wool_blue, "#0000CCD0" }, + unicolor_dark_green = { mobs_mc.items.wool_green, "#005000D0" }, + unicolor_green = { mobs_mc.items.wool_lime, "#50CC00D0" }, + unicolor_violet = { mobs_mc.items.wool_purple , "#5000CCD0" }, + unicolor_light_red = { mobs_mc.items.wool_pink, "#FF5050D0" }, + unicolor_yellow = { mobs_mc.items.wool_yellow, "#CCCC00D0" }, + unicolor_orange = { mobs_mc.items.wool_orange, "#CC5000D0" }, + unicolor_red = { mobs_mc.items.wool_red, "#CC0000D0" }, + unicolor_cyan = { mobs_mc.items.wool_cyan, "#00CCCCD0" }, + unicolor_red_violet = { mobs_mc.items.wool_magenta, "#CC0050D0" }, + unicolor_black = { mobs_mc.items.wool_black, "#000000D0" }, } --- Sheep +if minetest.get_modpath("mcl_wool") ~= nil then + colors["unicolor_light_blue"] = { mobs_mc.items.wool_light_blue, "#5050FFD0" } +end + +local sheep_texture = function(color_group) + return {"mobs_mc_sheep.png^(mobs_mc_sheep_fur.png^[colorize:"..colors[color_group][2]..")"} +end + +--mcsheep mobs:register_mob("mobs_mc:sheep", { type = "animal", hp_min = 8, hp_max = 8, - -- FIXME: Should be 1.3 blocks high - collisionbox = {-0.45, -0.01, -0.45, 0.45, 1.09, 0.45}, - + + collisionbox = {-0.45, -0.01, -0.45, 0.45, 1.29, 0.45}, + visual = "mesh", - visual_size = {x=0.6, y=0.6}, - mesh = "mobs_sheep.x", - textures = {{"mobs_sheep.png"}}, + visual_size = {x=3, y=3}, + mesh = "mobs_mc_sheepfur.b3d", + gotten_mesh = "mobs_mc_sheepnaked.b3d", + textures = { sheep_texture("unicolor_white") }, + color = "unicolor_white", makes_footstep_sound = true, walk_velocity = 1, - armor = 100, drops = { - {name = "mcl_mobitems:mutton", + {name = mobs_mc.items.mutton_raw, chance = 1, min = 1, max = 2,}, - {name = "mcl_wool:white", + {name = colors["unicolor_white"][1], chance = 1, min = 1, max = 1,}, }, - drawtype = "front", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + water_damage = 1, + lava_damage = 4, light_damage = 0, fear_height = 4, - jump_height = 4.5, sounds = { random = "mobs_sheep", death = "mobs_sheep", damage = "mobs_sheep", + distance = 16, }, 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, + speed_normal = 25, speed_run = 50, + stand_start = 40, stand_end = 80, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, }, - follow = {"mcl_farming:wheat_item"}, - view_range = 5, + follow = mobs_mc.follow.sheep, + view_range = 12, - replace_rate = 10, - replace_what = {"mcl_core:dirt_with_grass", "mcl_flowers:tallgrass"}, - replace_with = "air", + -- Eat grass + replace_rate = 20, + replace_what = mobs_mc.replace.sheep, + -- Properly regrow wool after eating grass + on_replace = function(self, pos, oldnode, newnode) + self.gotten = false + self.drops = { + {name = mobs_mc.items.mutton_raw, + chance = 1, + min = 1, + max = 2,}, + {name = colors[self.color][1], + chance = 1, + min = 1, + max = 1,}, + } + self.object:set_properties({ + mesh = "mobs_mc_sheepfur.b3d", + }) + end, + + -- Set random color on spawn do_custom = function(self) if not self.initial_color_set then local r = math.random(0,100000) local textures if r <= 81836 then -- 81.836% - self.color = colors["white"][1] - textures = colors["white"][2] - self.base_texture = colors["white"][2] + self.color = "unicolor_white" elseif r <= 81836 + 5000 then -- 5% - self.color = colors["grey"][1] - textures = colors["grey"][2] - self.base_texture = colors["grey"][2] + self.color = "unicolor_grey" elseif r <= 81836 + 5000 + 5000 then -- 5% - self.color = colors["dark_grey"][1] - textures = colors["dark_grey"][2] - self.base_texture = colors["dark_grey"][2] + self.color = "unicolor_darkgrey" elseif r <= 81836 + 5000 + 5000 + 5000 then -- 5% - self.color = colors["black"][1] - textures = colors["black"][2] - self.base_texture = colors["black"][2] + self.color = "unicolor_black" elseif r <= 81836 + 5000 + 5000 + 5000 + 3000 then -- 3% - self.color = colors["brown"][1] - textures = colors["brown"][2] - self.base_texture = colors["brown"][2] + self.color = "unicolor_dark_orange" else -- 0.164% - self.color = colors["pink"][1] - textures = colors["pink"][2] - self.base_texture = colors["pink"][2] + self.color = "unicolor_light_red" end - self.textures = { textures }, - self.object:set_properties({ textures = textures }) + self.base_texture = sheep_texture(self.color) + self.object:set_properties({ textures = self.base_texture }) self.drops = { - {name = "mcl_mobitems:mutton", + {name = mobs_mc.items.mutton_raw, chance = 1, min = 1, max = 2,}, - {name = "mcl_wool:"..self.color, + {name = colors[self.color][1], chance = 1, min = 1, max = 1,}, @@ -129,69 +140,72 @@ mobs:register_mob("mobs_mc:sheep", { self.initial_color_set = true end end, + on_rightclick = function(self, clicker) - - if mobs:feed_tame(self, clicker, 1, true, true) then - return - end - local item = clicker:get_wielded_item() - if item:get_name() == "mcl_tools:shears" and not self.gotten and not self.child then + + if mobs:feed_tame(self, clicker, 1, true, true) then return end + if mobs:protect(self, clicker) then return end + + if item:get_name() == mobs_mc.items.shears and not self.gotten then self.gotten = 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("mcl_wool:white "..math.random(1,3))) - else - minetest.add_item(pos, ItemStack("mcl_wool:"..self.color.." "..math.random(1,3))) + self.color = "unicolor_white" end + minetest.add_item(pos, ItemStack(colors[self.color][1].." "..math.random(1,3))) self.object:set_properties({ - textures = {"mobs_sheep_sheared.png"}, + mesh = "mobs_mc_sheepnaked.b3d", }) - if not minetest.setting_getbool("creative_mode") then - item:add_wear(65535/238) + if not minetest.settings:get_bool("creative_mode") then + item:add_wear(mobs_mc.misc.shears_wear) 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.gotten 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 = colors[pname][2], - }) - self.base_texture = colors[pname][2] - self.color = colors[pname][1] self.drops = { - {name = "mcl_mobitems:mutton", + {name = mobs_mc.items.mutton_raw, chance = 1, min = 1, max = 2,}, - {name = "mcl_wool:"..self.color, - chance = 1, - min = 1, - max = 1,}, } - - if not minetest.setting_getbool("creative_mode") then - item:take_item() - clicker:get_inventory():set_stack("main", clicker:get_wield_index(), item) - end + return end + -- Dye sheep + if minetest.get_item_group(item:get_name(), "dye") == 1 and not self.gotten then + minetest.log("verbose", "[mobs_mc] " ..item:get_name() .. " " .. minetest.get_item_group(item:get_name(), "dye")) + for group, colordata in pairs(colors) do + if minetest.get_item_group(item:get_name(), group) == 1 then + self.base_texture = sheep_texture(group) + self.object:set_properties({ + textures = self.base_texture, + }) + self.color = group + self.drops = { + {name = mobs_mc.items.mutton_raw, + chance = 1, + min = 1, + max = 2,}, + {name = colordata[1], + chance = 1, + min = 1, + max = 1,}, + } + break + end + end + return + end + if mobs:capture_mob(self, clicker, 0, 5, 70, false, nil) then return end end, }) -mobs:register_spawn("mobs_mc:sheep", {"mcl_core:dirt_with_grass"}, 20, 9, 5000, 2, 31000) - +mobs:register_spawn("mobs_mc:sheep", mobs_mc.spawn.grassland, minetest.LIGHT_MAX+1, 0, 15000, 3, 31000) -- compatibility -mobs:alias_mob("mobs:sheep", "mobs_mc:sheep") - +mobs:alias_mob("mobs_animal:sheep", "mobs_mc:sheep") -- spawn eggs -mobs:register_egg("mobs_mc:sheep", "Spawn Sheep", "spawn_egg_sheep.png") +mobs:register_egg("mobs_mc:sheep", S("Sheep"), "mobs_mc_spawn_icon_sheep.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC Sheep loaded") end diff --git a/mods/ENTITIES/mobs_mc/shulker.lua b/mods/ENTITIES/mobs_mc/shulker.lua new file mode 100644 index 000000000..2f6b10d0b --- /dev/null +++ b/mods/ENTITIES/mobs_mc/shulker.lua @@ -0,0 +1,93 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +--################### +--################### SHULKER +--################### + +-- animation 45-80 is transition between passive and attack stance + +mobs:register_mob("mobs_mc:shulker", { + type = "monster", + attack_type = "shoot", + shoot_interval = 0.5, + arrow = "mobs_mc:shulkerbullet", + shoot_offset = 0.5, + passive = false, + hp_min = 30, + hp_max = 30, + armor = 150, + collisionbox = {-0.5, -0.01, -0.5, 0.5, 0.99, 0.5}, + visual = "mesh", + mesh = "mobs_mc_shulker.b3d", + textures = { "mobs_mc_endergolem.png", }, + -- TODO: Make shulker dye-able + visual_size = {x=3, y=3}, + walk_chance = 0, + jump = false, + drops = { + {name = mobs_mc.items.shulker_shell, + chance = 1, + min = 0, + max = 1,}, + }, + animation = { + stand_speed = 25, walk_speed = 25, run_speed = 50, punch_speed = 25, + speed_normal = 25, speed_run = 50, + stand_start = 0, stand_end = 45, + walk_start = 0, walk_end = 45, + run_start = 0, run_end = 45, + punch_start = 80, punch_end = 100, + }, + blood_amount = 0, + view_range = 16, + fear_height = 4, + water_damage = 1, + lava_damage = 4, + light_damage = 0, +}) + +-- bullet arrow (weapon) +mobs:register_arrow("mobs_mc:shulkerbullet", { + visual = "sprite", + visual_size = {x = 0.25, y = 0.25}, + textures = {"mobs_mc_shulkerbullet.png"}, + velocity = 6, + + hit_player = function(self, player) + player:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = 4}, + }, nil) + end, + + hit_mob = function(self, player) + player:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = 4}, + }, nil) + end, + + hit_node = function(self, pos, node) + end +}) + + +mobs:register_egg("mobs_mc:shulker", S("Shulker"), "mobs_mc_spawn_icon_shulker.png", 0) + +mobs:spawn_specific("mobs_mc:shulker", mobs_mc.spawn.end_city, 0, minetest.LIGHT_MAX+1, 5, 3, 1, -31000, -5000) + + + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Shulkers loaded") +end diff --git a/mods/ENTITIES/mobs_mc/silverfish.lua b/mods/ENTITIES/mobs_mc/silverfish.lua new file mode 100644 index 000000000..8fd4d5759 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/silverfish.lua @@ -0,0 +1,128 @@ +--################### +--################### SILVERFISH +--################### + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +mobs:register_mob("mobs_mc:silverfish", { + type = "monster", + passive = false, + group_attack = true, + reach = 1, + hp_min = 8, + hp_max = 8, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 0.44, 0.4}, + visual = "mesh", + mesh = "mobs_mc_silverfish.b3d", + textures = { + {"mobs_mc_silverfish.png"}, + }, + pathfinding = 1, + visual_size = {x=3, y=3}, + sounds = {}, + makes_footstep_sound = false, + walk_velocity = 0.6, + run_velocity = 2, + jump = true, + water_damage = 1, + lava_damage = 4, + light_damage = 0, + fear_height = 4, + replace_what = mobs_mc.replace.silverfish, + replace_rate = 2, + animation = { + speed_normal = 25, speed_run = 50, + stand_start = 0, stand_end = 20, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, + }, + view_range = 16, + attack_type = "dogfight", + damage = 1, + blood_amount = 0, +}) + +mobs:register_egg("mobs_mc:silverfish", S("Silverfish"), "mobs_mc_spawn_icon_silverfish.png", 0) + +-- Monster egg blocks (Minetest Game) +if minetest.get_modpath("default") and mobs_mc.create_monster_egg_nodes then + local spawn_silverfish = function(pos, oldnode, oldmetadata, digger) + if not minetest.setting_getbool("creative_mode") then + minetest.add_entity(pos, "mobs_mc:silverfish") + end + end + minetest.register_node("mobs_mc:monster_egg_stone", { + description = S("Stone Monster Egg"), + tiles = {"default_stone.png"}, + groups = {oddly_breakable_by_hand = 2, spawns_silverfish = 1}, + drop = '', + is_ground_content = true, + sounds = default.node_sound_stone_defaults(), + after_dig_node = spawn_silverfish, + }) + + minetest.register_node("mobs_mc:monster_egg_cobble", { + description = S("Cobblestone Monster Egg"), + tiles = {"default_cobble.png"}, + is_ground_content = false, + groups = {oddly_breakable_by_hand = 2, spawns_silverfish = 1}, + drop = '', + sounds = default.node_sound_stone_defaults(), + after_dig_node = spawn_silverfish, + }) + + minetest.register_node("mobs_mc:monster_egg_mossycobble", { + description = S("Mossy Cobblestone Monster Egg"), + tiles = {"default_mossycobble.png"}, + is_ground_content = false, + groups = {oddly_breakable_by_hand = 2, spawns_silverfish = 1}, + drop = '', + sounds = default.node_sound_stone_defaults(), + after_dig_node = spawn_silverfish, + }) + + minetest.register_node("mobs_mc:monster_egg_stonebrick", { + description = S("Stone Brick Monster Egg"), + paramtype2 = "facedir", + place_param2 = 0, + tiles = {"default_stone_brick.png"}, + is_ground_content = false, + groups = {oddly_breakable_by_hand = 2, spawns_silverfish = 1}, + drop = '', + sounds = default.node_sound_stone_defaults(), + after_dig_node = spawn_silverfish, + }) + + minetest.register_node("mobs_mc:monster_egg_stone_block", { + description = S("Stone Block Monster Egg"), + tiles = {"default_stone_block.png"}, + is_ground_content = false, + groups = {oddly_breakable_by_hand = 2, spawns_silverfish = 1}, + drop = '', + sounds = default.node_sound_stone_defaults(), + after_dig_node = spawn_silverfish, + }) + + -- Randomly spawn stone monster eggs in the world + local mg_name = minetest.get_mapgen_setting("mg_name") + local scarcity + if mg_name == "v6" then + scarcity = 28 * 28 * 28 + else + scarcity = 22 * 22 * 22 + end + minetest.register_ore({ + ore_type = "scatter", + ore = "mobs_mc:monster_egg_stone", + wherein = "default:stone", + clust_scarcity = scarcity, + clust_num_ores = 3, + clust_size = 2, + y_min = -31000, + y_max = 31000, + biomes = { "grassland" }, + }) + +end diff --git a/mods/ENTITIES/mobs_mc/skeleton+stray.lua b/mods/ENTITIES/mobs_mc/skeleton+stray.lua new file mode 100644 index 000000000..d5808fce7 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/skeleton+stray.lua @@ -0,0 +1,133 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +--################### +--################### SKELETON +--################### + + + +local skeleton = { + type = "monster", + hp_min = 20, + hp_max = 20, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.98, 0.3}, + pathfinding = 1, + group_attack = true, + visual = "mesh", + mesh = "mobs_mc_skeleton.b3d", + textures = { + {"mobs_mc_skeleton.png^mobs_mc_skeleton_bow.png"}, + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + sounds = { + random = "skeleton1", + death = "skeletondeath", + damage = "skeletonhurt1", + distance = 16, + }, + walk_velocity = 1.2, + run_velocity = 2.4, + damage = 2, + drops = { + {name = mobs_mc.items.arrow, + chance = 1, + min = 0, + max = 2,}, + {name = mobs_mc.items.bow, + chance = 11, + min = 1, + max = 1,}, + {name = mobs_mc.items.bone, + chance = 1, + min = 0, + max = 2,}, + + -- Head + -- TODO: Only drop if killed by charged creeper + {name = mobs_mc.items.head_skeleton, + chance = 200, -- 0.5% chance + min = 1, + max = 1,}, + }, + animation = { + stand_start = 0, + stand_end = 40, + speed_stand = 5, + walk_start = 40, + walk_end = 60, + speed_walk = 50, + shoot_start = 70, + shoot_end = 90, + punch_start = 70, + punch_end = 90, + die_start = 120, + die_end = 130, + speed_die = 5, + hurt_start = 100, + hurt_end = 120, + }, + water_damage = 1, + lava_damage = 4, + light_damage = 1, + view_range = 16, + fear_height = 4, + attack_type = "dogshoot", + arrow = "mobs_mc:arrow_entity", + shoot_interval = 2.5, + shoot_offset = 1, + dogshoot_switch = 1, + dogshoot_count_max =1.8, + blood_amount = 0, +} + +mobs:register_mob("mobs_mc:skeleton", skeleton) + + +--################### +--################### STRAY +--################### + +local stray = table.copy(skeleton) +stray.mesh = "mobs_mc_stray.b3d" +stray.textures = { + {"mobs_mc_stray.png"}, +} +-- TODO: different sound (w/ echo) +-- TODO: stray's arrow inflicts slowness status +table.insert(stray.drops, { + -- Chance to drop additional arrow. + -- TODO: Should be tipped arrow of slowness + name = mobs_mc.items.arrow, + chance = 2, + min = 1, + max = 1, +}) + +mobs:register_mob("mobs_mc:stray", stray) + +-- compatibility +mobs:alias_mob("mobs:skeleton", "mobs_mc:skeleton") + +--spawn +mobs:spawn_specific("mobs_mc:skeleton", mobs_mc.spawn.solid,{"air"}, 0, 7, 20, 17000, 2, -110, 31000) +-- TODO: Spawn directly under the sky +mobs:spawn_specific("mobs_mc:stray", mobs_mc.spawn.snow, {"air"}, 0, 7, 20, 19000, 2, -110, 31000) + +-- spawn eggs +mobs:register_egg("mobs_mc:skeleton", S("Skeleton"), "mobs_mc_spawn_icon_skeleton.png", 0) +mobs:register_egg("mobs_mc:stray", S("Stray"), "mobs_mc_spawn_icon_stray.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Skeleton loaded") +end diff --git a/mods/ENTITIES/mobs_mc/skeleton.lua b/mods/ENTITIES/mobs_mc/skeleton.lua deleted file mode 100644 index c976f572b..000000000 --- a/mods/ENTITIES/mobs_mc/skeleton.lua +++ /dev/null @@ -1,144 +0,0 @@ ---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_min = 20, - hp_max = 20, - collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, - pathfinding = 1, - 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 = 100, - drops = { - {name = "mcl_throwing:arrow", - chance = 1, - min = 0, - max = 2,}, - {name = "mcl_mobitems: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", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, - -- TODO: Mob should burn only in direct sunlight - light_damage = 1, - view_range = 16, - attack_type = "dogshoot", - arrow = "mcl_throwing: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:solid"}, 7, -1, 5000, 4, 31000) - - -mobs:register_mob("mobs_mc:skeleton2", { - type = "monster", - hp_min = 20, - hp_max = 20, - collisionbox = {-0.3, -1.0, -0.3, 0.3, 0.8, 0.3}, - pathfinding = 1, - group_attack = false, - visual = "mesh", - mesh = "3d_armor_character.b3d", - textures = { - {"mobs_skeleton2.png", - "3d_armor_trans.png", - minetest.registered_items["mcl_tools:sword_stone"].inventory_image, - }, - }, - makes_footstep_sound = true, - sounds = { - random = "skeleton1", - death = "skeletondeath", - damage = "skeletonhurt1", - }, - walk_velocity = 1.2, - run_velocity = 2.4, - damage = 7, - armor = 100, - drops = { - {name = "mcl_core:coal_lump", - chance = 1, - min = 0, - max = 1,}, - {name = "mcl_mobitems:bone", - chance = 1, - min = 0, - max = 2,}, - {name = "mcl_heads:wither_skeleton", - chance = 40, - min = 1, - max = 1,}, - }, - 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 = 0, - light_damage = 0, - view_range = 16, - attack_type = "dogfight", -}) -mobs:register_spawn("mobs_mc:skeleton2", {"group:solid"}, 7, -1, 5000, 4, -3000) - - -local arrows = { - {"mcl_throwing:arrow", "mcl_throwing:arrow_entity" }, -} - --- compatibility -mobs:alias_mob("mobs:skeleton", "mobs_mc:skeleton") - --- spawn eggs -mobs:register_egg("mobs_mc:skeleton", "Spawn Skeleton", "spawn_egg_skeleton.png") -mobs:register_egg("mobs_mc:skeleton2", "Spawn Wither Skeleton", "spawn_egg_wither_skeleton.png") - - -if minetest.setting_get("log_mods") then - minetest.log("action", "MC Skeleton loaded") -end diff --git a/mods/ENTITIES/mobs_mc/skeleton_wither.lua b/mods/ENTITIES/mobs_mc/skeleton_wither.lua new file mode 100644 index 000000000..ca1d3ce7f --- /dev/null +++ b/mods/ENTITIES/mobs_mc/skeleton_wither.lua @@ -0,0 +1,96 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +--################### +--################### WITHER SKELETON +--################### + + + +mobs:register_mob("mobs_mc:witherskeleton", { + type = "monster", + hp_min = 20, + hp_max = 20, + pathfinding = 1, + group_attack = true, + collisionbox = {-0.35, -0.01, -0.35, 0.35, 2.39, 0.35}, + visual = "mesh", + mesh = "mobs_mc_witherskeleton.b3d", + textures = { + {"mobs_mc_wither_skeleton.png^mobs_mc_wither_skeleton_sword.png"}, + }, + visual_size = {x=3.6, y=3.6}, + makes_footstep_sound = true, + sounds = { + random = "skeleton1", + death = "skeletondeath", + damage = "skeletonhurt1", + distance = 16, + }, + walk_velocity = 1.2, + run_velocity = 2.4, + damage = 7, + drops = { + {name = mobs_mc.items.coal, + chance = 1, + min = 0, + max = 1,}, + {name = mobs_mc.items.bone, + chance = 1, + min = 0, + max = 2,}, + + -- Head + {name = mobs_mc.items.head_wither_skeleton, + chance = 40, -- 2.5% chance + min = 1, + max = 1,}, + }, + animation = { + stand_start = 0, + stand_end = 40, + speed_stand = 5, + walk_start = 40, + walk_end = 60, + speed_walk = 50, + shoot_start = 70, + shoot_end = 90, + punch_start = 70, + punch_end = 90, + die_start = 120, + die_end = 130, + speed_die = 5, + hurt_start = 100, + hurt_end = 120, + }, + water_damage = 0, + lava_damage = 0, + light_damage = 0, + view_range = 16, + attack_type = "dogfight", + arrow = "mobs_mc:arrow_entity", + shoot_interval = 2.5, + shoot_offset = 1, + dogshoot_switch = 1, + dogshoot_count_max =0.5, + blood_amount = 0, + fear_height = 4, +}) + +--spawn +mobs:register_spawn("mobs_mc:witherskeleton", mobs_mc.spawn.nether_fortress, 7, 0, 5000, 3, -3000, true) +-- spawn eggs +mobs:register_egg("mobs_mc:witherskeleton", S("Wither Skeleton"), "mobs_mc_spawn_icon_witherskeleton.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Wither Skeleton loaded") +end diff --git a/mods/ENTITIES/mobs_mc/slime+magma_cube.lua b/mods/ENTITIES/mobs_mc/slime+magma_cube.lua new file mode 100644 index 000000000..ecd4e64aa --- /dev/null +++ b/mods/ENTITIES/mobs_mc/slime+magma_cube.lua @@ -0,0 +1,267 @@ +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +-- Slime +local slime_big = { + type = "monster", + pathfinding = 1, + group_attack = true, + hp_min = 16, + hp_max = 16, + collisionbox = {-1.02, -0.01, -1.02, 1.02, 2.03, 1.02}, + visual_size = {x=12.5, y=12.5}, + textures = {{"mobs_mc_slime.png"}}, + visual = "mesh", + mesh = "mobs_mc_slime.b3d", + blood_texture ="mobs_mc_slime_blood.png", + makes_footstep_sound = true, + sounds = { + jump = "green_slime_jump", + death = "green_slime_death", + damage = "green_slime_damage", + attack = "green_slime_attack", + distance = 16, + }, + damage = 4, + reach = 3, + armor = 100, + drops = {}, + -- TODO: Fix animations + 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, + }, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + fall_damage = 0, + view_range = 16, + attack_type = "dogfight", + passive = false, + jump = true, + walk_velocity = 2.5, + run_velocity = 2.5, + walk_chance = 0, + jump_height = 5.2, + jump_chance = 100, + fear_height = 60, + on_die = function(self, pos) + local angle, posadd + angle = math.random(0, math.pi*2) + for i=1,4 do + posadd = {x=math.cos(angle),y=0,z=math.sin(angle)} + posadd = vector.normalize(posadd) + local slime = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:slime_small") + slime:setvelocity(vector.multiply(posadd, 1.5)) + slime:setyaw(angle-math.pi/2) + angle = angle + math.pi/2 + end + end, +} +mobs:register_mob("mobs_mc:slime_big", slime_big) + +local slime_small = table.copy(slime_big) +slime_small.hp_min = 4 +slime_small.hp_max = 4 +slime_small.collisionbox = {-0.51, -0.01, -0.51, 0.51, 1.00, 0.51} +slime_small.visual_size = {x=6.25, y=6.25} +slime_small.damage = 3 +slime_small.reach = 2.75 +slime_small.walk_velocity = 1.3 +slime_small.run_velocity = 1.3 +slime_small.jump_height = 4.3 +slime_small.on_die = function(self, pos) + local angle, posadd, dir + angle = math.random(0, math.pi*2) + for i=1,4 do + dir = {x=math.cos(angle),y=0,z=math.sin(angle)} + posadd = vector.multiply(vector.normalize(dir), 0.6) + local slime = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:slime_tiny") + slime:setvelocity(dir) + slime:setyaw(angle-math.pi/2) + angle = angle + math.pi/2 + end +end +mobs:register_mob("mobs_mc:slime_small", slime_small) + +local slime_tiny = table.copy(slime_big) +slime_tiny.hp_min = 1 +slime_tiny.hp_max = 1 +slime_tiny.collisionbox = {-0.2505, -0.01, -0.2505, 0.2505, 0.50, 0.2505} +slime_tiny.visual_size = {x=3.125, y=3.125} +slime_tiny.damage = 0 +slime_tiny.reach = 2.5 +slime_tiny.drops = { + -- slimeball + {name = mobs_mc.items.slimeball, + chance = 1, + min = 0, + max = 2,}, +} +slime_tiny.walk_velocity = 0.7 +slime_tiny.run_velocity = 0.7 +slime_tiny.jump_height = 3 +slime_tiny.on_die = nil + +mobs:register_mob("mobs_mc:slime_tiny", slime_tiny) + + +mobs:register_spawn("mobs_mc:slime_tiny", mobs_mc.spawn.solid, minetest.LIGHT_MAX+1, 0, 35000, 4, -12) +mobs:register_spawn("mobs_mc:slime_small", mobs_mc.spawn.solid, minetest.LIGHT_MAX+1, 0, 35000, 4, -12) +mobs:register_spawn("mobs_mc:slime_big", mobs_mc.spawn.solid, minetest.LIGHT_MAX+1, 0, 35000, 4, -12) + + +-- Magma cube +local magma_cube_big = { + type = "monster", + hp_min = 16, + hp_max = 16, + collisionbox = {-1.02, -0.01, -1.02, 1.02, 2.03, 1.02}, + visual_size = {x=12.5, y=12.5}, + textures = {{ "mobs_mc_magmacube.png" }}, + visual = "mesh", + mesh = "mobs_mc_magmacube.b3d", + blood_texture = "mobs_mc_magmacube_blood.png", + makes_footstep_sound = true, + sounds = { + jump = "green_slime_jump", + death = "green_slime_death", + damage = "green_slime_damage", + attack = "green_slime_attack", + distance = 16, + }, + walk_velocity = 4, + run_velocity = 4, + damage = 6, + reach = 3, + armor = 40, + drops = { + {name = mobs_mc.items.magma_cream, + chance = 4, + min = 1, + max = 1,}, + }, + -- TODO: Fix animations + 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, + }, + water_damage = 0, + lava_damage = 0, + light_damage = 0, + fall_damage = 0, + view_range = 16, + attack_type = "dogfight", + passive = false, + jump = true, + jump_height = 8, + walk_chance = 0, + jump_chance = 100, + fear_height = 100000, + on_die = function(self, pos) + local angle, posadd + angle = math.random(0, math.pi*2) + for i=1,3 do + posadd = {x=math.cos(angle),y=0,z=math.sin(angle)} + posadd = vector.normalize(posadd) + local mob = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:magma_cube_small") + mob:setvelocity(vector.multiply(posadd, 1.5)) + mob:setyaw(angle-math.pi/2) + angle = angle + (math.pi*2) / 3 + end + end, +} +mobs:register_mob("mobs_mc:magma_cube_big", magma_cube_big) + +local magma_cube_small = table.copy(magma_cube_big) +magma_cube_small.hp_min = 4 +magma_cube_small.hp_max = 4 +magma_cube_small.collisionbox = {-0.51, -0.01, -0.51, 0.51, 1.00, 0.51} +magma_cube_small.visual_size = {x=6.25, y=6.25} +magma_cube_small.damage = 3 +magma_cube_small.reach = 2.75 +magma_cube_small.walk_velocity = .8 +magma_cube_small.run_velocity = 2.6 +magma_cube_small.jump_height = 6 +magma_cube_small.damage = 4 +magma_cube_small.reach = 2.75 +magma_cube_small.armor = 70 +magma_cube_small.on_die = function(self, pos) + local angle, posadd, dir + angle = math.random(0, math.pi*2) + for i=1,4 do + dir = vector.normalize({x=math.cos(angle),y=0,z=math.sin(angle)}) + posadd = vector.multiply(dir, 0.6) + local mob = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:magma_cube_tiny") + mob:setvelocity(dir) + mob:setyaw(angle-math.pi/2) + angle = angle + math.pi/2 + end +end +mobs:register_mob("mobs_mc:magma_cube_small", magma_cube_small) + +local magma_cube_tiny = table.copy(magma_cube_big) +magma_cube_tiny.hp_min = 1 +magma_cube_tiny.hp_max = 1 +magma_cube_tiny.collisionbox = {-0.2505, -0.01, -0.2505, 0.2505, 0.50, 0.2505} +magma_cube_tiny.visual_size = {x=3.125, y=3.125} +magma_cube_tiny.walk_velocity = 1.02 +magma_cube_tiny.run_velocity = 1.02 +magma_cube_tiny.jump_height = 4 +magma_cube_tiny.damage = 3 +magma_cube_tiny.reach = 2.5 +magma_cube_tiny.armor = 85 +magma_cube_tiny.drops = {} +magma_cube_tiny.on_die = nil + +mobs:register_mob("mobs_mc:magma_cube_tiny", magma_cube_tiny) + + + +mobs:register_spawn("mobs_mc:magma_cube_tiny", mobs_mc.spawn.nether, minetest.LIGHT_MAX+1, 0, 15000, 4, -1000) +mobs:register_spawn("mobs_mc:magma_cube_small", mobs_mc.spawn.nether, minetest.LIGHT_MAX+1, 0, 15500, 4, -1000) +mobs:register_spawn("mobs_mc:magma_cube_big", mobs_mc.spawn.nether, minetest.LIGHT_MAX+1, 0, 16000, 4, -1000) + +mobs:register_spawn("mobs_mc:magma_cube_tiny", mobs_mc.spawn.nether_fortress, minetest.LIGHT_MAX+1, 0, 11000, 4, -1000) +mobs:register_spawn("mobs_mc:magma_cube_small", mobs_mc.spawn.nether_fortress, minetest.LIGHT_MAX+1, 0, 11100, 4, -1000) +mobs:register_spawn("mobs_mc:magma_cube_big", mobs_mc.spawn.nether_fortress, minetest.LIGHT_MAX+1, 0, 11200, 4, -1000) + +-- Compability +mobs:alias_mob("mobs_mc:greensmall", "mobs_mc:slime_tiny") +mobs:alias_mob("mobs_mc:greenmedium", "mobs_mc:slime_small") +mobs:alias_mob("mobs_mc:greenbig", "mobs_mc:slime_big") +mobs:alias_mob("mobs_mc:lavasmall", "mobs_mc:magma_cube_tiny") +mobs:alias_mob("mobs_mc:lavamedium", "mobs_mc:magma_cube_small") +mobs:alias_mob("mobs_mc:lavabig", "mobs_mc:magma_cube_big") + +-- spawn eggs +mobs:register_egg("mobs_mc:magma_cube_big", S("Magma Cube"), "mobs_mc_spawn_icon_magmacube.png") +mobs:register_egg("mobs_mc:slime_big", S("Slime"), "mobs_mc_spawn_icon_slime.png") + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Slimes loaded") +end diff --git a/mods/ENTITIES/mobs_mc/slimes.lua b/mods/ENTITIES/mobs_mc/slimes.lua deleted file mode 100644 index 1e0ee6704..000000000 --- a/mods/ENTITIES/mobs_mc/slimes.lua +++ /dev/null @@ -1,446 +0,0 @@ ---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 = 1, - group_attack = true, - hp_min = 1, - hp_max = 1, - collisionbox = {-0.3, -0.3, -0.3, 0.3, 0.3, 0.3}, - visual_size = {x=0.6, y=0.6}, - 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", - }, - -- FIXME: The tiny slimes deal damage although this number is set to 0. Strange. - damage = 0, - reach = 2.5, - armor = 100, - drops = { - {name = "mcl_mobitems:slimeball", - chance = 1, - min = 0, - max = 2,}, - }, - 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 = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, - light_damage = 0, - fall_damage = 0, - view_range = 16, - attack_type = "dogfight", - passive = false, - jump = true, - walk_velocity = 0.7, - run_velocity = 0.7, - walk_chance = 0, - jump_height = 3, - jump_chance = 98, - fear_height = 12, -}) - -mobs:register_mob("mobs_mc:greenmedium", { - type = "monster", - pathfinding = 1, - group_attack = true, - hp_min = 4, - hp_max = 4, - collisionbox = {-0.6, -0.6, -0.6, 0.6, 0.6, 0.6}, - visual_size = {x=1.2, y=1.2}, - 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", - }, - damage = 2, - reach = 2.75, - armor = 100, - drops = {}, - 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 = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, - light_damage = 0, - fall_damage = 0, - view_range = 16, - attack_type = "dogfight", - passive = false, - jump = true, - walk_chance = 0, - walk_velocity = 1.3, - run_velocity = 1.3, - jump_height = 4.3, - jump_chance = 100, - fear_height = 60, - on_die = function(self, pos) - local angle, posadd, dir - angle = math.random(0, math.pi*2) - for i=1,4 do - dir = {x=math.cos(angle),y=0,z=math.sin(angle)} - posadd = vector.multiply(vector.normalize(dir), 0.6) - local slime = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:greensmall") - slime:setvelocity(dir) - slime:setyaw(angle) - angle = angle + math.pi/2 - end - end -}) - -mobs:register_mob("mobs_mc:greenbig", { - type = "monster", - pathfinding = 1, - group_attack = true, - hp_min = 16, - hp_max = 16, - collisionbox = {-1.2, -1.2, -1.2, 1.2, 1.2, 1.2}, - visual_size = {x=2.4, y=2.4}, - 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", - }, - damage = 4, - reach = 3, - armor = 100, - drops = {}, - 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 = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, - light_damage = 0, - fall_damage = 0, - view_range = 16, - attack_type = "dogfight", - passive = false, - jump = true, - walk_velocity = 2.5, - run_velocity = 2.5, - walk_chance = 0, - jump_height = 5.2, - jump_chance = 100, - fear_height = 60, - on_die = function(self, pos) - local angle, posadd - angle = math.random(0, math.pi*2) - for i=1,4 do - posadd = {x=math.cos(angle),y=0,z=math.sin(angle)} - posadd = vector.normalize(posadd) - local slime = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:greenmedium") - slime:setvelocity(vector.multiply(posadd, 1.5)) - slime:setyaw(angle) - angle = angle + math.pi/2 - end - end, -}) -mobs:register_spawn("mobs_mc:greensmall", {"mcl_core:water_flowing", "group:solid"}, 15, 0, 5000, 4, -12) -mobs:register_spawn("mobs_mc:greenmedium", {"mcl_core:water_flowing", "group:solid"}, 15, 0, 5000, 4, -12) -mobs:register_spawn("mobs_mc:greenbig", {"mcl_core:water_flowing", "group:solid"}, 15, 0, 5000, 4, -12) - - - - -mobs:register_mob("mobs_mc:lavasmall", { - type = "monster", - pathfinding = 1, - group_attack = true, - hp_min = 1, - hp_max = 1, - collisionbox = {-0.2505, -0.2505, -0.2505, 0.2505, 0.2505, 0.2505}, - visual_size = {x=0.51, y=0.51}, - 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 = 1.02, - run_velocity = 1.02, - damage = 3, - reach = 2.5, - armor = 85, - drops = {}, - 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 = 0, - light_damage = 0, - fall_damage = 0, - view_range = 16, - attack_type = "dogfight", - passive = false, - jump = true, - jump_height = 4, - walk_chance = 0, - jump_chance = 80, - fear_height = 100000, -}) - -mobs:register_mob("mobs_mc:lavamedium", { - type = "monster", - pathfinding = 1, - group_attack = true, - hp_min = 4, - hp_max = 4, - collisionbox = {-0.51, -0.51, -0.51, 0.51, 0.51, 0.51}, - visual_size = {x=1.01, y=1.01}, - 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 = 4, - reach = 2.75, - armor = 70, - drops = { - {name = "mcl_mobitems:magma_cream", - chance = 4, - 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 = 0, - lava_damage = 0, - light_damage = 0, - fall_damage = 0, - view_range = 16, - attack_type = "dogfight", - passive = false, - jump = true, - jump_height = 4, - walk_chance = 0, - jump_chance = 98, - fear_height = 100000, - on_die = function(self, pos) - local angle, posadd, dir - angle = math.random(0, math.pi*2) - for i=1,4 do - dir = vector.normalize({x=math.cos(angle),y=0,z=math.sin(angle)}) - posadd = vector.multiply(dir, 0.6) - local mob = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:lavasmall") - mob:setvelocity(dir) - mob:setyaw(angle) - angle = angle + math.pi/2 - end - end -}) - - - -mobs:register_mob("mobs_mc:lavabig", { - type = "monster", - pathfinding = 1, - group_attack = true, - hp_min = 16, - hp_max = 16, - collisionbox = {-1.02, -1.02, -1.02, 1.02, 1.02, 1.02}, - visual_size = {x=2.04, y=2.04}, - 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 = 4, - run_velocity = 4, - damage = 6, - reach = 3, - armor = 40, - drops = { - {name = "mcl_mobitems:magma_cream", - chance = 4, - 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 = 0, - lava_damage = 0, - light_damage = 0, - fall_damage = 0, - view_range = 16, - attack_type = "dogfight", - passive = false, - jump = true, - jump_height = 8, - walk_chance = 0, - jump_chance = 100, - fear_height = 100000, - on_die = function(self, pos) - local angle, posadd - angle = math.random(0, math.pi*2) - for i=1,3 do - posadd = {x=math.cos(angle),y=0,z=math.sin(angle)} - posadd = vector.normalize(posadd) - local mob = minetest.add_entity(vector.add(pos, posadd), "mobs_mc:lavamedium") - mob:setvelocity(vector.multiply(posadd, 1.5)) - mob:setyaw(angle) - angle = angle + (math.pi*2) / 3 - end - end -}) - -mobs:register_spawn("mobs_mc:lavasmall", {"group:solid"}, 15, 0, 5000, 4, -1000) -mobs:register_spawn("mobs_mc:lavamedium", {"group:solid"}, 15, 0, 5500, 4, -1000) -mobs:register_spawn("mobs_mc:lavabig", {"group:solid"}, 15, 0, 6000, 4, -1000) - -mobs:register_spawn("mobs_mc:lavasmall", {"mcl_nether:nether_brick"}, 15, 0, 1000, 4, -1000) -mobs:register_spawn("mobs_mc:lavamedium", {"mcl_nether:nether_brick"}, 15, 0, 1100, 4, -1000) -mobs:register_spawn("mobs_mc:lavabig", {"mcl_nether:nether_brick"}, 15, 0, 1200, 4, -1000) - --- 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", "Spawn Magma Cube", "spawn_egg_magma_cube.png") -mobs:register_egg("mobs_mc:greenbig", "Spawn Slime", "spawn_egg_slime.png") - - -if minetest.setting_get("log_mods") then - minetest.log("action", "MC Slimes loaded") -end diff --git a/mods/ENTITIES/mobs_mc/snowman.lua b/mods/ENTITIES/mobs_mc/snowman.lua new file mode 100644 index 000000000..8756f5dc7 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/snowman.lua @@ -0,0 +1,141 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") +local snow_trail_frequency = 0.5 -- Time in seconds for checking to add a new snow trail + +mobs:register_mob("mobs_mc:snowman", { + type = "npc", + passive = true, + hp_min = 4, + hp_max = 4, + pathfinding = 1, + view_range = 10, + fall_damage = 0, + water_damage = 4, + lava_damage = 20, + attacks_monsters = true, + collisionbox = {-0.35, -0.01, -0.35, 0.35, 1.89, 0.35}, + visual = "mesh", + mesh = "mobs_mc_snowman.b3d", + textures = { + {"mobs_mc_snowman.png^mobs_mc_snowman_pumpkin.png"}, + }, + gotten_texture = { "mobs_mc_snowman.png" }, + drops = {{ name = mobs_mc.items.snowball, chance = 1, min = 0, max = 15 }}, + visual_size = {x=3, y=3}, + walk_velocity = 0.6, + run_velocity = 2, + jump = true, + makes_footstep_sound = true, + attack_type = "shoot", + arrow = "mobs_mc:snowball_entity", + shoot_interval = 1, + shoot_offset = 1, + animation = { + speed_normal = 25, + speed_run = 50, + stand_start = 20, + stand_end = 40, + walk_start = 0, + walk_end = 20, + run_start = 0, + run_end = 20, + die_start = 40, + die_end = 50, + die_loop = false, + }, + blood_amount = 0, + do_custom = function(self, dtime) + -- Leave a trail of top snow behind. + -- This is done in do_custom instead of just using replace_what because with replace_what, + -- the top snop may end up floating in the air. + if not self._snowtimer then + self._snowtimer = 0 + return + end + self._snowtimer = self._snowtimer + dtime + if self.health > 0 and self._snowtimer > snow_trail_frequency then + self._snowtimer = 0 + local pos = self.object:getpos() + local below = {x=pos.x, y=pos.y-1, z=pos.z} + local def = minetest.registered_nodes[minetest.get_node(pos).name] + -- Node at snow golem's position must be replacable + if def and def.buildable_to then + -- Node below must be walkable + -- and a full cube (this prevents oddities like top snow on top snow, lower slabs, etc.) + local belowdef = minetest.registered_nodes[minetest.get_node(below).name] + if belowdef and belowdef.walkable and (belowdef.node_box == nil or belowdef.node_box.type == "regular") then + -- Place top snow + minetest.set_node(pos, {name = mobs_mc.items.top_snow}) + end + end + end + end, + -- Remove pumpkin if using shears + on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + if self.gotten ~= true and item:get_name() == mobs_mc.items.shears then + -- Remove pumpkin + self.gotten = true + self.object:set_properties({ + textures = {"mobs_mc_snowman.png"}, + }) + + local pos = self.object:getpos() + minetest.sound_play("shears", {pos = pos}) + + -- Wear out + if not minetest.settings:get_bool("creative_mode") then + item:add_wear(mobs_mc.misc.shears_wear) + clicker:get_inventory():set_stack("main", clicker:get_wield_index(), item) + end + end + end, +}) + +-- This is to be called when a pumpkin or jack'o lantern has been placed. Recommended: In the on_construct function +-- of the node. +-- This summons a snow golen when pos is next to a row of two snow blocks. +mobs_mc.tools.check_snow_golem_summon = function(pos) + local checks = { + -- These are the possible placement patterns + -- { snow block pos. 1, snow block pos. 2, snow golem spawn position } + { {x=pos.x, y=pos.y-1, z=pos.z}, {x=pos.x, y=pos.y-2, z=pos.z}, {x=pos.x, y=pos.y-2.5, z=pos.z} }, + { {x=pos.x, y=pos.y+1, z=pos.z}, {x=pos.x, y=pos.y+2, z=pos.z}, {x=pos.x, y=pos.y-0.5, z=pos.z} }, + { {x=pos.x-1, y=pos.y, z=pos.z}, {x=pos.x-2, y=pos.y, z=pos.z}, {x=pos.x-2, y=pos.y-0.5, z=pos.z} }, + { {x=pos.x+1, y=pos.y, z=pos.z}, {x=pos.x+2, y=pos.y, z=pos.z}, {x=pos.x+2, y=pos.y-0.5, z=pos.z} }, + { {x=pos.x, y=pos.y, z=pos.z-1}, {x=pos.x, y=pos.y, z=pos.z-2}, {x=pos.x, y=pos.y-0.5, z=pos.z-2} }, + { {x=pos.x, y=pos.y, z=pos.z+1}, {x=pos.x, y=pos.y, z=pos.z+2}, {x=pos.x, y=pos.y-0.5, z=pos.z+2} }, + } + + for c=1, #checks do + local b1 = checks[c][1] + local b2 = checks[c][2] + local place = checks[c][3] + local b1n = minetest.get_node(b1) + local b2n = minetest.get_node(b2) + if b1n.name == mobs_mc.items.snow_block and b2n.name == mobs_mc.items.snow_block then + -- Remove the pumpkin and both snow blocks and summon the snow golem + minetest.remove_node(pos) + minetest.remove_node(b1) + minetest.remove_node(b2) + core.check_for_falling(pos) + core.check_for_falling(b1) + core.check_for_falling(b2) + minetest.add_entity(place, "mobs_mc:snowman") + break + end + end +end + +-- Spawn egg +mobs:register_egg("mobs_mc:snowman", S("Snow Golem"), "mobs_mc_spawn_icon_snowman.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Snow Golem loaded") +end diff --git a/mods/ENTITIES/mobs_mc/sounds/mobs_kitten.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_kitten.ogg new file mode 100644 index 000000000..021d3dc79 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/sounds/mobs_kitten.ogg differ diff --git a/mods/ENTITIES/mobs_mc/sounds/blaze_breath.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_blaze_breath.ogg similarity index 100% rename from mods/ENTITIES/mobs_mc/sounds/blaze_breath.ogg rename to mods/ENTITIES/mobs_mc/sounds/mobs_mc_blaze_breath.ogg diff --git a/mods/ENTITIES/mobs_mc/sounds/blaze_died.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_blaze_died.ogg similarity index 100% rename from mods/ENTITIES/mobs_mc/sounds/blaze_died.ogg rename to mods/ENTITIES/mobs_mc/sounds/mobs_mc_blaze_died.ogg diff --git a/mods/ENTITIES/mobs_mc/sounds/blaze_hurt1.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_blaze_hurt.ogg similarity index 100% rename from mods/ENTITIES/mobs_mc/sounds/blaze_hurt1.ogg rename to mods/ENTITIES/mobs_mc/sounds/mobs_mc_blaze_hurt.ogg diff --git a/mods/ENTITIES/mobs_mc/sounds/mobs_mc_ender_dragon_attack.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_ender_dragon_attack.ogg new file mode 100644 index 000000000..5591609c7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_ender_dragon_attack.ogg differ diff --git a/mods/ENTITIES/mobs_mc/sounds/mobs_mc_ender_dragon_shoot.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_ender_dragon_shoot.ogg new file mode 100644 index 000000000..4030ba671 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_ender_dragon_shoot.ogg differ diff --git a/mods/ENTITIES/mobs_mc/sounds/mobs_mc_llama.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_llama.ogg new file mode 100644 index 000000000..54f62cd6d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/sounds/mobs_mc_llama.ogg differ diff --git a/mods/ENTITIES/mobs_mc/sounds/mobs_rat.ogg b/mods/ENTITIES/mobs_mc/sounds/mobs_rat.ogg new file mode 100644 index 000000000..0e992671e Binary files /dev/null and b/mods/ENTITIES/mobs_mc/sounds/mobs_rat.ogg differ diff --git a/mods/ENTITIES/mobs_mc/spider.lua b/mods/ENTITIES/mobs_mc/spider.lua index 554a2b8d6..ff320367e 100644 --- a/mods/ENTITIES/mobs_mc/spider.lua +++ b/mods/ENTITIES/mobs_mc/spider.lua @@ -1,64 +1,82 @@ ---MCmobs v0.2 +--MCmobs v0.4 --maikerumine --made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") --dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### SPIDER +--################### + + -- Spider by AspireMint (fishyWET (CC-BY-SA 3.0 license for texture) -mobs:register_mob("mobs_mc:spider", { + +local spider = { type = "monster", passive = false, + docile_by_day = true, attack_type = "dogfight", pathfinding = 1, damage = 2, - docile_by_day = true, hp_min = 16, hp_max = 16, - armor = 100, - --[[ MC: 1.5×1×1.5, MCL2: 1.5×0.5×1.5 - The MC model is surprisingly high because the MC body is - high above the ground while in MCL2 the body touches the - ground. ]] - collisionbox = {-0.75, -0.01, -0.75, 0.75, 0.49, 0.75}, + collisionbox = {-0.7, -0.01, -0.7, 0.7, 0.89, 0.7}, visual = "mesh", - mesh = "mobs_spider.x", + mesh = "mobs_mc_spider.b3d", textures = { - {"mobs_spider.png"} + {"mobs_mc_spider.png^(mobs_mc_spider_eyes.png^[makealpha:0,0,0)"}, }, - visual_size = {x=5,y=5}, + visual_size = {x=3, y=3}, makes_footstep_sound = false, sounds = { random = "mobs_spider", attack = "mobs_spider", + distance = 16, }, - walk_velocity = 1.7, - run_velocity = 3.3, + walk_velocity = 3.9, jump = true, - jump_height = 5, - view_range = 15, + jump_height = 2, + view_range = 16, floats = 1, - group_attack = true, - peaceful = false, drops = { - {name = "mcl_mobitems:string", - chance = 1, min = 0, max = 2,}, - {name = "mcl_mobitems:spider_eye", - chance = 3, min = 1, max = 1,}, + {name = mobs_mc.items.string, chance = 1, min = 0, max = 2,}, + {name = mobs_mc.items.spider_eye, chance = 3, min = 1, max = 1,}, }, - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + specific_attack = { "player", "mobs_mc:iron_golem" }, + water_damage = 0, + lava_damage = 4, light_damage = 0, - fear_height = 14, + fear_height = 4, 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, + speed_normal = 25, speed_run = 50, + stand_start = 40, stand_end = 80, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, }, -}) -mobs:register_spawn("mobs_mc:spider", {"group:solid"}, 4, -1, 17000, 2, 3000) + blood_amount = 0, +} +mobs:register_mob("mobs_mc:spider", spider) + +-- Cave spider +local cave_spider = table.copy(spider) +cave_spider.textures = { {"mobs_mc_cave_spider.png^(mobs_mc_spider_eyes.png^[makealpha:0,0,0)"} } +-- TODO: Poison damage +-- TODO: Revert damage to 2 +cave_spider.damage = 3 -- damage increased to undo non-existing poison +cave_spider.hp_min = 1 +cave_spider.hp_max = 12 +cave_spider.collisionbox = {-0.35, -0.01, -0.35, 0.35, 0.49, 0.35} +cave_spider.visual_size = {x=1.66666, y=1.5} +cave_spider.walk_velocity = 4.1 +mobs:register_mob("mobs_mc:cave_spider", cave_spider) + + +mobs:register_spawn("mobs_mc:spider", mobs_mc.spawn.solid, 7, 0, 19500, 2, 3000) -- compatibility @@ -66,9 +84,9 @@ mobs:alias_mob("mobs:spider", "mobs_mc:spider") mobs:alias_mob("esmobs:spider", "mobs_mc:spider") -- spawn eggs -mobs:register_egg("mobs_mc:spider", "Spawn Spider", "spawn_egg_spider.png", 0) +mobs:register_egg("mobs_mc:spider", S("Spider"), "mobs_mc_spawn_icon_spider.png", 0) +mobs:register_egg("mobs_mc:cave_spider", S("Cave Spider"), "mobs_mc_spawn_icon_cave_spider.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC Spiders loaded") end diff --git a/mods/ENTITIES/mobs_mc/squid.lua b/mods/ENTITIES/mobs_mc/squid.lua index 01b68ad50..35ef26ec6 100644 --- a/mods/ENTITIES/mobs_mc/squid.lua +++ b/mods/ENTITIES/mobs_mc/squid.lua @@ -1,11 +1,12 @@ -- v1.1 -local l_spawn_in = {"mcl_core:water_flowing","mcl_core:water_source"} -local l_spawn_near = {"mcl_core:water_flowing","mcl_core:water_source"} -local l_spawn_chance = 500 -local l_min_light = -1 -local l_max_light = 30 -local l_max_height = -1 -- water_level - 1 +--################### +--################### SQUID +--################### + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") mobs:register_mob("mobs_mc:squid", { type = "animal", @@ -13,17 +14,17 @@ mobs:register_mob("mobs_mc:squid", { hp_min = 10, hp_max = 10, armor = 100, - -- Note: This collision box is pretty generous because they can't be rotated yet, but at least it not confusing for the player. - -- TODO: Make the hitbox smaller when Minetest supports rotation of collision boxes - collisionbox = {-1.5, 1.3, -1.5, 1.5, 2.3, 1.5}, + -- FIXME: If the squid is near the floor, it turns black + collisionbox = {-0.4, 0.1, -0.4, 0.4, 0.9, 0.4}, visual = "mesh", - mesh = "mobs_squid.b3d", + mesh = "mobs_mc_squid.b3d", textures = { - {"mobs_squid.png"} + {"mobs_mc_squid.png"} }, sounds = { damage = "mobs_mc_squid_hurt", - }, + distance = 16, + }, animation = { stand_start = 1, stand_end = 60, @@ -33,31 +34,38 @@ mobs:register_mob("mobs_mc:squid", { run_end = 60, }, drops = { - {name = "mcl_dye:black", + {name = mobs_mc.items.black_dye, chance = 1, min = 1, max = 3,}, }, - rotate = 180, - visual_size = {x=4.5, y=4.5}, + visual_size = {x=1.75, y=1.75}, makes_footstep_sound = false, - stepheight = 0.1, + stepheight = 1.1, fly = true, - fly_in = "mcl_core:water_source", - fall_speed = -3, - view_range = 8, - fall_damage = 1, + -- fly_in = mobs_mc.items.water_source, fuck this + fly_in = {"mcl_core:water_source", "default:water_source"}, + jump = true, + jump_height = 1.25, + jump_chance = 98, + fall_speed = 0.5, + view_range = 16, water_damage = 0, - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + lava_damage = 4, light_damage = 0, - + runaway = true, + fear_height = 4, + blood_texture = "mobs_mc_squid_blood.png", }) +-- Spawn near the water surface + +local water = tonumber(minetest.setting_get("water_level")) or 0 --name, nodes, neighbours, minlight, maxlight, interval, chance, active_object_count, min_height, max_height -mobs:spawn_specific("mobs_mc:squid", l_spawn_in, l_spawn_near, l_min_light, l_max_light, 30, 5000, 2, -31000, l_max_height ) +mobs:spawn_specific("mobs_mc:squid", mobs_mc.spawn.water, {mobs_mc.items.water_source}, 0, minetest.LIGHT_MAX+1, 30, 5500, 3, water-16, water) -- compatibility mobs:alias_mob("mobs:squid", "mobs_mc:squid") -- spawn eggs -mobs:register_egg("mobs_mc:squid", "Spawn Squid", "spawn_egg_squid.png") +mobs:register_egg("mobs_mc:squid", S("Squid"), "mobs_mc_spawn_icon_squid.png", 0) diff --git a/mods/ENTITIES/mobs_mc/textures/ghast_front.png b/mods/ENTITIES/mobs_mc/textures/ghast_front.png deleted file mode 100644 index e06373b98..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/ghast_front.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/ghast_white.png b/mods/ENTITIES/mobs_mc/textures/ghast_white.png deleted file mode 100644 index ab1fb50d2..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/ghast_white.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/green_slime_blood.png b/mods/ENTITIES/mobs_mc/textures/green_slime_blood.png deleted file mode 100644 index 5086778ac..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/green_slime_blood.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/green_slime_bottom.png b/mods/ENTITIES/mobs_mc/textures/green_slime_bottom.png deleted file mode 100644 index 20a7dd812..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/green_slime_bottom.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/green_slime_front.png b/mods/ENTITIES/mobs_mc/textures/green_slime_front.png deleted file mode 100644 index fe02badae..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/green_slime_front.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/green_slime_sides.png b/mods/ENTITIES/mobs_mc/textures/green_slime_sides.png deleted file mode 100644 index 44f512c50..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/green_slime_sides.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/green_slime_top.png b/mods/ENTITIES/mobs_mc/textures/green_slime_top.png deleted file mode 100644 index b83cee698..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/green_slime_top.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/lava_slime_blood.png b/mods/ENTITIES/mobs_mc/textures/lava_slime_blood.png deleted file mode 100644 index bf29b1c44..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/lava_slime_blood.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/lava_slime_bottom.png b/mods/ENTITIES/mobs_mc/textures/lava_slime_bottom.png deleted file mode 100644 index a3a3ab704..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/lava_slime_bottom.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/lava_slime_front.png b/mods/ENTITIES/mobs_mc/textures/lava_slime_front.png deleted file mode 100644 index 8c924eeca..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/lava_slime_front.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/lava_slime_sides.png b/mods/ENTITIES/mobs_mc/textures/lava_slime_sides.png deleted file mode 100644 index f84c99817..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/lava_slime_sides.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/lava_slime_top.png b/mods/ENTITIES/mobs_mc/textures/lava_slime_top.png deleted file mode 100644 index 8b1496135..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/lava_slime_top.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mcl_mobitems_totem.png b/mods/ENTITIES/mobs_mc/textures/mcl_mobitems_totem.png new file mode 100644 index 000000000..603a86768 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mcl_mobitems_totem.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_blaze.png b/mods/ENTITIES/mobs_mc/textures/mobs_blaze.png deleted file mode 100644 index 6a0c2e93d..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_blaze.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_blood.png b/mods/ENTITIES/mobs_mc/textures/mobs_blood.png deleted file mode 100644 index 77cfbdaa6..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_blood.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bucket_milk.png b/mods/ENTITIES/mobs_mc/textures/mobs_bucket_milk.png new file mode 100644 index 000000000..18e887b34 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_bucket_milk.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_black.png b/mods/ENTITIES/mobs_mc/textures/mobs_bunny_black.png deleted file mode 100644 index 3dfd3d6f4..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_black.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_brown.png b/mods/ENTITIES/mobs_mc/textures/mobs_bunny_brown.png deleted file mode 100644 index 547ddd345..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_brown.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_evil.png b/mods/ENTITIES/mobs_mc/textures/mobs_bunny_evil.png deleted file mode 100644 index 19a0fae1e..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_evil.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_gold.png b/mods/ENTITIES/mobs_mc/textures/mobs_bunny_gold.png deleted file mode 100644 index a4c15d5c9..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_gold.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_grey.png b/mods/ENTITIES/mobs_mc/textures/mobs_bunny_grey.png deleted file mode 100644 index 4a7ad1952..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_grey.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_salt.png b/mods/ENTITIES/mobs_mc/textures/mobs_bunny_salt.png deleted file mode 100644 index 25c3df9d1..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_salt.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_bunny_white.png deleted file mode 100644 index f66ff3daa..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_bunny_white.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_chicken.png b/mods/ENTITIES/mobs_mc/textures/mobs_chicken.png deleted file mode 100644 index 9875eef58..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_chicken.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_chicken_egg.png b/mods/ENTITIES/mobs_mc/textures/mobs_chicken_egg.png new file mode 100644 index 000000000..9c6545452 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_chicken_egg.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_cow.png b/mods/ENTITIES/mobs_mc/textures/mobs_cow.png deleted file mode 100644 index 8f4728c2c..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_cow.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_creeper.png b/mods/ENTITIES/mobs_mc/textures/mobs_creeper.png deleted file mode 100644 index bc160acc7..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_creeper.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_creeper_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_creeper_front.png new file mode 100644 index 000000000..145be1b7f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_creeper_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_creeper_side.png b/mods/ENTITIES/mobs_mc/textures/mobs_creeper_side.png new file mode 100644 index 000000000..a44bb033c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_creeper_side.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_creeper_top.png b/mods/ENTITIES/mobs_mc/textures/mobs_creeper_top.png new file mode 100644 index 000000000..518883491 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_creeper_top.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_endermen.png b/mods/ENTITIES/mobs_mc/textures/mobs_endermen.png deleted file mode 100644 index 044d4f4e9..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_endermen.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_endermen_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_endermen_front.png new file mode 100644 index 000000000..d3439d645 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_endermen_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_endermen_side.png b/mods/ENTITIES/mobs_mc/textures/mobs_endermen_side.png new file mode 100644 index 000000000..4b4fab7b1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_endermen_side.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_endermen_top.png b/mods/ENTITIES/mobs_mc/textures/mobs_endermen_top.png new file mode 100644 index 000000000..33c782515 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_endermen_top.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_farmer.png b/mods/ENTITIES/mobs_mc/textures/mobs_farmer.png deleted file mode 100644 index bd6f2b5f7..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_farmer.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_agent.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_agent.png new file mode 100644 index 000000000..bb18f47d7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_agent.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_arrow_particle.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_arrow_particle.png new file mode 100644 index 000000000..1d0cd9b1c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_arrow_particle.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_bat.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_bat.png new file mode 100644 index 000000000..578f8e743 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_bat.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_blaze.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_blaze.png new file mode 100644 index 000000000..1d92c9f6c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_blaze.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_black.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_black.png new file mode 100644 index 000000000..d6e54c7a1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_black.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_ocelot.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_ocelot.png new file mode 100644 index 000000000..079252724 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_ocelot.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_red.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_red.png new file mode 100644 index 000000000..e90a1175d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_red.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_siamese.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_siamese.png new file mode 100644 index 000000000..c6efc84c7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cat_siamese.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_cave_spider.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cave_spider.png new file mode 100644 index 000000000..5701ebc67 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cave_spider.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_chicken.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_chicken.png index 9875eef58..edd0d996f 100644 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_mc_chicken.png and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_chicken.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_cow.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cow.png index 8f4728c2c..62696c734 100644 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_mc_cow.png and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_cow.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_creeper.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_creeper.png new file mode 100644 index 000000000..99b432ac6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_creeper.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_black.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_black.png new file mode 100644 index 000000000..d282c6dbd Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_black.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_blue.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_blue.png new file mode 100644 index 000000000..67af42644 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_blue.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_brown.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_brown.png new file mode 100644 index 000000000..99ba98ca4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_brown.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_cyan.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_cyan.png new file mode 100644 index 000000000..56f1bc99c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_cyan.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_gray.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_gray.png new file mode 100644 index 000000000..022e4607b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_gray.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_green.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_green.png new file mode 100644 index 000000000..9d5173ad9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_green.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_light_blue.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_light_blue.png new file mode 100644 index 000000000..f8abcbc2b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_light_blue.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_lime.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_lime.png new file mode 100644 index 000000000..7ebaeeb53 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_lime.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_magenta.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_magenta.png new file mode 100644 index 000000000..782093c2b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_magenta.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_orange.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_orange.png new file mode 100644 index 000000000..fb3680bdf Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_orange.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_pink.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_pink.png new file mode 100644 index 000000000..6bb694711 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_pink.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_purple.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_purple.png new file mode 100644 index 000000000..c46adbfe9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_purple.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_red.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_red.png new file mode 100644 index 000000000..b427a670f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_red.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_silver.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_silver.png new file mode 100644 index 000000000..ecb00b231 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_silver.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_white.png new file mode 100644 index 000000000..f50e54463 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_white.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_yellow.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_yellow.png new file mode 100644 index 000000000..bab480c9e Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_decor_yellow.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_diamond_horse_armor.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_diamond_horse_armor.png new file mode 100644 index 000000000..121be08de Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_diamond_horse_armor.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_donkey.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_donkey.png new file mode 100644 index 000000000..8588e6aaa Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_donkey.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_dragon.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_dragon.png new file mode 100644 index 000000000..251778ce4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_dragon.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_endergolem.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_endergolem.png new file mode 100644 index 000000000..701292658 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_endergolem.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman.png new file mode 100644 index 000000000..c2c9cb0e4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman_block.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman_block.png new file mode 100644 index 000000000..97d949d8a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman_block.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman_eyes.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman_eyes.png new file mode 100644 index 000000000..6e4e8f2b4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_enderman_eyes.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_endermite.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_endermite.png new file mode 100644 index 000000000..6427b3198 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_endermite.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast.png new file mode 100644 index 000000000..47335ec96 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast_front.png new file mode 100644 index 000000000..4ba3e5cbf Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast_white.png new file mode 100644 index 000000000..e6c8e7fd6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_ghast_white.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_gold_horse_armor.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_gold_horse_armor.png new file mode 100644 index 000000000..f6b4fdfb9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_gold_horse_armor.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_guardian.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_guardian.png new file mode 100644 index 000000000..c0121954c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_guardian.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_guardian_elder.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_guardian_elder.png new file mode 100644 index 000000000..8b085e8cc Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_guardian_elder.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_diamond.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_diamond.png new file mode 100644 index 000000000..577eff10b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_diamond.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_gold.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_gold.png new file mode 100644 index 000000000..b8ebbfe85 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_gold.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_iron.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_iron.png new file mode 100644 index 000000000..217b6c531 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_armor_iron.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_black.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_black.png new file mode 100644 index 000000000..a2b0bde56 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_black.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_brown.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_brown.png new file mode 100644 index 000000000..052df7452 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_brown.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_chest.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_chest.png new file mode 100644 index 000000000..400d8a1eb Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_chest.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_chestnut.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_chestnut.png new file mode 100644 index 000000000..4c646d861 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_chestnut.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_darkbrown.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_darkbrown.png new file mode 100644 index 000000000..f1377f3f5 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_darkbrown.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_gray.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_gray.png new file mode 100644 index 000000000..c2e0450fd Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_gray.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_blackdots.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_blackdots.png new file mode 100644 index 000000000..b0dc0fc62 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_blackdots.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_white.png new file mode 100644 index 000000000..8dadffef6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_white.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_whitedots.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_whitedots.png new file mode 100644 index 000000000..89fdc7c32 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_whitedots.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_whitefield.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_whitefield.png new file mode 100644 index 000000000..b5a4b5ddf Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_markings_whitefield.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_saddle.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_saddle.png new file mode 100644 index 000000000..873df1786 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_saddle.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_white.png new file mode 100644 index 000000000..8d67a79fb Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_white.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_zombie.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_zombie.png new file mode 100644 index 000000000..3ab56a0f6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_horse_zombie.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_husk.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_husk.png index cb046129b..4c93cde04 100644 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_mc_husk.png and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_husk.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_iron_golem.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_iron_golem.png new file mode 100644 index 000000000..99d2c5656 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_iron_golem.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_iron_horse_armor.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_iron_horse_armor.png new file mode 100644 index 000000000..4f078a92b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_iron_horse_armor.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_magmacube.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_magmacube.png new file mode 100644 index 000000000..6bd6cfc21 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_magmacube.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_magmacube_blood.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_magmacube_blood.png new file mode 100644 index 000000000..46b699bee Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_magmacube_blood.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_mooshroom.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_mooshroom.png new file mode 100644 index 000000000..4ee2bd943 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_mooshroom.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_mooshroom_mooshroom.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_mooshroom_mooshroom.png new file mode 100644 index 000000000..eada719af Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_mooshroom_mooshroom.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_mule.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_mule.png new file mode 100644 index 000000000..7b33b535e Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_mule.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_pig.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_pig.png new file mode 100644 index 000000000..715134b42 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_pig.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_pig_saddle.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_pig_saddle.png new file mode 100644 index 000000000..a42e77dcb Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_pig_saddle.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_polarbear.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_polarbear.png new file mode 100644 index 000000000..2d4795ccc Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_polarbear.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_black.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_black.png new file mode 100644 index 000000000..bce60d12b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_black.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_brown.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_brown.png new file mode 100644 index 000000000..7a8dc898a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_brown.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_caerbannog.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_caerbannog.png new file mode 100644 index 000000000..a64e6fdb3 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_caerbannog.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_gold.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_gold.png new file mode 100644 index 000000000..bbcd41f17 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_gold.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_salt.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_salt.png new file mode 100644 index 000000000..efaee4d9d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_salt.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_toast.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_toast.png new file mode 100644 index 000000000..445a6de28 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_toast.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_white.png new file mode 100644 index 000000000..b8ab75876 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_white.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_white_splotched.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_white_splotched.png new file mode 100644 index 000000000..a6b707ffb Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_rabbit_white_splotched.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_sheep.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_sheep.png new file mode 100644 index 000000000..50b0e18ab Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_sheep.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_sheep_fur.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_sheep_fur.png new file mode 100644 index 000000000..0c25e2721 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_sheep_fur.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_black.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_black.png new file mode 100644 index 000000000..09ac72325 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_black.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_blue.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_blue.png new file mode 100644 index 000000000..3417417f1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_blue.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_brown.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_brown.png new file mode 100644 index 000000000..8b3bceaeb Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_brown.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_cyan.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_cyan.png new file mode 100644 index 000000000..9e25c8771 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_cyan.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_gray.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_gray.png new file mode 100644 index 000000000..ce3f0ffd3 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_gray.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_green.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_green.png new file mode 100644 index 000000000..7a7e411b9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_green.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_light_blue.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_light_blue.png new file mode 100644 index 000000000..90464d0e4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_light_blue.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_lime.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_lime.png new file mode 100644 index 000000000..b290167c5 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_lime.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_magenta.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_magenta.png new file mode 100644 index 000000000..80060721e Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_magenta.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_orange.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_orange.png new file mode 100644 index 000000000..4daaa29e2 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_orange.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_pink.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_pink.png new file mode 100644 index 000000000..b6608a42f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_pink.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_purple.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_purple.png new file mode 100644 index 000000000..701292658 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_purple.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_red.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_red.png new file mode 100644 index 000000000..a0560e57c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_red.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_silver.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_silver.png new file mode 100644 index 000000000..176ee045b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_silver.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_white.png new file mode 100644 index 000000000..6fa5a5c9a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_white.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_yellow.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_yellow.png new file mode 100644 index 000000000..c2d94ac74 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulker_yellow.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulkerbullet.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulkerbullet.png new file mode 100644 index 000000000..5e6546180 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_shulkerbullet.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_silverfish.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_silverfish.png new file mode 100644 index 000000000..956af9ce7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_silverfish.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_skeleton.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_skeleton.png new file mode 100644 index 000000000..abcfdbeb7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_skeleton.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_skeleton_bow.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_skeleton_bow.png new file mode 100644 index 000000000..1dfcc18d6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_skeleton_bow.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_slime.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_slime.png new file mode 100644 index 000000000..6047d791e Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_slime.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_slime_blood.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_slime_blood.png new file mode 100644 index 000000000..29e94a0e5 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_slime_blood.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_snowman.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_snowman.png new file mode 100644 index 000000000..dc161eb6d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_snowman.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_snowman_pumpkin.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_snowman_pumpkin.png new file mode 100644 index 000000000..e9db35add Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_snowman_pumpkin.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_agent.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_agent.png new file mode 100644 index 000000000..08e068891 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_agent.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_bat.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_bat.png new file mode 100644 index 000000000..820b58dac Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_bat.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_blaze.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_blaze.png new file mode 100644 index 000000000..94a5014fb Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_blaze.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cat.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cat.png new file mode 100644 index 000000000..123ffc337 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cat.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cave_spider.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cave_spider.png new file mode 100644 index 000000000..20fec90d7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cave_spider.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_chicken.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_chicken.png new file mode 100644 index 000000000..3b72ad7df Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_chicken.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cow.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cow.png new file mode 100644 index 000000000..619547a4b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_cow.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_creeper.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_creeper.png new file mode 100644 index 000000000..51477b201 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_creeper.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_donkey.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_donkey.png new file mode 100644 index 000000000..a3ed2c9b1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_donkey.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_dragon.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_dragon.png new file mode 100644 index 000000000..7f7558241 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_dragon.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_enderman.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_enderman.png new file mode 100644 index 000000000..e8b4227c4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_enderman.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_endermite.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_endermite.png new file mode 100644 index 000000000..436f93ee0 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_endermite.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_evoker.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_evoker.png new file mode 100644 index 000000000..08724e99a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_evoker.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_ghast.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_ghast.png new file mode 100644 index 000000000..0934eef09 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_ghast.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_guardian.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_guardian.png new file mode 100644 index 000000000..019a9dee8 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_guardian.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_guardian_elder.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_guardian_elder.png new file mode 100644 index 000000000..a524502b0 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_guardian_elder.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse.png new file mode 100644 index 000000000..17b2460f7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse_skeleton.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse_skeleton.png new file mode 100644 index 000000000..51288c552 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse_skeleton.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse_zombie.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse_zombie.png new file mode 100644 index 000000000..20f7729e9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_horse_zombie.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_husk.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_husk.png new file mode 100644 index 000000000..7d1b75769 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_husk.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_illusioner.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_illusioner.png new file mode 100644 index 000000000..8e8bb029d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_illusioner.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_iron_golem.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_iron_golem.png new file mode 100644 index 000000000..f0b1cf745 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_iron_golem.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_llama.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_llama.png new file mode 100644 index 000000000..752c9a570 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_llama.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_magmacube.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_magmacube.png new file mode 100644 index 000000000..f1a3151d9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_magmacube.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_mooshroom.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_mooshroom.png new file mode 100644 index 000000000..2fc8300f6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_mooshroom.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_mule.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_mule.png new file mode 100644 index 000000000..4086a361d Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_mule.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_parrot.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_parrot.png new file mode 100644 index 000000000..988b8b180 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_parrot.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_pig.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_pig.png new file mode 100644 index 000000000..c431de73b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_pig.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_polarbear.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_polarbear.png new file mode 100644 index 000000000..b287317d3 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_polarbear.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_rabbit.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_rabbit.png new file mode 100644 index 000000000..9382accbf Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_rabbit.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_sheep.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_sheep.png new file mode 100644 index 000000000..26c8c81f6 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_sheep.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_shulker.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_shulker.png new file mode 100644 index 000000000..be6a00de9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_shulker.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_silverfish.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_silverfish.png new file mode 100644 index 000000000..5561016fc Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_silverfish.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_skeleton.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_skeleton.png new file mode 100644 index 000000000..351c2f9cf Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_skeleton.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_slime.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_slime.png new file mode 100644 index 000000000..5069e6fa8 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_slime.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_snowman.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_snowman.png new file mode 100644 index 000000000..d14af8fa1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_snowman.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_spider.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_spider.png new file mode 100644 index 000000000..1b9d6dfff Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_spider.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_squid.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_squid.png new file mode 100644 index 000000000..0e304ccc4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_squid.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_stray.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_stray.png new file mode 100644 index 000000000..9b8dafa93 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_stray.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_vex.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_vex.png new file mode 100644 index 000000000..631a2fc15 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_vex.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_villager.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_villager.png new file mode 100644 index 000000000..08c3d106b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_villager.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_vindicator.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_vindicator.png new file mode 100644 index 000000000..dcc34566f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_vindicator.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_witch.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_witch.png new file mode 100644 index 000000000..2b3cf8d87 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_witch.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_wither.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_wither.png new file mode 100644 index 000000000..fb851769f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_wither.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_witherskeleton.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_witherskeleton.png new file mode 100644 index 000000000..8fd54fc60 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_witherskeleton.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_wolf.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_wolf.png new file mode 100644 index 000000000..a42bd0925 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_wolf.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie.png new file mode 100644 index 000000000..f8b7b621a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie_pigman.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie_pigman.png new file mode 100644 index 000000000..461ffcfa7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie_pigman.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie_villager.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie_villager.png new file mode 100644 index 000000000..f092e6f5f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spawn_icon_zombie_villager.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spider.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spider.png new file mode 100644 index 000000000..7146ba2a9 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spider.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_spider_eyes.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spider_eyes.png new file mode 100644 index 000000000..2bbc2696c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_spider_eyes.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_squid.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_squid.png new file mode 100644 index 000000000..0ad839506 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_squid.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_squid_blood.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_squid_blood.png new file mode 100644 index 000000000..a991d65d5 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_squid_blood.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_stray.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_stray.png new file mode 100644 index 000000000..d97b8065e Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_stray.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_stray_bow.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_stray_bow.png new file mode 100644 index 000000000..6116fe2a7 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_stray_bow.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_trading_formspec_bg.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_trading_formspec_bg.png new file mode 100644 index 000000000..a95b09780 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_trading_formspec_bg.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager.png new file mode 100644 index 000000000..2858389e3 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_butcher.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_butcher.png new file mode 100644 index 000000000..250ddfc7c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_butcher.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_farmer.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_farmer.png new file mode 100644 index 000000000..a3a253aa8 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_farmer.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_librarian.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_librarian.png new file mode 100644 index 000000000..1cba43330 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_librarian.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_priest.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_priest.png new file mode 100644 index 000000000..5b55fa94c Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_priest.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_smith.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_smith.png new file mode 100644 index 000000000..99f2125ea Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_villager_smith.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_witch.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_witch.png new file mode 100644 index 000000000..7595a5fc4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_witch.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither.png new file mode 100644 index 000000000..4da3d2fcd Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither_skeleton.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither_skeleton.png new file mode 100644 index 000000000..42c091caf Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither_skeleton.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither_skeleton_sword.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither_skeleton_sword.png new file mode 100644 index 000000000..43bbec991 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wither_skeleton_sword.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf.png new file mode 100644 index 000000000..ea1358984 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_angry.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_angry.png new file mode 100644 index 000000000..b0c4eb55b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_angry.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_collar.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_collar.png new file mode 100644 index 000000000..e0440f77b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_collar.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_tame.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_tame.png new file mode 100644 index 000000000..ad32cad15 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_wolf_tame.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie.png new file mode 100644 index 000000000..734327f48 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_butcher.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_butcher.png new file mode 100644 index 000000000..8efc88cba Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_butcher.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_farmer.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_farmer.png new file mode 100644 index 000000000..07a42bc32 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_farmer.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_librarian.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_librarian.png new file mode 100644 index 000000000..b2d37fb18 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_librarian.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_pigman.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_pigman.png new file mode 100644 index 000000000..d1c58b41f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_pigman.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_pigman_sword.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_pigman_sword.png new file mode 100644 index 000000000..976d3abf4 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_pigman_sword.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_priest.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_priest.png new file mode 100644 index 000000000..7d04f8529 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_priest.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_smith.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_smith.png new file mode 100644 index 000000000..02fe1ae7f Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_smith.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_villager.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_villager.png new file mode 100644 index 000000000..2fc85021b Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombie_villager.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombiepig.png b/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombiepig.png deleted file mode 100644 index 93eac76eb..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_mc_zombiepig.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_pig.png b/mods/ENTITIES/mobs_mc/textures/mobs_pig.png deleted file mode 100644 index 17f41ffb9..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_pig.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_pig_with_saddle.png b/mods/ENTITIES/mobs_mc/textures/mobs_pig_with_saddle.png deleted file mode 100644 index 2b0fe8412..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_pig_with_saddle.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep.png deleted file mode 100644 index 5d4a556c2..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_black.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_black.png deleted file mode 100644 index 84e4f07c5..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_black.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_blue.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_blue.png deleted file mode 100644 index c0678aa55..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_blue.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_brown.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_brown.png deleted file mode 100644 index 86beed492..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_brown.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_cyan.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_cyan.png deleted file mode 100644 index 1ddb86c96..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_cyan.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_dark_green.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_dark_green.png deleted file mode 100644 index c05b6a7eb..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_dark_green.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_dark_grey.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_dark_grey.png deleted file mode 100644 index 045c3251a..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_dark_grey.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_green.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_green.png deleted file mode 100644 index d96f30989..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_green.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_grey.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_grey.png deleted file mode 100644 index 0c04ec4b9..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_grey.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_lightblue.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_lightblue.png deleted file mode 100644 index 9914881c7..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_lightblue.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_magenta.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_magenta.png deleted file mode 100644 index 198db17a1..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_magenta.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_orange.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_orange.png deleted file mode 100644 index 6844219d4..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_orange.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_pink.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_pink.png deleted file mode 100644 index f5434592b..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_pink.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_red.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_red.png deleted file mode 100644 index 9be3f28df..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_red.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_sheared.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_sheared.png deleted file mode 100644 index 71d927edd..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_sheared.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_violet.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_violet.png deleted file mode 100644 index a8c80c3b7..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_violet.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_white.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_white.png deleted file mode 100644 index 6ca525a2e..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_white.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_yellow.png b/mods/ENTITIES/mobs_mc/textures/mobs_sheep_yellow.png deleted file mode 100644 index 7c8b65e29..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_sheep_yellow.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton.png deleted file mode 100644 index 78113e105..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2.png deleted file mode 100644 index 9edbcaa6b..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_front.png new file mode 100644 index 000000000..21fa36277 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_side.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_side.png new file mode 100644 index 000000000..90ad9cfc1 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_side.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_top.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_top.png new file mode 100644 index 000000000..4cc3dfe61 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton2_top.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_front.png new file mode 100644 index 000000000..06cb1e2e3 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_side.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_side.png new file mode 100644 index 000000000..db80a5e0e Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_side.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_top.png b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_top.png new file mode 100644 index 000000000..2c174e835 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_skeleton_top.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_spider.png b/mods/ENTITIES/mobs_mc/textures/mobs_spider.png deleted file mode 100644 index 2b992d138..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_spider.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_spider_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_spider_front.png new file mode 100644 index 000000000..16eb6f5c0 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_spider_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_spider_side.png b/mods/ENTITIES/mobs_mc/textures/mobs_spider_side.png new file mode 100644 index 000000000..b9a334c02 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_spider_side.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_spider_top.png b/mods/ENTITIES/mobs_mc/textures/mobs_spider_top.png new file mode 100644 index 000000000..fd5cfaa58 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_spider_top.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_squid.png b/mods/ENTITIES/mobs_mc/textures/mobs_squid.png deleted file mode 100644 index 581054e82..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_squid.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_zombie.png b/mods/ENTITIES/mobs_mc/textures/mobs_zombie.png deleted file mode 100644 index 99d1c0395..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/mobs_zombie.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_zombie_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_zombie_front.png new file mode 100644 index 000000000..53627a50a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_zombie_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_zombie_side.png b/mods/ENTITIES/mobs_mc/textures/mobs_zombie_side.png new file mode 100644 index 000000000..a97d5c95a Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_zombie_side.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_zombie_top.png b/mods/ENTITIES/mobs_mc/textures/mobs_zombie_top.png new file mode 100644 index 000000000..e1d59f247 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_zombie_top.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_front.png b/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_front.png new file mode 100644 index 000000000..fc7ce1bbd Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_front.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_side.png b/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_side.png new file mode 100644 index 000000000..df4871c98 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_side.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_top.png b/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_top.png new file mode 100644 index 000000000..2043396e0 Binary files /dev/null and b/mods/ENTITIES/mobs_mc/textures/mobs_zombiepig_top.png differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg.png deleted file mode 100644 index de87b179f..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_baby_husk.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_baby_husk.png deleted file mode 100644 index 146bddb79..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_baby_husk.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_baby_zombie.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_baby_zombie.png deleted file mode 100644 index 28db22171..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_baby_zombie.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_blaze.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_blaze.png deleted file mode 100644 index 7979a5488..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_blaze.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_chicken.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_chicken.png deleted file mode 100644 index 363a91adf..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_chicken.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_cow.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_cow.png deleted file mode 100644 index 48eb66821..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_cow.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_creeper.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_creeper.png deleted file mode 100644 index cd50ac0e6..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_creeper.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_enderman.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_enderman.png deleted file mode 100644 index e81411e66..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_enderman.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_ghast.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_ghast.png deleted file mode 100644 index eaa9deff5..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_ghast.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_guardian.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_guardian.png deleted file mode 100644 index cf4c8871a..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_guardian.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse.png deleted file mode 100644 index 7b53e1722..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse_arabic.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse_arabic.png deleted file mode 100644 index 7d1eff1a3..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse_arabic.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse_white.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse_white.png deleted file mode 100644 index 0e455bbb5..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_horse_white.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_husk.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_husk.png deleted file mode 100644 index 21c1c2052..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_husk.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_magma_cube.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_magma_cube.png deleted file mode 100644 index a9eee66a7..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_magma_cube.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_overlay.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_overlay.png deleted file mode 100644 index 5661a2856..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_overlay.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_pig.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_pig.png deleted file mode 100644 index d98768c53..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_pig.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_rabbit.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_rabbit.png deleted file mode 100644 index d46ee0263..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_rabbit.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_sheep.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_sheep.png deleted file mode 100644 index 28e0f7450..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_sheep.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_skeleton.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_skeleton.png deleted file mode 100644 index 6595834d7..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_skeleton.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_slime.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_slime.png deleted file mode 100644 index 8c5ea7b22..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_slime.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_spider.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_spider.png deleted file mode 100644 index 10da82823..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_spider.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_squid.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_squid.png deleted file mode 100644 index f486f35d2..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_squid.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_villager.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_villager.png deleted file mode 100644 index ff634e8a8..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_villager.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_wither_skeleton.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_wither_skeleton.png deleted file mode 100644 index 55e093ff7..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_wither_skeleton.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_wolf.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_wolf.png deleted file mode 100644 index 7e3e55430..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_wolf.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_zombie.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_zombie.png deleted file mode 100644 index 0a3ba2660..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_zombie.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/spawn_egg_zombie_pigman.png b/mods/ENTITIES/mobs_mc/textures/spawn_egg_zombie_pigman.png deleted file mode 100644 index 90ea8dccf..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/spawn_egg_zombie_pigman.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/textures/trading_formspec_bg.png b/mods/ENTITIES/mobs_mc/textures/trading_formspec_bg.png deleted file mode 100644 index 3effd9878..000000000 Binary files a/mods/ENTITIES/mobs_mc/textures/trading_formspec_bg.png and /dev/null differ diff --git a/mods/ENTITIES/mobs_mc/vex.lua b/mods/ENTITIES/mobs_mc/vex.lua new file mode 100644 index 000000000..7691d7628 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/vex.lua @@ -0,0 +1,96 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + + +--dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### VEX +--################### + + + +mobs:register_mob("mobs_mc:vex", { + type = "monster", + pathfinding = 1, + passive = false, + attack_type = "dogfight", + physical = false, + hp_min = 14, + hp_max = 14, + collisionbox = {-0.2, 0.2, -0.2, 0.2, 1.0, 0.2}, --bat + visual = "mesh", + mesh = "mobs_mc_vex.b3d", + textures = { + {"mobs_mc_vex.png^mobs_mc_vex_sword.png"}, + }, + visual_size = {x=1.25, y=1.25}, + damage = 9, + view_range = 16, + walk_velocity = 3.2, + run_velocity = 5.9, + attack_type = "dogfight", + sounds = { + random = "mobs_rat", + death = "green_slime_death", + distance = 16, + }, + animation = { + stand_speed = 25, walk_speed = 25, run_speed = 50, + stand_start = 40, stand_end = 80, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + }, + do_custom = function(self, dtime) + -- Glow red while attacking + if self.state == "attack" then + if self.base_texture[1] ~= "mobs_mc_vex_charging.png^mobs_mc_vex_sword.png" then + self.base_texture = {"mobs_mc_vex_charging.png^mobs_mc_vex_sword.png"} + self.object:set_properties({textures=self.base_texture}) + end + else + if self.base_texture[1] ~= "mobs_mc_vex.png^mobs_mc_vex_sword.png" then + self.base_texture = {"mobs_mc_vex.png^mobs_mc_vex_sword.png"} + self.object:set_properties({textures=self.base_texture}) + end + end + + -- Take constant damage if the vex' life clock ran out + -- (only for vexes summoned by evokers) + if self._summoned then + if not self._lifetimer then + self._lifetimer = 33 + end + self._lifetimer = self._lifetimer - dtime + if self._lifetimer <= 0 then + if self._damagetimer then + self._damagetimer = self._damagetimer - 1 + end + self.object:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = 2}, + }, nil) + self._damagetimer = 1 + end + end + end, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + fly = true, + fly_in = {"air"}, +}) + + +-- spawn eggs +mobs:register_egg("mobs_mc:vex", S("Vex"), "mobs_mc_spawn_icon_vex.png", 0) + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Vex loaded") +end diff --git a/mods/ENTITIES/mobs_mc/villager.lua b/mods/ENTITIES/mobs_mc/villager.lua index cf1ba0c19..246011444 100644 --- a/mods/ENTITIES/mobs_mc/villager.lua +++ b/mods/ENTITIES/mobs_mc/villager.lua @@ -1,55 +1,56 @@ ---MCmobs v0.2 +--MCmobs v0.4 --maikerumine --made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") --dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### VILLAGER +--################### + mobs:register_mob("mobs_mc:villager", { type = "npc", hp_min = 20, hp_max = 20, - collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.95, 0.4}, - textures = { - {"mobs_farmer.png"} - }, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3}, visual = "mesh", - mesh = "mobs_villager.x", + mesh = "mobs_mc_villager.b3d", + textures = { + {"mobs_mc_villager.png"}, + {"mobs_mc_villager_farmer.png"}, + {"mobs_mc_villager_priest.png"}, + {"mobs_mc_villager_librarian.png"}, + {"mobs_mc_villager_butcher.png"}, + {"mobs_mc_villager_smith.png"}, + }, + visual_size = {x=3, y=3}, makes_footstep_sound = true, - damage = 0, walk_velocity = 1.2, run_velocity = 2.4, drops = {}, - armor = 100, sounds = { random = "Villager1", death = "Villagerdead", damage = "Villagerhurt1", + distance = 16, }, 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, + stand_speed = 25, walk_speed = 25, run_speed = 50, + stand_start = 0, stand_end = 0, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, }, - drawtype = "front", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + water_damage = 0, + lava_damage = 4, light_damage = 0, view_range = 16, - fear_height = 5, - -- TODO: Add trading menu + fear_height = 4, --[[ on_rightclick = function(self, clicker) local inv @@ -111,39 +112,39 @@ mobs:register_mob("mobs_mc:villager", { inv:set_size("offered", 1) local trades = { - {"mcl_core:apple 12", "mcl_core:clay_lump 1"}, - {"mcl_core:coal_lump 20", "mcl_core:clay_lump 1"}, - {"mcl_core:paper 30", "mcl_core:clay_lump 1"}, - {"mobs:leather 10", "mcl_core:clay_lump 1"}, - {"mcl_core:book 2", "mcl_core:clay_lump 1"}, - {"mcl_core:clay_lump 3", "mcl_core:clay_lump 1"}, - {"farming:potato 15", "mcl_core:clay_lump 1"}, - {"farming:wheat 20", "mcl_core:clay_lump 1"}, - {"farming:carrot 15", "mcl_core:clay_lump 1"}, - {"farming:melon_8 8", "mcl_core:clay_lump 1"}, - {"mobs:rotten_flesh 40", "mcl_core:clay_lump 1"}, - {"mcl_core:gold_ingot 10", "mcl_core:clay_lump 1"}, - {"farming:cotton 10", "mcl_core:clay_lump 1"}, - {"mcl_wool:white 15", "mcl_core:clay_lump 1"}, - {"farming:pumpkin 8", "mcl_core:clay_lump 1"}, + {"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"}, - {"mcl_core:clay_lump 1", "mobs:beef_cooked 5"}, - {"mcl_core:clay_lump 1", "mobs:chicken_cooked 7"}, - {"mcl_core:clay_lump 1", "farming:cookie 6"}, - {"mcl_core:clay_lump 1", "farming:pumpkin_bread 3"}, - {"mcl_core:clay_lump 1", "mobs:arrow 10"}, - {"mcl_core:clay_lump 3", "mobs:bow_wood 1"}, - {"mcl_core:clay_lump 8", "fishing:pole_wood 1"}, - --{"mcl_core:clay_lump 4", "potionspack:healthii 1"}, - {"mcl_core:clay_lump 1", "cake:cake 1"}, - {"mcl_core:clay_lump 10", "mobs:saddle 1"}, - {"mcl_core:clay_lump 10", "clock:1 1"}, - {"mcl_core:clay_lumpd 10", "compass:0 1"}, - {"mcl_core:clay_lump 1", "mcl_core:glass 5"}, - {"mcl_core:clay_lump 1", "nether:glowstone 3"}, - {"mcl_core:clay_lump 3", "mobs:shears 1"}, - {"mcl_core:clay_lump 10", "mcl_core:sword_diamond 1"}, - {"mcl_core:clay_lump 20", "3d_armor:chestplate_diamond 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])) @@ -166,16 +167,16 @@ mobs:register_mob("mobs_mc:villager", { ]] }) --- TODO: Spawn villager +--mobs:register_spawn("mobs_mc:villager", {"default:gravel"}, 7, -1, 4090, 4, 31000) +mobs:register_spawn("mobs_mc:villager", {"mg_villages:road"}, minetest.LIGHT_MAX+1, -1,8000, 4, 31000) -- compatibility mobs:alias_mob("mobs:villager", "mobs_mc:villager") -- spawn eggs -mobs:register_egg("mobs_mc:villager", "Spawn Villager", "spawn_egg_villager.png") +mobs:register_egg("mobs_mc:villager", S("Villager"), "mobs_mc_spawn_icon_villager.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC mobs loaded") end diff --git a/mods/ENTITIES/mobs_mc/villager_agent.lua b/mods/ENTITIES/mobs_mc/villager_agent.lua new file mode 100644 index 000000000..e3acc5290 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/villager_agent.lua @@ -0,0 +1,219 @@ +--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") + +--################### +--################### AGENT +--################### + +mobs:register_mob("mobs_mc:63agent", { + type = "animal", + passive = true, + runaway = true, + stepheight = 1.2, + hp_min = 30, + hp_max = 60, + armor = 150, + collisionbox = {-0.35, -0.01, -0.35, 0.35, 2, 0.35}, + visual = "mesh", + mesh = "mobs_mc_agent.b3d", + textures = { + {"mobs_mc_agent.png"}, + }, + visual_size = {x=3, y=3}, + walk_velocity = 0.6, + run_velocity = 2, + jump = true, + animation = { + speed_normal = 25, speed_run = 50, + stand_start = 20, stand_end = 60, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, + }, +}) + +mobs:register_egg("mobs_mc:63agent", "Agent", "mobs_mc_spawn_icon_agent.png", 0) + + + +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, + }, + 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, + + ]] +}) + +-- compatibility +mobs:alias_mob("mobs:villager", "mobs_mc:villager") + +-- spawn eggs +mobs:register_egg("mobs_mc:villager", "Villager", "spawn_egg_villager.png") + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC mobs loaded") +end diff --git a/mods/ENTITIES/mobs_mc/villager_evoker.lua b/mods/ENTITIES/mobs_mc/villager_evoker.lua new file mode 100644 index 000000000..03e7f05d6 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/villager_evoker.lua @@ -0,0 +1,96 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### EVOKER +--################### + +local pr = PseudoRandom(os.time()*666) + +mobs:register_mob("mobs_mc:evoker", { + type = "monster", + physical = true, + pathfinding = 1, + hp_min = 24, + hp_max = 24, + collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.95, 0.4}, + visual = "mesh", + mesh = "mobs_mc_evoker.b3d", + textures = { + {"mobs_mc_evoker_base.png"}, + -- TODO: Attack glow + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + damage = 6, + walk_velocity = 0.2, + run_velocity = 1.4, + group_attack = true, + attack_type = "dogfight", + -- Summon vexes + custom_attack = function(self, to_attack) + local r = pr:next(2,4) + local basepos = self.object:getpos() + basepos.y = basepos.y + 1 + for i=1, r do + local spawnpos = vector.add(basepos, minetest.yaw_to_dir(pr:next(0,360))) + local vex = minetest.add_entity(spawnpos, "mobs_mc:vex") + local ent = vex:get_luaentity() + -- Mark vexes as summoned and start their life clock (they take damage it reaches 0) + ent._summoned = true + ent._lifetimer = pr:next(33, 108) + end + end, + shoot_interval = 15, + passive = false, + drops = { + {name = mobs_mc.items.emerald, + chance = 1, + min = 0, + max = 1,}, + {name = mobs_mc.items.totem, + chance = 1, + min = 1, + max = 1,}, + }, + sounds = { + random = "Villagerdead", + death = "Villagerdead", + damage = "mese_dragon", + attack = "zombiedeath", + distance = 16, + }, + animation = { + speed_normal = 25, + speed_run = 25, + stand_start = 40, + stand_end = 59, + speed_stand = 5, + walk_start = 0, + walk_end = 40, + shoot_start = 60, + shoot_end = 80, + die_start = 80, + die_end = 130, + }, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + view_range = 16, + fear_height = 4, +}) + +-- spawn eggs +mobs:register_egg("mobs_mc:evoker", S("Evoker"), "mobs_mc_spawn_icon_evoker.png", 0) + + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Evoker loaded") +end diff --git a/mods/ENTITIES/mobs_mc/villager_illusioner.lua b/mods/ENTITIES/mobs_mc/villager_illusioner.lua new file mode 100644 index 000000000..e27155745 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/villager_illusioner.lua @@ -0,0 +1,54 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +mobs:register_mob("mobs_mc:illusioner", { + type = "monster", + attack_type = "shoot", + shoot_interval = 0.5, + arrow = "mobs_mc:arrow_entity", + shoot_offset = 1.5, + hp_min = 32, + hp_max = 32, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3}, + visual = "mesh", + mesh = "mobs_mc_illusioner.b3d", + textures = { + {"mobs_mc_illusionist.png^mobs_mc_illusionist_bow.png"}, + }, + visual_size = {x=3, y=3}, + walk_velocity = 0.6, + run_velocity = 2, + jump = true, + animation = { + walk_speed = 25, + run_speed = 25, + shoot_speed = 25, + stand_start = 40, + stand_end = 59, + stand_speed = 5, + walk_start = 0, + walk_end = 40, + --speed_walk = 50, + shoot_start = 90, + shoot_end = 110, + die_start = 110, + die_end = 130, + die_speed = 5, + -- 60-80 magic arm swinging, 80-90 transition between magic to bow shooting + }, + view_range = 16, + fear_height = 4, + lava_damage = 4, +}) + +mobs:register_egg("mobs_mc:illusioner", S("Illusioner"), "mobs_mc_spawn_icon_illusioner.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Illusioner loaded") +end diff --git a/mods/ENTITIES/mobs_mc/villager_vindicator.lua b/mods/ENTITIES/mobs_mc/villager_vindicator.lua new file mode 100644 index 000000000..eef9d9f45 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/villager_vindicator.lua @@ -0,0 +1,79 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### VINDICATOR +--################### + + +mobs:register_mob("mobs_mc:vindicator", { + type = "monster", + physical = false, + pathfinding = 1, + hp_min = 24, + hp_max = 24, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3}, + visual = "mesh", + mesh = "mobs_mc_vindicator.b3d", + textures = { + {"mobs_mc_vindicator_base.png^mobs_mc_vindicator_axe.png"}, + -- TODO: Glow when attacking (mobs_mc_vindicator.png) + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + damage = 13, + walk_velocity = 1.2, + run_velocity = 2.4, + attack_type = "dogfight", + drops = { + {name = mobs_mc.items.emerald, + chance = 1, + min = 0, + max = 1,}, + {name = mobs_mc.items.iron_axe, + chance = 11, + min = 1, + max = 1,}, + }, + sounds = { + random = "Villager1", + death = "Villagerdead", + damage = "Villagerhurt1", + }, + animation = { + walk_speed = 25, + run_speed = 25, + stand_start = 40, + stand_end = 59, + stand_speed = 5, + walk_start = 0, + walk_end = 40, + --speed_walk = 50, + punch_speed = 25, + punch_start = 90, + punch_end = 110, + die_speed = 25, + die_start = 110, + die_end = 130, + }, + water_damage = 1, + lava_damage = 4, + light_damage = 0, + view_range = 16, + fear_height = 4, + +}) + +-- spawn eggs +mobs:register_egg("mobs_mc:vindicator", S("Vindicator"), "mobs_mc_spawn_icon_vindicator.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC vindicator loaded") +end diff --git a/mods/ENTITIES/mobs_mc/villager_zombie.lua b/mods/ENTITIES/mobs_mc/villager_zombie.lua new file mode 100644 index 000000000..79809ee55 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/villager_zombie.lua @@ -0,0 +1,95 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +--################### +--################### ZOMBIE VILLAGER +--################### + + +mobs:register_mob("mobs_mc:villager_zombie", { + type = "monster", + hp_min = 20, + hp_max = 20, + armor = 90, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3}, + visual = "mesh", + mesh = "mobs_mc_zvillager.b3d", + textures = { + {"mobs_mc_zombie_butcher.png"}, + {"mobs_mc_zombie_farmer.png"}, + {"mobs_mc_zombie_librarian.png"}, + {"mobs_mc_zombie_priest.png"}, + {"mobs_mc_zombie_smith.png"}, + {"mobs_mc_zombie_villager.png"} + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + damage = 3, + walk_velocity = 1.2, + run_velocity = 2.4, + attack_type = "dogfight", + group_attack = true, + drops = { + {name = mobs_mc.items.rotten_flesh, + chance = 1, + min = 0, + max = 2,}, + {name = mobs_mc.items.iron_ingot, + -- approximation to 8.5% + chance = 11, + min = 1, + max = 1,}, + {name = mobs_mc.items.carrot, + -- approximation to 8.5% + chance = 11, + min = 1, + max = 1,}, + {name = mobs_mc.items.potato, + -- approximation to 8.5% + chance = 11, + min = 1, + max = 1,}, + }, + sounds = { + random = "Villager1", + death = "Villagerdead", + damage = "Villagerhurt1", + distance = 16, + }, + animation = { + speed_normal = 25, + speed_run = 50, + stand_start = 20, + stand_end = 40, + walk_start = 0, + walk_end = 20, + run_start = 0, + run_end = 20, + }, + water_damage = 1, + lava_damage = 5, + light_damage = 1, + view_range = 16, + fear_height = 5, + +}) +--mobs:register_spawn("mobs_mc:villager", {"default:gravel"}, 7, -1, 4090, 4, 31000) +mobs:register_spawn("mobs_mc:villager_zombie", {"mg_villages:road"}, 7, -1, 4090, 4, 31000) + + + + +-- spawn eggs +mobs:register_egg("mobs_mc:villager_zombie", S("Zombie Villager"), "mobs_mc_spawn_icon_zombie_villager.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC mobs Zombie Villager loaded") +end diff --git a/mods/ENTITIES/mobs_mc/witch.lua b/mods/ENTITIES/mobs_mc/witch.lua new file mode 100644 index 000000000..b9862a1e1 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/witch.lua @@ -0,0 +1,119 @@ +--MCmobs v0.2 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + +--################### +--################### WITCH +--################### + + + + +mobs:register_mob("mobs_mc:witch", { + type = "monster", + hp_min = 26, + hp_max = 26, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3}, + visual = "mesh", + mesh = "mobs_mc_witch.b3d", + textures = { + {"mobs_mc_witch.png"}, + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + damage = 2, + walk_velocity = 1.2, + run_velocity = 2.4, + pathfinding = 2, + group_attack = true, + attack_type = "dogshoot", + arrow = "mobs:potion_arrow", + shoot_interval = 2.5, + shoot_offset = 1, + dogshoot_switch = 1, + dogshoot_count_max =1.8, + max_drops = 3, + drops = { + {name = mobs_mc.items.glass_bottle, chance = 8, min = 0, max = 2,}, + {name = mobs_mc.items.glowstone_dust, chance = 8, min = 0, max = 2,}, + {name = mobs_mc.items.gunpowder, chance = 8, min = 0, max = 2,}, + {name = mobs_mc.items.redstone, chance = 8, min = 0, max = 2,}, + {name = mobs_mc.items.spider_eye, chance = 8, min = 0, max = 2,}, + {name = mobs_mc.items.sugar, chance = 8, min = 0, max = 2,}, + {name = mobs_mc.items.stick, chance = 4, min = 0, max = 2,}, + }, + sounds = { + random = "Villager1", + death = "Villagerdead", + damage = "Villagerhurt1", + distance = 16, + }, + animation = { + speed_normal = 30, + speed_run = 60, + stand_start = 0, + stand_end = 0, + walk_start = 0, + walk_end = 40, + run_start = 0, + run_end = 40, + hurt_start = 85, + hurt_end = 115, + death_start = 117, + death_end = 145, + shoot_start = 50, + shoot_end = 82, + }, + water_damage = 1, + lava_damage = 5, + light_damage = 0, + view_range = 16, + fear_height = 4, + +}) + +-- fireball (weapon) +mobs:register_arrow(":mobs:potion_arrow", { + visual = "sprite", + visual_size = {x = 0.5, y = 0.5}, + --textures = {"vessels_glass_bottle.png"}, --TODO fix to else if default + textures = {"mcl_potions_dragon_breath.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 = 2}, + }, nil) + end, + + hit_mob = function(self, player) + player:punch(self.object, 1.0, { + full_punch_interval = 1.0, + damage_groups = {fleshy = 2}, + }, nil) + end, + + -- node hit, bursts into flame + hit_node = function(self, pos, node) + --mobs:explosion(pos, 1, 1, 0) + end +}) + +--KEEP +mobs:spawn_specific("mobs_mc:witch", mobs_mc.spawn.jungle, {"air"}, 0, minetest.LIGHT_MAX-6, 12, 20000, 2, 1, 30) + +-- spawn eggs +mobs:register_egg("mobs_mc:witch", S("Witch"), "mobs_mc_spawn_icon_witch.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC mobs loaded") +end diff --git a/mods/ENTITIES/mobs_mc/wither.lua b/mods/ENTITIES/mobs_mc/wither.lua new file mode 100644 index 000000000..866e66897 --- /dev/null +++ b/mods/ENTITIES/mobs_mc/wither.lua @@ -0,0 +1,158 @@ +--MCmobs v0.4 +--maikerumine +--made for MC like Survival game +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +--################### +--################### WITHER +--################### + + +mobs:register_mob("mobs_mc:wither", { + type = "monster", + hp_max = 300, + hp_min = 300, + armor = 80, + -- This deviates from MC Wiki's size, which makes no sense + collisionbox = {-0.9, 0.4, -0.9, 0.9, 2.45, 0.9}, + visual = "mesh", + mesh = "mobs_mc_wither.b3d", + textures = { + {"mobs_mc_wither.png"}, + }, + visual_size = {x=4, y=4}, + makes_footstep_sound = true, + view_range = 16, + fear_height = 4, + walk_velocity = 2, + run_velocity = 4, + stepheight = 1.2, + sounds = { + shoot_attack = "mobs_mc_ender_dragon_shoot", + attack = "mobs_mc_ender_dragon_attack", + distance = 60, + }, + jump = true, + jump_height = 10, + jump_chance = 98, + fly = true, + dogshoot_switch = 1, + dogshoot_count_max =1, + attack_animals = true, + floats=1, + drops = { + {name = mobs_mc.items.nether_star, + chance = 1, + min = 1, + max = 1}, + }, + water_damage = 0, + lava_damage = 0, + light_damage = 0, + attack_type = "dogshoot", + explosion_radius = 3, + explosion_fire = 0, + dogshoot_stop = true, + arrow = "mobs_mc:fireball", + reach = 5, + shoot_interval = 0.5, + shoot_offset = -1, + animation = { + walk_speed = 12, run_speed = 12, stand_speed = 12, + stand_start = 0, stand_end = 20, + walk_start = 0, walk_end = 20, + run_start = 0, run_end = 20, + }, + blood_amount = 0, +}) + +mobs:register_arrow("mobs_mc:roar_of_the_dragon", { + visual = "sprite", + visual_size = {x = 1, y = 1}, + textures = {"blank.png"}, + velocity = 10, + + on_step = function(self, dtime) + + local pos = self.object:getpos() + + local n = minetest.env:get_node(pos).name + + if self.timer == 0 then + self.timer = os.time() + end + + if os.time() - self.timer > 8 or minetest.is_protected(pos, "") then + self.object:remove() + end + + local objects = minetest.env:get_objects_inside_radius(pos, 1) + for _,obj in ipairs(objects) do + local name = obj:get_entity_name() + if name~="mobs_mc:roar_of_the_dragon" and name ~= "mobs_mc:wither" then + obj:set_hp(obj:get_hp()-0.05) + if (obj:get_hp() <= 0) then + if (not obj:is_player()) and name ~= self.object:get_luaentity().name then + obj:remove() + end + end + end + end + + minetest.env:set_node(pos, {name="air"}) + if math.random(1,2)==1 then + dx = math.random(-1,1) + dy = math.random(-1,1) + dz = math.random(-1,1) + local p = {x=pos.x+dx, y=pos.y+dy, z=pos.z+dz} + minetest.env:set_node(p, {name="air"}) + end + end +}) +--GOOD LUCK LOL! +-- fireball (weapon) +mobs:register_arrow(":mobs_mc:fireball", { + visual = "sprite", + visual_size = {x = 1.5, y = 1.5}, + textures = {"mobs_skeleton2_front.png^[makealpha:255,255,255 "}, + velocity = 6, + + -- direct hit, no fire... just plenty of pain + hit_player = function(self, player) + minetest.sound_play("tnt_explode", {pos = pos, gain = 1.5, max_hear_distance = 16}) + player:punch(self.object, 1.0, { + full_punch_interval = 0.5, + damage_groups = {fleshy = 8}, + }, nil) + + end, + + hit_mob = function(self, player) + minetest.sound_play("tnt_explode", {pos = pos, gain = 1.5,max_hear_distance = 16}) + player:punch(self.object, 1.0, { + full_punch_interval = 0.5, + damage_groups = {fleshy = 8}, + }, nil) + + end, + + -- node hit, bursts into flame + hit_node = function(self, pos, node) + mobs:explosion(pos, 3, 0, 1) + --from tnt + minetest.sound_play("tnt_explode", {pos = pos, gain = 1.5, max_hear_distance = 16}) + + end +}) +--Spawn egg +mobs:register_egg("mobs_mc:wither", S("Wither"), "mobs_mc_spawn_icon_wither.png", 0) + +--Compatibility +mobs:alias_mob("nssm:mese_dragon", "mobs_mc:wither") diff --git a/mods/ENTITIES/mobs_mc/wolf.lua b/mods/ENTITIES/mobs_mc/wolf.lua new file mode 100644 index 000000000..736de544b --- /dev/null +++ b/mods/ENTITIES/mobs_mc/wolf.lua @@ -0,0 +1,221 @@ +--License for code WTFPL and otherwise stated in readmes + +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +local default_walk_chance = 50 + +local pr = PseudoRandom(os.time()*10) + +local is_food = function(itemstring) + for f=1, #mobs_mc.follow.dog do + if itemstring == mobs_mc.follow.dog[f] then + return true + elseif string.sub(itemstring, 1, 6) == "group:" and minetest.get_item_group(itemstring, string.sub(itemstring, 7, -1)) ~= 0 then + return true + end + end + return false +end + +-- Wolf +local wolf = { + type = "animal", + + hp_min = 8, + hp_max = 8, + passive = false, + group_attack = true, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 0.84, 0.3}, + visual = "mesh", + mesh = "mobs_mc_wolf.b3d", + textures = { + {"mobs_mc_wolf.png"}, + }, + visual_size = {x=3, y=3}, + makes_footstep_sound = true, + sounds = { + war_cry = "mobs_wolf_attack", + distance = 16, + }, + pathfinding = 1, + floats = 1, + view_range = 16, + walk_chance = default_walk_chance, + walk_velocity = 2, + run_velocity = 3, + stepheight = 1.1, + damage = 4, + attack_type = "dogfight", + fear_height = 4, + water_damage = 0, + lava_damage = 4, + light_damage = 0, + follow = mobs_mc.follow.wolf, + on_rightclick = function(self, clicker) + -- Try to tame wolf (intentionally does NOT use mobs:feed_tame) + local tool = clicker:get_wielded_item() + + local dog, ent + if tool:get_name() == mobs_mc.items.bone then + + if not minetest.settings:get_bool("creative_mode") then + tool:take_item() + clicker:set_wielded_item(tool) + end + -- 1/3 chance of getting tamed + if pr:next(1, 3) == 1 then + local yaw = self.object:get_yaw() + dog = minetest.add_entity(self.object:getpos(), "mobs_mc:dog") + dog:set_yaw(yaw) + ent = dog:get_luaentity() + ent.owner = clicker:get_player_name() + self.object:remove() + end + end + end, + animation = { + speed_normal = 50, speed_run = 100, + stand_start = 40, stand_end = 45, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + }, + jump = true, + attacks_monsters = true, +} + +mobs:register_mob("mobs_mc:wolf", wolf) + +-- Tamed wolf + +-- Collar colors +local colors = { + ["unicolor_black"] = "#000000", + ["unicolor_blue"] = "#0000BB", + ["unicolor_dark_orange"] = "#663300", -- brown + ["unicolor_cyan"] = "#01FFD8", + ["unicolor_dark_green"] = "#005B00", + ["unicolor_grey"] = "#C0C0C0", + ["unicolor_darkgrey"] = "#303030", + ["unicolor_green"] = "#00FF01", + ["unicolor_red_violet"] = "#FF05BB", -- magenta + ["unicolor_orange"] = "#FF8401", + ["unicolor_light_red"] = "#FF65B5", -- pink + ["unicolor_red"] = "#FF0000", + ["unicolor_violet"] = "#5000CC", + ["unicolor_white"] = "#FFFFFF", + ["unicolor_yellow"] = "#FFFF00", + + ["unicolor_light_blue"] = "#B0B0FF", +} + +local get_dog_textures = function(color) + if colors[color] then + return {"mobs_mc_wolf_tame.png^(mobs_mc_wolf_collar.png^[colorize:"..colors[color]..":192)"} + else + return nil + end +end + +-- Tamed wolf (aka “dog”) +local dog = table.copy(wolf) +dog.passive = true +dog.hp_min = 20 +dog.hp_max = 20 +-- Tamed wolf texture + red collar +dog.textures = get_dog_textures("unicolor_red") +dog.owner = "" +-- TODO: Start sitting by default +dog.order = "roam" +dog.owner_loyal = true +-- Automatically teleport dog to owner +dog.do_custom = mobs_mc.make_owner_teleport_function(12) +dog.follow = mobs_mc.follow.dog +dog.on_rightclick = function(self, clicker) + local item = clicker:get_wielded_item() + + if mobs:protect(self, clicker) then + return + elseif item:get_name() ~= "" and mobs:capture_mob(self, clicker, 0, 2, 80, false, nil) then + return + elseif is_food(item:get_name()) then + -- Feed to increase health + local hp = self.health + local hp_add = 0 + -- Use eatable group to determine health boost + local eatable = minetest.get_item_group(item, "eatable") + if eatable > 0 then + hp_add = eatable + elseif item:get_name() == mobs_mc.items.rotten_flesh then + hp_add = 4 + else + hp_add = 4 + end + local new_hp = hp + hp_add + if new_hp > self.hp_max then + new_hp = self.hp_max + end + if not minetest.settings:get_bool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + self.health = new_hp + return + elseif minetest.get_item_group(item:get_name(), "dye") == 1 then + -- Dye (if possible) + for group, _ in pairs(colors) do + -- Check if color is supported + if minetest.get_item_group(item:get_name(), group) == 1 then + -- Dye collar + local tex = get_dog_textures(group) + if tex then + self.base_texture = tex + self.object:set_properties({ + textures = self.base_texture + }) + if not minetest.settings:get_bool("creative_mode") then + item:take_item() + clicker:set_wielded_item(item) + end + break + end + end + end + else + -- Toggle sitting order + + if not self.owner or self.owner == "" then + -- Huh? This wolf has no owner? Let's fix this! This should never happen. + self.owner = clicker:get_player_name() + end + + if not self.order or self.order == "" or self.order == "sit" then + self.order = "roam" + self.walk_chance = default_walk_chance + self.jump = true + else + -- TODO: Add sitting model + self.order = "sit" + self.walk_chance = 0 + self.jump = false + end + end +end + +mobs:register_mob("mobs_mc:dog", dog) + +-- Spawn +mobs:register_spawn("mobs_mc:wolf", mobs_mc.spawn.wolf, minetest.LIGHT_MAX+1, 0, 9000, 20, 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") + +mobs:register_egg("mobs_mc:wolf", S("Wolf"), "mobs_mc_spawn_icon_wolf.png", 0) + +if minetest.settings:get_bool("log_mods") then + minetest.log("action", "MC Wolf loaded") +end diff --git a/mods/ENTITIES/mobs_mc/zombie.lua b/mods/ENTITIES/mobs_mc/zombie.lua index 6ac6172b0..d1c57a13f 100644 --- a/mods/ENTITIES/mobs_mc/zombie.lua +++ b/mods/ENTITIES/mobs_mc/zombie.lua @@ -1,82 +1,88 @@ ---MCmobs v0.2 +--MCmobs v0.4 --maikerumine --made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") + +--dofile(minetest.get_modpath("mobs").."/api.lua") + + +--################### +--################### ZOMBIE +--################### + + local zombie = { type = "monster", hp_min = 20, hp_max = 20, - collisionbox = {-0.5, -0.01, -0.5, 0.5, 1.9, 0.5}, - textures = { - {"mobs_zombie.png"} - }, + armor = 90, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3}, visual = "mesh", - mesh = "mobs_zombie.x", + mesh = "mobs_mc_zombie.b3d", + textures = { + {"mobs_mc_zombie.png"}, + }, + visual_size = {x=3, y=3}, makes_footstep_sound = true, sounds = { random = "zombie1", death = "zombiedeath", damage = "zombiehurt1", - attack = "default_punch3", + distance = 16, }, walk_velocity = .8, run_velocity = 1.6, damage = 3, - fear_height = 8, + fear_height = 4, pathfinding = 1, jump = true, - jump_height = 3, + --jump_height = 3, group_attack = true, drops = { - {name = "mcl_mobitems:rotten_flesh", + {name = mobs_mc.items.rotten_flesh, chance = 1, min = 0, max = 2,}, - {name = "mcl_core:iron_ingot", + {name = mobs_mc.items.iron_ingot, -- approximation to 8.5% chance = 11, min = 1, max = 1,}, - {name = "mcl_farming:carrot_item", + {name = mobs_mc.items.carrot, -- approximation to 8.5% chance = 11, min = 1, max = 1,}, - {name = "mcl_farming:potato_item", + {name = mobs_mc.items.potato, -- approximation to 8.5% chance = 11, min = 1, max = 1,}, - -- TODO: Remove this drop when record discs are properly dropped - {name = "mcl_jukebox:record_8", - chance = 150, + + -- Head + -- TODO: Only drop if killed by charged creeper + {name = mobs_mc.items.head_zombie, + chance = 200, -- 0.5% 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, + speed_normal = 25, speed_run = 50, + stand_start = 40, stand_end = 80, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, }, - drawtype = "front", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + lava_damage = 4, -- TODO: Burn mob only when in direct sunlight - light_damage = 1, - view_range = 40, + light_damage = 2, + view_range = 16, attack_type = "dogfight", } - mobs:register_mob("mobs_mc:zombie", zombie) -- Baby zombie. @@ -84,7 +90,7 @@ mobs:register_mob("mobs_mc:zombie", zombie) local baby_zombie = table.copy(zombie) baby_zombie.collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.94, 0.25} -baby_zombie.visual_size = {x=0.5, y=0.5} +baby_zombie.visual_size = {x=zombie.visual_size.x/2, y=zombie.visual_size.y/2} baby_zombie.walk_velocity = 1.2 baby_zombie.run_velocity = 2.4 baby_zombie.light_damage = 0 @@ -96,6 +102,7 @@ mobs:register_mob("mobs_mc:baby_zombie", baby_zombie) local husk = table.copy(zombie) husk.textures = {{"mobs_mc_husk.png"}} husk.light_damage = 0 +husk.water_damage = 3 -- TODO: Husks avoid water mobs:register_mob("mobs_mc:husk", husk) @@ -104,7 +111,7 @@ mobs:register_mob("mobs_mc:husk", husk) -- A smaller and more dangerous variant of the husk local baby_husk = table.copy(husk) baby_husk.collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.94, 0.25} -baby_husk.visual_size = {x=0.5, y=0.5} +baby_husk.visual_size = {x=zombie.visual_size.x/2, y=zombie.visual_size.y/2} baby_husk.walk_velocity = 1.2 baby_husk.run_velocity = 2.4 @@ -113,23 +120,20 @@ mobs:register_mob("mobs_mc:baby_husk", baby_husk) -- Spawning -mobs:register_spawn("mobs_mc:zombie", {"group:solid"}, 7, -1, 3000, 4, 31000) +mobs:register_spawn("mobs_mc:zombie", mobs_mc.spawn.solid, 7, 0, 6000, 4, 31000) -- Baby zombie is 20 times less likely than regular zombies -mobs:register_spawn("mobs_mc:baby_zombie", {"group:solid"}, 7, -1, 100000, 4, 31000) -mobs:register_spawn("mobs_mc:husk", {"mcl_core:sand", "mcl_core:redsand", "mcl_core:sandstone", "mcl_core:redsandstone"}, 7, -1, 4090, 4, 31000) -mobs:register_spawn("mobs_mc:baby_husk", {"mcl_core:sand", "mcl_core:redsand", "mcl_core:sandstone", "mcl_core:redsandstone"}, 7, -1, 100000, 4, 31000) +mobs:register_spawn("mobs_mc:baby_zombie", mobs_mc.spawn.solid, 7, 0, 60000, 4, 31000) +mobs:register_spawn("mobs_mc:husk", mobs_mc.spawn.desert, 7, 0, 6500, 4, 31000) +mobs:register_spawn("mobs_mc:baby_husk", mobs_mc.spawn.desert, 7, 0, 65000, 4, 31000) -- Compatibility mobs:alias_mob("mobs:zombie", "mobs_mc:zombie") -- Spawn eggs -mobs:register_egg("mobs_mc:zombie", "Spawn Zombie", "spawn_egg_zombie.png") -mobs:register_egg("mobs_mc:baby_zombie", "Spawn Baby Zombie", "spawn_egg_baby_zombie.png") -- TODO: To be removed -mobs:register_egg("mobs_mc:husk", "Spawn Husk", "spawn_egg_husk.png") -- TODO: To be removed -mobs:register_egg("mobs_mc:baby_husk", "Spawn Baby Husk", "spawn_egg_baby_husk.png") -- TODO: To be removed +mobs:register_egg("mobs_mc:husk", S("Husk"), "mobs_mc_spawn_icon_husk.png", 0) +mobs:register_egg("mobs_mc:zombie", S("Zombie"), "mobs_mc_spawn_icon_zombie.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC Zombie loaded") end diff --git a/mods/ENTITIES/mobs_mc/zombiepig.lua b/mods/ENTITIES/mobs_mc/zombiepig.lua index e72e0546c..f88a244d7 100644 --- a/mods/ENTITIES/mobs_mc/zombiepig.lua +++ b/mods/ENTITIES/mobs_mc/zombiepig.lua @@ -1,98 +1,105 @@ ---MCmobs v0.2 +--MCmobs v0.4 --maikerumine --made for MC like Survival game --License for code WTFPL and otherwise stated in readmes +-- intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP.."/intllib.lua") --dofile(minetest.get_modpath("mobs").."/api.lua") +--################### +--################### ZOMBIE PIGMAN +--################### -mobs:register_mob("mobs_mc:pigman", { - type = "monster", +local pigman = { + -- type="animal", passive=false: This combination is needed for a neutral mob which becomes hostile, if attacked + type = "animal", + passive = false, hp_min = 20, hp_max = 20, - collisionbox = {-0.3, -1.0, -0.3, 0.3, 0.8, 0.3}, + armor = 90, + attack_type = "dogfight", + group_attack = true, + damage = 9, + collisionbox = {-0.3, -0.01, -0.3, 0.3, 1.94, 0.3}, visual = "mesh", - mesh = "3d_armor_character.b3d", - textures = {{"mobs_mc_zombiepig.png", - "3d_armor_trans.png", - minetest.registered_items["mcl_tools:sword_gold"].inventory_image, - }}, - + mesh = "mobs_mc_zombie_pigman.b3d", + textures = {{"mobs_mc_zombie_pigman.png^mobs_mc_zombie_pigman_sword.png"}}, + visual_size = {x=3, y=3}, + sounds = { + random = "zombie1", -- TODO: replace + death = "zombiedeath", -- TODO: replace + damage = "zombiehurt1", -- TODO: replace + distance = 16, + }, + jump = true, makes_footstep_sound = true, walk_velocity = .8, run_velocity = 2.6, - damage = 2, - armor = 80, pathfinding = 1, - group_attack = true, drops = { - {name = "mcl_mobitems:rotten_flesh", + {name = mobs_mc.items.rotten_flesh, + chance = 1, + min = 1, + max = 1,}, + {name = mobs_mc.items.gold_nugget, chance = 1, min = 0, max = 1,}, - {name = "mcl_core:gold_nugget", - chance = 1, - min = 0, - max = 1,}, - {name = "mcl_core:gold_ingot", - chance = 40, + {name = mobs_mc.items.gold_ingot, + chance = 40, -- 2.5% min = 1, max = 1,}, - {name = "mcl_tools:sword_gold", - -- approximation to 8.5% - chance = 11, + {name = mobs_mc.items.gold_sword, + chance = 12, -- 8.333%, approximation to 8.5% 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, + stnd_speed = 25, walk_speed = 25, run_speed = 50, punch_speed = 25, + stand_start = 40, stand_end = 80, + walk_start = 0, walk_end = 40, + run_start = 0, run_end = 40, + punch_start = 90, punch_end = 130, }, - ]] - 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", - lava_damage = minetest.registered_nodes["mcl_core:lava_source"].damage_per_second, + water_damage = 1, + lava_damage = 0, light_damage = 0, - fear_height = 3, + fear_height = 4, view_range = 16, - attack_type = "dogfight", -}) -mobs:register_spawn("mobs_mc:pigman", {"mcl_nether:netherrack", "mcl_nether:nether_brick"}, 17, -1, 5000, 3, -1000) -mobs:register_spawn("mobs_mc:pigman", {"mcl_nether:portal"}, 15, -1, 500, 4, 31000) -mobs:register_spawn("mobs_mc:pigman", {"mcl_core:obsidian"}, 17, -1, 1900, 1, 31000) +} +mobs:register_mob("mobs_mc:pigman", pigman) + +-- Baby pigman. +-- A smaller and more dangerous variant of the pigman + +local baby_pigman = table.copy(pigman) +baby_pigman.collisionbox = {-0.25, -0.01, -0.25, 0.25, 0.94, 0.25} +baby_pigman.visual_size = {x=0.5, y=0.5} +baby_pigman.textures = {{"mobs_mc_zombie_pigman.png"}} +baby_pigman.walk_velocity = 1.2 +baby_pigman.run_velocity = 2.4 +baby_pigman.light_damage = 0 + +mobs:register_mob("mobs_mc:baby_pigman", baby_pigman) + +-- Baby zombie is 20 times less likely than regular zombies +mobs:register_spawn("mobs_mc:baby_pigman", mobs_mc.spawn.nether, minetest.LIGHT_MAX+1, 0, 100000, 4, 31000) + +--mobs:register_spawn("mobs_mc:pigman", {"nether:rack"}, 17, -1, 5000, 3, -2000) +mobs:register_spawn("mobs_mc:pigman", mobs_mc.spawn.nether, minetest.LIGHT_MAX+1, 0, 6000, 3, -2000) +mobs:register_spawn("mobs_mc:pigman", mobs_mc.spawn.nether_portal, minetest.LIGHT_MAX+1, 0, 500, 4, 31000) +mobs:spawn_specific("mobs_mc:pigman", mobs_mc.spawn.nether_portal, {"air", "mcl_portals:nether_air"},0, minetest.LIGHT_MAX+1, 7, 9000, 2, -31000, 31000) -- compatibility mobs:alias_mob("mobs:pigman", "mobs_mc:pigman") -- spawn eggs -mobs:register_egg("mobs_mc:pigman", "Spawn Zombie Pigman", "spawn_egg_zombie_pigman.png") +mobs:register_egg("mobs_mc:pigman", S("Zombie Pigman"), "mobs_mc_spawn_icon_zombie_pigman.png", 0) - -if minetest.setting_get("log_mods") then +if minetest.settings:get_bool("log_mods") then minetest.log("action", "MC Pigmen loaded") end diff --git a/mods/ENTITIES/mobs_mc_gameconfig/init.lua b/mods/ENTITIES/mobs_mc_gameconfig/init.lua new file mode 100644 index 000000000..70506d57a --- /dev/null +++ b/mods/ENTITIES/mobs_mc_gameconfig/init.lua @@ -0,0 +1,186 @@ +mobs_mc = {} + +mobs_mc.override = {} + +mobs_mc.override.items = { + blaze_rod = "mcl_mobitems:blaze_rod", + blaze_powder = "mcl_mobitems:blaze_powder", + chicken_raw = "mcl_mobitems:chicken", + chicken_cooked = "mcl_mobitems:cooked_chicken", + feather = "mcl_mobitems:feather", + beef_raw = "mcl_mobitems:beef", + beef_cooked = "mcl_mobitems:cooked_beef", + bowl = "mcl_core:bowl", + mushroom_stew = "mcl_mushrooms:mushroom_stew", + milk = "mcl_mobitems:milk_bucket", + dragon_egg = "mcl_end:dragon_egg", + egg = "mcl_throwing:egg", + ender_eye = "mcl_mobitems:ender_eye", + ghast_tear = "mcl_mobitems:ghast_tear", + saddle = "mcl_mobitems:saddle", + porkchop_raw = "mcl_mobitems:porkchop", + porkchop_cooked = "mcl_mobitems:cooked_porkchop", + carrot_on_a_stick = "mcl_mobitems:carrot_on_a_stick", + rabbit_raw = "mcl_mobitems:rabbit", + rabbit_cooked = "mcl_mobitems:cooked_rabbit", + rabbit_hide = "mcl_mobitems:rabbit_hide", + mutton_raw = "mcl_mobitems:mutton", + mutton_cooked = "mcl_mobitems:cooked_mutton", + shulker_shell = "mcl_mobitems:shulker_shell", + magma_cream = "mcl_mobitems:magma_cream", + spider_eye = "mcl_mobitems:spider_eye", + rotten_flesh = "mcl_mobitems:rotten_flesh", + snowball = "mcl_throwing:snowball", + top_snow = "mcl_core:snow", + snow_block = "mcl_core:snowblock", + arrow = "mcl_throwing:arrow", + bow = "mcl_throwing:bow", + head_zombie = "mcl_heads:zombie", + head_creeper = "mcl_heads:creeper", + head_skeleton = "mcl_heads:skeleton", + head_wither_skeleton = "mcl_heads:wither_skeleton", + + leather = "mcl_mobitems:leather", + shears = "mcl_tools:shears", + + mushroom_red = "mcl_mushrooms:mushroom_red", + bucket = "bucket:bucket_empty", + grass_block = "mcl_core:dirt_with_grass", + string = "mcl_mobitems:string", + stick = "mcl_core:stick", + flint = "mcl_core:flint", + iron_ingot = "mcl_core:iron_ingot", + iron_block = "mcl_core:ironblock", + fire = "mcl_fire:fire", + gunpowder = "mcl_mobitems:gunpowder", + flint_and_steel = "mcl_fire:flint_and_steel", + water_source = "mcl_core:water_source", + black_dye = "mcl_dye:black", + poppy = "mcl_flowers:poppy", + dandelion = "mcl_flowers:dandelion", + coal = "mcl_core:coal_lump", + emerald = "mcl_core:emerald", + iron_axe = "mcl_tools:axe_iron", + gold_sword = "mcl_tools:sword_gold", + gold_ingot = "mcl_core:gold_ingot", + gold_nugget = "mcl_core:gold_nugget", + glowstone_dust = "mcl_nether:glowstone_dust", + redstone = "mesecons:redstone", + glass_bottle = "mcl_potions:glass_bottle", + sugar = "mcl_core:sugar", + wheat = "mcl_farming:wheat_item", + cookie = "mcl_farming:cookie", + potato = "mcl_farming:potato_item", + hay_bale = "mcl_farming:hay_bale", + prismarine_shard = "mcl_ocean:prismarine_shard", + prismarine_crystals = "mcl_ocean:prismarine_crystals", + apple = "mcl_core:apple", + golden_apple = "mcl_core:apple_gold", + rabbit_foot = "mcl_mobitems:rabbit_foot", + wet_sponge = "mcl_sponges:sponge_wet", + + -- Other + nether_brick_block = "mcl_nether:nether_brick", + netherrack = "mcl_nether:netherrack", + nether_star = "mcl_mobitems:nether_star", + mycelium = "mcl_core:mycelium", + carrot = "mcl_farming:carrot_item", + golden_carrot = "mcl_farming:carrot_item_gold", + fishing_rod = "mcl_fishing:fishing_rod", + fish_raw = "mcl_fishing:fish_raw", + salmon_raw = "mcl_fishing:salmon_raw", + clownfish_raw = "mcl_fishing:clownfish_raw", + pufferfish_raw = "mcl_fishing:pufferfish_raw", + bone = "mcl_mobitems:bone", + slimeball = "mcl_mobitems:slimeball", + + ender_pearl = "mcl_throwing:ender_pearl", + + wool_white = "mcl_wool:white", + wool_light_grey = "mcl_wool:silver", + wool_grey = "mcl_wool:grey", + wool_blue = "mcl_wool:blue", + wool_lime = "mcl_wool:lime", + wool_green = "mcl_wool:green", + wool_purple = "mcl_wool:purple", + wool_pink = "mcl_wool:pink", + wool_yellow = "mcl_wool:yellow", + wool_orange = "mcl_wool:orange", + wool_brown = "mcl_wool:brown", + wool_red = "mcl_wool:red", + wool_cyan = "mcl_wool:cyan", + wool_magenta = "mcl_wool:magenta", + wool_black = "mcl_wool:black", + wool_light_blue = "mcl_wool:light_blue", + + music_discs = { + "mcl_jukebox:record_1", + "mcl_jukebox:record_2", + "mcl_jukebox:record_3", + "mcl_jukebox:record_4", + "mcl_jukebox:record_5", + "mcl_jukebox:record_6", + "mcl_jukebox:record_7", + "mcl_jukebox:record_8", + "mcl_jukebox:record_9", + }, +} + +mobs_mc.override.follow = { + chicken = { "mcl_farming:wheat_seeds", "mcl_farming:melon_seeds", "mcl_farming:pumpkin_seeds", "mcl_farming:beetroot_seeds", }, + parrot = { "mcl_farming:seed_wheat", "mcl_farming:seed_beetroot", "mcl_farming:seed_pumpkin", "mcl_farming:seed_melon" }, -- seeds in general + pig = { mobs_mc.override.items.potato, mobs_mc.override.items.carrot, "mcl_farming:beetroot_item", mobs_mc.override.items.carrot_on_a_stick}, + ocelot = { mobs_mc.override.items.fish_raw, mobs_mc.override.items.salmon_raw, mobs_mc.override.items.clownfish_raw, mobs_mc.override.items.pufferfish_raw, }, + sheep = { mobs_mc.override.items.wheat }, + cow = { mobs_mc.override.items.wheat }, + horse = { mobs_mc.override.items.apple, mobs_mc.override.items.sugar, mobs_mc.override.items.wheat, mobs_mc.override.items.hay_bale, mobs_mc.override.items.golden_apple, mobs_mc.override.items.golden_carrot }, + rabbit = { mobs_mc.override.items.dandelion, mobs_mc.override.items.carrot, mobs_mc.override.items.golden_carrot }, +} + +mobs_mc.override.replace = { + -- Rabbits reduce carrot growth stage by 1 + rabbit = { + {"mcl_farming:carrot", "mcl_farming:carrot_7", 0}, + {"mcl_farming:carrot_7", "mcl_farming:carrot_6", 0}, + {"mcl_farming:carrot_6", "mcl_farming:carrot_5", 0}, + {"mcl_farming:carrot_5", "mcl_farming:carrot_4", 0}, + {"mcl_farming:carrot_4", "mcl_farming:carrot_3", 0}, + {"mcl_farming:carrot_3", "mcl_farming:carrot_2", 0}, + {"mcl_farming:carrot_2", "mcl_farming:carrot_1", 0}, + {"mcl_farming:carrot_1", "air", 0}, + }, + -- Sheep eat grass + sheep = { + { "mcl_core:dirt_with_grass", "mcl_core:dirt", -1 }, + { "mcl_flowers:tallgrass", "air", 0 }, + }, + -- Silverfish populate stone, etc. with monster eggs + silverfish = { + {"mcl_core:stone", "mcl_monster_eggs:monster_egg_stone", -1}, + {"mcl_core:cobble", "mcl_monster_eggs:monster_egg_cobble", -1}, + {"mcl_core:stonebrick", "mcl_monster_eggs:monster_egg_stonebrick", -1}, + {"mcl_core:stonebrickmossy", "mcl_monster_eggs:monster_egg_stonebrickmossy", -1}, + {"mcl_core:stonebrickcracked", "mcl_monster_eggs:monster_egg_stonebrickcracked", -1}, + {"mcl_core:stonebrickcarved", "mcl_monster_eggs:monster_egg_stonebrickcarved", -1}, + }, +} + +-- List of nodes which endermen can take +mobs_mc.override.enderman_takable = { + -- Generic handling, useful for entensions + "group:enderman_takable", +} + +-- List of nodes on which mobs can spawn +mobs_mc.override.spawn = { + solid = { "group:solid", }, -- spawn on "solid" nodes + grassland = { mobs_mc.override.items.grass_block }, + savanna = { "group:sand", "mcl_core:sandstone", "mcl_core:redsandstone" }, + grassland_savanna = { mobs_mc.override.items.grass_block, "group:sand", "mcl_core:sandstone", "mcl_core:redsandstone" }, + desert = { "group:sand" }, + jungle = { mobs_mc.override.items.grass_block, "mcl_core:podzol", "mcl_core:jungletree", "mcl_core:jungleleaves" }, + snow = { "mcl_core:snow", "mcl_core:snowblock", "mcl_core:dirt_with_grass_snow" }, + end_city = { "mcl_end:purpur_block" }, + wolf = { mobs_mc.override.items.grass_block, "mcl_core:dirt", "mcl_core:dirt_with_grass_snow", "mcl_core:snow", "mcl_core:snowblock", "mcl_core:podzol" }, +} + diff --git a/mods/HUD/mcl_inventory/creative.lua b/mods/HUD/mcl_inventory/creative.lua index 9d4c5dd11..cbc78bd58 100644 --- a/mods/HUD/mcl_inventory/creative.lua +++ b/mods/HUD/mcl_inventory/creative.lua @@ -23,7 +23,7 @@ do return def.groups.tool or (def.tool_capabilities ~= nil and def.tool_capabilities.damage_groups == nil) end local is_weapon_or_armor = function(def) - return def.groups.weapon or def.groups.weapon_ranged or def.groups.ammo or ((def.groups.armor_head or def.groups.armor_torso or def.groups.armor_legs or def.groups.armor_feet) and def.groups.non_combat_armor ~= 1) + return def.groups.weapon or def.groups.weapon_ranged or def.groups.ammo or ((def.groups.armor_head or def.groups.armor_torso or def.groups.armor_legs or def.groups.armor_feet or def.groups.horse_armor) and def.groups.non_combat_armor ~= 1) end if def.groups.building_block then table.insert(inventory_lists["blocks"], name) diff --git a/mods/HUD/mcl_inventory/textures/crafting_player2d.png b/mods/HUD/mcl_inventory/textures/crafting_player2d.png index 0198ed3c3..176588a3d 100644 Binary files a/mods/HUD/mcl_inventory/textures/crafting_player2d.png and b/mods/HUD/mcl_inventory/textures/crafting_player2d.png differ diff --git a/mods/ITEMS/mcl_core/nodes.lua b/mods/ITEMS/mcl_core/nodes.lua index 3d709a488..8ffa75ea9 100644 --- a/mods/ITEMS/mcl_core/nodes.lua +++ b/mods/ITEMS/mcl_core/nodes.lua @@ -71,7 +71,7 @@ minetest.register_node("mcl_core:stone", { tiles = {"default_stone.png"}, is_ground_content = true, stack_max = 64, - groups = {pickaxey=1, stone=1, building_block=1, deco_block=1, material_stone=1}, + groups = {pickaxey=1, stone=1, building_block=1, material_stone=1}, drop = 'mcl_core:cobble', sounds = mcl_sounds.node_sound_stone_defaults(), _mcl_blast_resistance = 30, @@ -242,7 +242,7 @@ minetest.register_node("mcl_core:stonebrick", { _doc_items_longdesc = doc.sub.items.temp.build, tiles = {"default_stone_brick.png"}, stack_max = 64, - groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1}, + groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, material_stone=1}, sounds = mcl_sounds.node_sound_stone_defaults(), is_ground_content = false, _mcl_blast_resistance = 30, @@ -255,7 +255,7 @@ minetest.register_node("mcl_core:stonebrickcarved", { tiles = {"mcl_core_stonebrick_carved.png"}, is_ground_content = false, stack_max = 64, - groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1}, + groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, material_stone=1}, sounds = mcl_sounds.node_sound_stone_defaults(), is_ground_content = false, _mcl_blast_resistance = 30, @@ -268,7 +268,7 @@ minetest.register_node("mcl_core:stonebrickcracked", { tiles = {"mcl_core_stonebrick_cracked.png"}, is_ground_content = false, stack_max = 64, - groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1}, + groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, material_stone=1}, sounds = mcl_sounds.node_sound_stone_defaults(), is_ground_content = false, _mcl_blast_resistance = 30, @@ -280,7 +280,7 @@ minetest.register_node("mcl_core:stonebrickmossy", { _doc_items_longdesc = doc.sub.items.temp.build, tiles = {"mcl_core_stonebrick_mossy.png"}, stack_max = 64, - groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, deco_block=1, material_stone=1}, + groups = {pickaxey=1, stone=1, stonebrick=1, building_block=1, material_stone=1}, sounds = mcl_sounds.node_sound_stone_defaults(), is_ground_content = false, _mcl_blast_resistance = 30, @@ -366,7 +366,7 @@ minetest.register_node("mcl_core:dirt_with_grass", { tiles = {"default_grass.png", "default_dirt.png", "default_grass_side.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, spreading_dirt_type=1, building_block=1}, + groups = {handy=1,shovely=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, spreading_dirt_type=1, enderman_takable=1, building_block=1}, drop = 'mcl_core:dirt', sounds = mcl_sounds.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.4}, @@ -455,7 +455,7 @@ minetest.register_node("mcl_core:podzol", { tiles = {"mcl_core_dirt_podzol_top.png", "default_dirt.png", "mcl_core_dirt_podzol_side.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=3, soil=1, soil_sapling=2, soil_sugarcane=1, building_block=1}, + groups = {handy=1,shovely=3, soil=1, soil_sapling=2, soil_sugarcane=1, enderman_takable=1, building_block=1}, drop = 'mcl_core:dirt', sounds = mcl_sounds.node_sound_dirt_defaults(), _mcl_blast_resistance = 2.5, @@ -486,7 +486,7 @@ minetest.register_node("mcl_core:dirt", { tiles = {"default_dirt.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, building_block=1}, + groups = {handy=1,shovely=1, soil=1, soil_sapling=2, soil_sugarcane=1, cultivatable=2, enderman_takable=1, building_block=1}, sounds = mcl_sounds.node_sound_dirt_defaults(), _mcl_blast_resistance = 3, _mcl_hardness = 0.5, @@ -498,7 +498,7 @@ minetest.register_node("mcl_core:coarse_dirt", { tiles = {"mcl_core_coarse_dirt.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=1, soil=1, soil_sugarcane=1, cultivatable=1, building_block=1}, + groups = {handy=1,shovely=1, soil=1, soil_sugarcane=1, cultivatable=1, enderman_takable=1, building_block=1}, sounds = mcl_sounds.node_sound_dirt_defaults(), _mcl_blast_resistance = 3, _mcl_hardness = 0.5, @@ -510,7 +510,7 @@ minetest.register_node("mcl_core:gravel", { tiles = {"default_gravel.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=1, falling_node=1, building_block=1, material_sand=1}, + groups = {handy=1,shovely=1, falling_node=1, enderman_takable=1, building_block=1, material_sand=1}, drop = { max_items = 1, items = { @@ -533,7 +533,7 @@ minetest.register_node("mcl_core:sand", { tiles = {"default_sand.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=1, falling_node=1, sand=1, soil_sugarcane=1, building_block=1, material_sand=1}, + groups = {handy=1,shovely=1, falling_node=1, sand=1, soil_sugarcane=1, enderman_takable=1, building_block=1, material_sand=1}, sounds = mcl_sounds.node_sound_sand_defaults(), _mcl_blast_resistance = 2.5, _mcl_hardness = 0.5, @@ -584,7 +584,7 @@ minetest.register_node("mcl_core:redsand", { tiles = {"mcl_core_red_sand.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=1, falling_node=1, sand=1, soil_sugarcane=1, building_block=1, material_sand=1}, + groups = {handy=1,shovely=1, falling_node=1, sand=1, soil_sugarcane=1, enderman_takable=1, building_block=1, material_sand=1}, sounds = mcl_sounds.node_sound_sand_defaults(), _mcl_blast_resistance = 2.5, _mcl_hardness = 0.5, @@ -636,7 +636,7 @@ minetest.register_node("mcl_core:clay", { tiles = {"default_clay.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1,shovely=1, building_block=1}, + groups = {handy=1,shovely=1, enderman_takable=1, building_block=1}, drop = 'mcl_core:clay_lump 4', sounds = mcl_sounds.node_sound_dirt_defaults(), _mcl_blast_resistance = 3, @@ -1193,7 +1193,7 @@ minetest.register_node("mcl_core:cactus", { tiles = {"default_cactus_top.png", "mcl_core_cactus_bottom.png", "default_cactus_side.png","default_cactus_side.png","default_cactus_side.png","default_cactus_side.png"}, is_ground_content = true, stack_max = 64, - groups = {handy=1, attached_node=1, plant=1, deco_block=1, dig_by_piston=1}, + groups = {handy=1, attached_node=1, plant=1, deco_block=1, dig_by_piston=1, enderman_takable=1}, sounds = mcl_sounds.node_sound_wood_defaults(), paramtype = "light", sunlight_propagates = true, @@ -1716,7 +1716,7 @@ minetest.register_node("mcl_core:cobble", { tiles = {"default_cobble.png"}, is_ground_content = false, stack_max = 64, - groups = {pickaxey=1, building_block=1, deco_block=1, material_stone=1}, + groups = {pickaxey=1, building_block=1, material_stone=1}, sounds = mcl_sounds.node_sound_stone_defaults(), _mcl_blast_resistance = 30, _mcl_hardness = 2, diff --git a/mods/ITEMS/mcl_farming/depends.txt b/mods/ITEMS/mcl_farming/depends.txt index 6cbf6bc9a..9c412baf2 100644 --- a/mods/ITEMS/mcl_farming/depends.txt +++ b/mods/ITEMS/mcl_farming/depends.txt @@ -4,4 +4,5 @@ bucket mcl_wool mcl_torches weather_pack +mobs_mc doc? diff --git a/mods/ITEMS/mcl_farming/melon.lua b/mods/ITEMS/mcl_farming/melon.lua index b9a23d00d..600e68473 100644 --- a/mods/ITEMS/mcl_farming/melon.lua +++ b/mods/ITEMS/mcl_farming/melon.lua @@ -18,7 +18,7 @@ local melon_base_def = { _doc_items_longdesc = "A melon is a block which can be grown from melon stems, which in turn are grown from melon seeds. It can be harvested for melon slices.", stack_max = 64, tiles = {"farming_melon_top.png", "farming_melon_top.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png", "farming_melon_side.png"}, - groups = {handy=1,axey=1, plant=1,building_block=1,dig_by_piston=1}, + groups = {handy=1,axey=1, plant=1,building_block=1,enderman_takable=1,dig_by_piston=1}, paramtype = "light", drop = { max_items = 1, diff --git a/mods/ITEMS/mcl_farming/pumpkin.lua b/mods/ITEMS/mcl_farming/pumpkin.lua index f5753b661..4063479e8 100644 --- a/mods/ITEMS/mcl_farming/pumpkin.lua +++ b/mods/ITEMS/mcl_farming/pumpkin.lua @@ -80,8 +80,13 @@ local pumpkin_base_def = { paramtype = "light", paramtype2 = "facedir", tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face.png"}, - groups = {handy=1,axey=1, plant=1,building_block=1, armor_head=1,non_combat_armor=1, dig_by_piston=1}, + groups = {handy=1,axey=1, plant=1,building_block=1, armor_head=1,non_combat_armor=1, dig_by_piston=1, enderman_takable=1}, sounds = mcl_sounds.node_sound_wood_defaults(), + on_construct = function(pos) + -- Attempt to spawn iron golem or snow golem + mobs_mc.tools.check_iron_golem_summon(pos) + mobs_mc.tools.check_snow_golem_summon(pos) + end, _mcl_blast_resistance = 5, _mcl_hardness = 1, } @@ -107,6 +112,11 @@ minetest.register_node("mcl_farming:pumpkin_face_light", { tiles = {"farming_pumpkin_top.png", "farming_pumpkin_top.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_side.png", "farming_pumpkin_face_light.png"}, groups = {handy=1,axey=1, building_block=1, dig_by_piston=1 }, sounds = mcl_sounds.node_sound_wood_defaults(), + on_construct = function(pos) + -- Attempt to spawn iron golem or snow golem + mobs_mc.tools.check_iron_golem_summon(pos) + mobs_mc.tools.check_snow_golem_summon(pos) + end, _mcl_blast_resistance = 5, _mcl_hardness = 1, }) diff --git a/mods/ITEMS/mcl_flowers/init.lua b/mods/ITEMS/mcl_flowers/init.lua index 0b9f1a2d2..0c1ab8bf4 100644 --- a/mods/ITEMS/mcl_flowers/init.lua +++ b/mods/ITEMS/mcl_flowers/init.lua @@ -39,7 +39,7 @@ local function add_simple_flower(name, desc, image, simple_selection_box) paramtype = "light", walkable = false, stack_max = 64, - groups = {dig_immediate=3,flammable=2,plant=1,flower=1,place_flowerlike=1,non_mycelium_plant=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1}, + groups = {dig_immediate=3,flammable=2,plant=1,flower=1,place_flowerlike=1,non_mycelium_plant=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,enderman_takable=1,deco_block=1}, sounds = mcl_sounds.node_sound_leaves_defaults(), node_placement_prediction = "", on_place = on_place_flower, diff --git a/mods/ITEMS/mcl_heads/init.lua b/mods/ITEMS/mcl_heads/init.lua index 41962c8af..524526b54 100644 --- a/mods/ITEMS/mcl_heads/init.lua +++ b/mods/ITEMS/mcl_heads/init.lua @@ -1,7 +1,7 @@ -- Heads system -local function addhead(node, desc, longdesc) - minetest.register_node("mcl_heads:"..node, { +local function addhead(name, texture, desc, longdesc) + minetest.register_node("mcl_heads:"..name, { description = desc, _doc_items_longdesc = longdesc, drawtype = "nodebox", @@ -13,13 +13,17 @@ local function addhead(node, desc, longdesc) }, }, groups = {handy=1, armor_head=1,non_combat_armor=1, head=1, deco_block=1, dig_by_piston=1}, + -- The head textures are based off the textures of an actual mob. + -- FIXME: This code assumes 16×16 textures for the mob textures! tiles = { - "head_"..node.."_top.png", - "head_"..node.."_top.png", - "head_"..node.."_left.png", - "head_"..node.."_right.png", - "head_"..node.."_back.png", - "head_"..node.."_face.png", + -- Note: bottom texture is overlaid over top texture to get rid of possible transparency. + -- This is required for skeleton skull and wither skeleton skull. + "[combine:16x16:-4,4="..texture, -- top + "([combine:16x16:-4,4="..texture..")^([combine:16x16:-12,4="..texture..")", -- bottom + "[combine:16x16:-12,0="..texture, -- left + "[combine:16x16:4,0="..texture, -- right + "[combine:16x16:-20,0="..texture, -- back + "[combine:16x16:-4,0="..texture, -- front }, paramtype = "light", stack_max = 64, @@ -39,9 +43,9 @@ local function addhead(node, desc, longdesc) end -- Add heads -addhead("zombie", "Zombie Head", "A zombie head is a small decorative block which resembles the head of a zombie. It can also be worn as a helmet for fun, but does not offer any protection.") -addhead("creeper", "Creeper Head", "A creeper head is a small decorative block which resembles the head of a creeper. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("zombie", "mobs_mc_zombie.png", "Zombie Head", "A zombie head is a small decorative block which resembles the head of a zombie. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("creeper", "mobs_mc_creeper.png", "Creeper Head", "A creeper head is a small decorative block which resembles the head of a creeper. It can also be worn as a helmet for fun, but does not offer any protection.") -- Original Minecraft name: “Head” -addhead("steve", "Human Head", "A human head is a small decorative block which resembles the head of a human (i.e. a player character). It can also be worn as a helmet for fun, but does not offer any protection.") -addhead("skeleton", "Skeleton Skull", "A skeleton skull is a small decorative block which resembles the head of a skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") -addhead("wither_skeleton", "Wither Skeleton Skull", "A wither skeleton skull is a small decorative block which resembles the head of a wither skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("steve", "character.png", "Human Head", "A human head is a small decorative block which resembles the head of a human (i.e. a player character). It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("skeleton", "mobs_mc_skeleton.png", "Skeleton Skull", "A skeleton skull is a small decorative block which resembles the head of a skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") +addhead("wither_skeleton", "mobs_mc_wither_skeleton.png", "Wither Skeleton Skull", "A wither skeleton skull is a small decorative block which resembles the head of a wither skeleton. It can also be worn as a helmet for fun, but does not offer any protection.") diff --git a/mods/ITEMS/mcl_heads/textures/head_creeper_back.png b/mods/ITEMS/mcl_heads/textures/head_creeper_back.png deleted file mode 100644 index b7ba26d4b..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_creeper_back.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_creeper_face.png b/mods/ITEMS/mcl_heads/textures/head_creeper_face.png deleted file mode 100644 index df0da7648..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_creeper_face.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_creeper_left.png b/mods/ITEMS/mcl_heads/textures/head_creeper_left.png deleted file mode 100644 index f3875b37c..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_creeper_left.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_creeper_right.png b/mods/ITEMS/mcl_heads/textures/head_creeper_right.png deleted file mode 100644 index c8a1b9a7a..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_creeper_right.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_creeper_top.png b/mods/ITEMS/mcl_heads/textures/head_creeper_top.png deleted file mode 100644 index 2bf5fbbf3..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_creeper_top.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_skeleton_back.png b/mods/ITEMS/mcl_heads/textures/head_skeleton_back.png deleted file mode 100644 index c02119561..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_skeleton_back.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_skeleton_face.png b/mods/ITEMS/mcl_heads/textures/head_skeleton_face.png deleted file mode 100644 index a71bfc4bb..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_skeleton_face.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_skeleton_left.png b/mods/ITEMS/mcl_heads/textures/head_skeleton_left.png deleted file mode 100644 index bda8438de..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_skeleton_left.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_skeleton_right.png b/mods/ITEMS/mcl_heads/textures/head_skeleton_right.png deleted file mode 100644 index 067b6e5eb..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_skeleton_right.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_skeleton_top.png b/mods/ITEMS/mcl_heads/textures/head_skeleton_top.png deleted file mode 100644 index ffa276774..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_skeleton_top.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_steve_back.png b/mods/ITEMS/mcl_heads/textures/head_steve_back.png deleted file mode 100644 index 10536764c..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_steve_back.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_steve_face.png b/mods/ITEMS/mcl_heads/textures/head_steve_face.png deleted file mode 100644 index 7b6694750..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_steve_face.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_steve_left.png b/mods/ITEMS/mcl_heads/textures/head_steve_left.png deleted file mode 100644 index d066fdabf..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_steve_left.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_steve_right.png b/mods/ITEMS/mcl_heads/textures/head_steve_right.png deleted file mode 100644 index 7f87fd6d2..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_steve_right.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_steve_top.png b/mods/ITEMS/mcl_heads/textures/head_steve_top.png deleted file mode 100644 index fb779e1eb..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_steve_top.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_back.png b/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_back.png deleted file mode 100644 index db288fb89..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_back.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_face.png b/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_face.png deleted file mode 100644 index 7433498b2..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_face.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_left.png b/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_left.png deleted file mode 100644 index c959be85e..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_left.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_right.png b/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_right.png deleted file mode 100644 index 2be77a3a8..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_right.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_top.png b/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_top.png deleted file mode 100644 index 61f965998..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_wither_skeleton_top.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_zombie_back.png b/mods/ITEMS/mcl_heads/textures/head_zombie_back.png deleted file mode 100644 index fb765e7e1..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_zombie_back.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_zombie_face.png b/mods/ITEMS/mcl_heads/textures/head_zombie_face.png deleted file mode 100644 index b837ca1b9..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_zombie_face.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_zombie_left.png b/mods/ITEMS/mcl_heads/textures/head_zombie_left.png deleted file mode 100644 index 570bc5190..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_zombie_left.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_zombie_right.png b/mods/ITEMS/mcl_heads/textures/head_zombie_right.png deleted file mode 100644 index 3d3fdce72..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_zombie_right.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/head_zombie_top.png b/mods/ITEMS/mcl_heads/textures/head_zombie_top.png deleted file mode 100644 index 981021229..000000000 Binary files a/mods/ITEMS/mcl_heads/textures/head_zombie_top.png and /dev/null differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper.png index be33d74e2..d277746f1 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper_preview.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper_preview.png index c89fbd78c..120f0b53e 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper_preview.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_creeper_preview.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton.png index baf632a65..411a37357 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton_preview.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton_preview.png index d16a32bb3..1697e032a 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton_preview.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_skeleton_preview.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_steve.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_steve.png index e68aef7e2..b85fb3d31 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_steve.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_steve.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_steve_preview.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_steve_preview.png index d0b0da568..906eb5b93 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_steve_preview.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_steve_preview.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton.png index 5e930143c..15c33350e 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton_preview.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton_preview.png index e41c20793..e6ed59b95 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton_preview.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_wither_skeleton_preview.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie.png index 0d919dc6e..b25347d75 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie.png differ diff --git a/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_preview.png b/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_preview.png index dfcacb149..de377c6af 100644 Binary files a/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_preview.png and b/mods/ITEMS/mcl_heads/textures/mcl_heads_zombie_preview.png differ diff --git a/mods/ITEMS/mcl_mobitems/depends.txt b/mods/ITEMS/mcl_mobitems/depends.txt index 73d023f65..a1ecdb893 100644 --- a/mods/ITEMS/mcl_mobitems/depends.txt +++ b/mods/ITEMS/mcl_mobitems/depends.txt @@ -1,2 +1,3 @@ mcl_core mcl_hunger +mobs_mc diff --git a/mods/ITEMS/mcl_mobitems/init.lua b/mods/ITEMS/mcl_mobitems/init.lua index 5b07112ff..ba2ac478d 100644 --- a/mods/ITEMS/mcl_mobitems/init.lua +++ b/mods/ITEMS/mcl_mobitems/init.lua @@ -421,6 +421,22 @@ minetest.register_craft({ recipe = {{"mcl_core:slimeblock"}}, }) +minetest.register_craft({ + type = "cooking", + output = 'mcl_core:iron_nugget', + recipe = 'mobs_mc:iron_horse_armor', + cooktime = 10, +}) + +minetest.register_craft({ + type = "cooking", + output = 'mcl_core:gold_nugget', + recipe = 'mobs_mc:gold_horse_armor', + cooktime = 10, +}) + + + minetest.register_craft({ output = "mcl_core:slimeblock", recipe = {{"mcl_mobitems:slimeball","mcl_mobitems:slimeball","mcl_mobitems:slimeball",}, diff --git a/mods/ITEMS/mcl_monster_eggs/depends.txt b/mods/ITEMS/mcl_monster_eggs/depends.txt new file mode 100644 index 000000000..fde951c96 --- /dev/null +++ b/mods/ITEMS/mcl_monster_eggs/depends.txt @@ -0,0 +1,3 @@ +mcl_sounds +mobs_mc +intllib? diff --git a/mods/ITEMS/mcl_monster_eggs/description.txt b/mods/ITEMS/mcl_monster_eggs/description.txt new file mode 100644 index 000000000..23ee58b02 --- /dev/null +++ b/mods/ITEMS/mcl_monster_eggs/description.txt @@ -0,0 +1 @@ +Adds “monster eggs”. These are blocks which disguise themselves as stone blocks and spawn a silverfish when broken. diff --git a/mods/ITEMS/mcl_monster_eggs/init.lua b/mods/ITEMS/mcl_monster_eggs/init.lua new file mode 100644 index 000000000..5d892ae35 --- /dev/null +++ b/mods/ITEMS/mcl_monster_eggs/init.lua @@ -0,0 +1,42 @@ +-- Monster eggs! +-- Blocks which spawn silverfish when destroyed. + +-- Intllib +local MP = minetest.get_modpath(minetest.get_current_modname()) +local S, NS = dofile(MP .. "/intllib.lua") + +local spawn_silverfish = function(pos, oldnode, oldmetadata, digger) + if not minetest.setting_getbool("creative_mode") then + minetest.add_entity(pos, "mobs_mc:silverfish") + end +end + +-- Template function for registering monster egg blocks +local register_block = function(subname, description, tiles, is_ground_content) + if is_ground_content == nil then + is_ground_content = false + end + minetest.register_node("mcl_monster_eggs:monster_egg_"..subname, { + description = description, + tiles = tiles, + is_ground_content = is_ground_content, + groups = {handy = 1, spawns_silverfish = 1, deco_block = 1}, + drop = '', + is_ground_content = false, + sounds = mcl_sounds.node_sound_stone_defaults(), + after_dig_node = spawn_silverfish, + _doc_items_longdesc = S("A monster egg is a block from which a silverfish will pop out when it is broken. It looks identical to its “normal” counterpart."), + _mcl_hardness = 0.75, + _mcl_blast_resistance = 3.75, + }) +end + +-- Register all the monster egg blocks +register_block("stone", S("Stone Monster Egg"), {"default_stone.png"}, true) +register_block("cobble", S("Cobblestone Monster Egg"), {"default_cobble.png"}) +register_block("stonebrick", S("Stone Bricks Monster Egg"), {"default_stone_brick.png"}) +register_block("stonebrickcracked", S("Cracked Stone Bricks Monster Egg"), {"mcl_core_stonebrick_cracked.png"}) +register_block("stonebrickmossy", S("Mossy Stone Bricks Monster Egg"), {"mcl_core_stonebrick_mossy.png"}) +register_block("stonebrickcarved", S("Chiseled Stone Bricks Monster Egg"), {"mcl_core_stonebrick_carved.png"}) + + diff --git a/mods/ITEMS/mcl_monster_eggs/intllib.lua b/mods/ITEMS/mcl_monster_eggs/intllib.lua new file mode 100644 index 000000000..6669d7202 --- /dev/null +++ b/mods/ITEMS/mcl_monster_eggs/intllib.lua @@ -0,0 +1,45 @@ + +-- Fallback functions for when `intllib` is not installed. +-- Code released under Unlicense . + +-- Get the latest version of this file at: +-- https://raw.githubusercontent.com/minetest-mods/intllib/master/lib/intllib.lua + +local function format(str, ...) + local args = { ... } + local function repl(escape, open, num, close) + if escape == "" then + local replacement = tostring(args[tonumber(num)]) + if open == "" then + replacement = replacement..close + end + return replacement + else + return "@"..open..num..close + end + end + return (str:gsub("(@?)@(%(?)(%d+)(%)?)", repl)) +end + +local gettext, ngettext +if minetest.get_modpath("intllib") then + if intllib.make_gettext_pair then + -- New method using gettext. + gettext, ngettext = intllib.make_gettext_pair() + else + -- Old method using text files. + gettext = intllib.Getter() + end +end + +-- Fill in missing functions. + +gettext = gettext or function(msgid, ...) + return format(msgid, ...) +end + +ngettext = ngettext or function(msgid, msgid_plural, n, ...) + return format(n==1 and msgid or msgid_plural, ...) +end + +return gettext, ngettext diff --git a/mods/ITEMS/mcl_mushrooms/small.lua b/mods/ITEMS/mcl_mushrooms/small.lua index 4e1e60ad1..54b14d6cb 100644 --- a/mods/ITEMS/mcl_mushrooms/small.lua +++ b/mods/ITEMS/mcl_mushrooms/small.lua @@ -34,7 +34,7 @@ minetest.register_node("mcl_mushrooms:mushroom_brown", { sunlight_propagates = true, paramtype = "light", walkable = false, - groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1}, + groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,enderman_takable=1,deco_block=1}, sounds = mcl_sounds.node_sound_leaves_defaults(), light_source = 1, selection_box = { @@ -57,7 +57,7 @@ minetest.register_node("mcl_mushrooms:mushroom_red", { sunlight_propagates = true, paramtype = "light", walkable = false, - groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,deco_block=1}, + groups = {dig_immediate=3,mushroom=1,attached_node=1,dig_by_water=1,destroy_by_lava_flow=1,dig_by_piston=1,enderman_takable=1,deco_block=1}, sounds = mcl_sounds.node_sound_leaves_defaults(), selection_box = { type = "fixed", diff --git a/mods/ITEMS/mcl_nether/init.lua b/mods/ITEMS/mcl_nether/init.lua index 0e34a3b3c..4f103ef7e 100644 --- a/mods/ITEMS/mcl_nether/init.lua +++ b/mods/ITEMS/mcl_nether/init.lua @@ -41,7 +41,7 @@ minetest.register_node("mcl_nether:netherrack", { stack_max = 64, tiles = {"mcl_nether_netherrack.png"}, is_ground_content = true, - groups = {pickaxey=1, building_block=1, material_stone=1}, + groups = {pickaxey=1, building_block=1, material_stone=1, enderman_takable=1}, sounds = mcl_sounds.node_sound_stone_defaults(), _mcl_blast_resistance = 2, _mcl_hardness = 0.4, diff --git a/mods/ITEMS/mcl_tnt/init.lua b/mods/ITEMS/mcl_tnt/init.lua index ea7cd7abc..d444e8771 100644 --- a/mods/ITEMS/mcl_tnt/init.lua +++ b/mods/ITEMS/mcl_tnt/init.lua @@ -53,7 +53,7 @@ minetest.register_node("mcl_tnt:tnt", { sunlight_propagates = true, _doc_items_longdesc = string.format("An explosive device. When it explodes, it will hurt living beings, destroy blocks around it, throw blocks affected by gravity all over the place and light fires. A single TNT has an explosion radius of %d. With a small chance, blocks may drop as an item (as if being mined) rather than being destroyed. TNT can be ignited by tools, explosions, fire, lava and redstone signals.", TNT_RANGE), _doc_items_usagehelp = "Place the TNT on the ground and ignite it with one of the methods above. Quickly get in safe distance quickly. The TNT will start to be affected by gravity and explodes in 4 seconds.", - groups = { dig_immediate = 3, tnt = 1, }, + groups = { dig_immediate = 3, tnt = 1, enderman_takable=1 }, mesecons = {effector = { action_on = tnt.ignite }}, diff --git a/mods/MAPGEN/mcl_dungeons/init.lua b/mods/MAPGEN/mcl_dungeons/init.lua index b48b5ba11..760c10836 100644 --- a/mods/MAPGEN/mcl_dungeons/init.lua +++ b/mods/MAPGEN/mcl_dungeons/init.lua @@ -15,15 +15,12 @@ local get_loot = function() { itemstring = "mcl_mobitems:saddle", weight = 20 }, { itemstring = "mcl_jukebox:record_1", weight = 15 }, { itemstring = "mcl_jukebox:record_4", weight = 15 }, - -- TODO: Iron Horse Armor - { itemstring = "mcl_core:iron_ingot", weight = 15 }, + { itemstring = "mobs_mc:iron_horse_armor", weight = 15 }, { itemstring = "mcl_core:apple_gold", weight = 15 }, -- TODO: Enchanted Book { itemstring = "mcl_books:book", weight = 10 }, - -- TODO: Gold Horse Armor - { itemstring = "mcl_core:gold_ingot", weight = 5 }, - -- TODO: Diamond Horse Armor - { itemstring = "mcl_core:diamond", weight = 5 }, + { itemstring = "mobs_mc:gold_horse_armor", weight = 10 }, + { itemstring = "mobs_mc:diamond_horse_armor", weight = 5 }, -- TODO: Enchanted Golden Apple { itemstring = "mcl_core:apple_gold", weight = 2 }, } diff --git a/mods/MAPGEN/mcl_mapgen_core/depends.txt b/mods/MAPGEN/mcl_mapgen_core/depends.txt index 172985f8b..34b5a1ce4 100644 --- a/mods/MAPGEN/mcl_mapgen_core/depends.txt +++ b/mods/MAPGEN/mcl_mapgen_core/depends.txt @@ -3,4 +3,5 @@ mcl_util mcl_core mcl_cocoas mcl_stairs +mcl_monster_eggs mcl_structures diff --git a/mods/MAPGEN/mcl_mapgen_core/init.lua b/mods/MAPGEN/mcl_mapgen_core/init.lua index 51619d588..e2b0084c2 100644 --- a/mods/MAPGEN/mcl_mapgen_core/init.lua +++ b/mods/MAPGEN/mcl_mapgen_core/init.lua @@ -580,6 +580,26 @@ minetest.register_ore({ end +-- Rarely replace stone with stone monster eggs +local scarcity +if mg_name == "v6" then + monster_egg_scarcity = 28 * 28 * 28 +else + monster_egg_scarcity = 22 * 22 * 22 +end +minetest.register_ore({ + ore_type = "scatter", + ore = "mcl_monster_eggs:monster_egg_stone", + wherein = "mcl_core:stone", + clust_scarcity = monster_egg_scarcity, + clust_num_ores = 3, + clust_size = 2, + y_min = -31000, + y_max = 31000, + -- TODO: Limit by biome +}) + + local function register_mgv6_decorations() -- Sugar canes diff --git a/mods/MAPGEN/mcl_structures/init.lua b/mods/MAPGEN/mcl_structures/init.lua index f0c5a0bbf..37a1fb93e 100644 --- a/mods/MAPGEN/mcl_structures/init.lua +++ b/mods/MAPGEN/mcl_structures/init.lua @@ -211,12 +211,9 @@ mcl_structures.generate_desert_temple = function(pos) { itemstring = "mcl_core:iron_ingot", weight = 15, amount_min = 1, amount_max = 5 }, { itemstring = "mcl_core:emerald", weight = 15, amount_min = 1, amount_max = 3 }, { itemstring = "", weight = 15, }, - -- TODO: Iron Horse Armor - { itemstring = "mcl_core:iron_ingot", weight = 15, }, - -- TODO: Golden Horse Armor - { itemstring = "mcl_core:gold_ingot", weight = 10, }, - -- TODO: Diamond Horse Armor - { itemstring = "mcl_core:diamond", weight = 5, }, + { itemstring = "mobs_mc:iron_horse_armor", weight = 15, }, + { itemstring = "mobs_mc:gold_horse_armor", weight = 10, }, + { itemstring = "mobs_mc:diamond_horse_armor", weight = 5, }, { itemstring = "mcl_core:diamond", weight = 5, amount_min = 1, amount_max = 3 }, -- TODO: Enchanted Golden Apple { itemstring = "mcl_core:apple_gold", weight = 2, }, diff --git a/mods/MISC/mcl_wip/depends.txt b/mods/MISC/mcl_wip/depends.txt index b73aea436..82a4586e8 100644 --- a/mods/MISC/mcl_wip/depends.txt +++ b/mods/MISC/mcl_wip/depends.txt @@ -1,13 +1,12 @@ -mcl_boats mcl_anvils mcl_core mcl_end mcl_fishing mcl_maps -mcl_mobitems mcl_minecarts -mcl_sponges +mcl_chests gemalde signs mcl_observers doc_identifier +mobs_mc diff --git a/mods/MISC/mcl_wip/init.lua b/mods/MISC/mcl_wip/init.lua index c9f7cf927..e05aa2e53 100644 --- a/mods/MISC/mcl_wip/init.lua +++ b/mods/MISC/mcl_wip/init.lua @@ -16,6 +16,14 @@ local wip_items = { "mcl_observers:observer", "mcl_chests:trapped_chest", "mcl_core:cobweb", + "mobs_mc:parrot", + "mobs_mc:vindicator", + "mobs_mc:evoker", + "mobs_mc:vex", + "mobs_mc:llama", + "mobs_mc:illusioner", + "mobs_mc:skeleton_horse", + "mobs_mc:totem", } for i=1,#wip_items do diff --git a/mods/PLAYER/mcl_player/models/character.png b/mods/PLAYER/mcl_player/models/character.png index d4c84ca67..8bf839e71 100644 Binary files a/mods/PLAYER/mcl_player/models/character.png and b/mods/PLAYER/mcl_player/models/character.png differ diff --git a/mods/PLAYER/mcl_player/textures/player.png b/mods/PLAYER/mcl_player/textures/player.png index 374e10a12..007727519 100644 Binary files a/mods/PLAYER/mcl_player/textures/player.png and b/mods/PLAYER/mcl_player/textures/player.png differ diff --git a/mods/PLAYER/mcl_player/textures/player_back.png b/mods/PLAYER/mcl_player/textures/player_back.png index 0da4a9568..4bd5366fa 100644 Binary files a/mods/PLAYER/mcl_player/textures/player_back.png and b/mods/PLAYER/mcl_player/textures/player_back.png differ