diff --git a/.gitignore b/.gitignore index 02bef3f5f..e3212f506 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ gtags.files .idea/* # Codelite *.project +desktop.ini ## Files related to minetest development cycle /*.patch diff --git a/games/default/files/bluestone/mesecons/oldwires.lua b/games/default/files/bluestone/mesecons/oldwires.lua index ad8397620..6ebef00c3 100644 --- a/games/default/files/bluestone/mesecons/oldwires.lua +++ b/games/default/files/bluestone/mesecons/oldwires.lua @@ -22,7 +22,6 @@ minetest.register_node("mesecons:mesecon_on", { drawtype = "raillike", tiles = {"jeija_mesecon_on.png", "jeija_mesecon_curved_on.png", "jeija_mesecon_t_junction_on.png", "jeija_mesecon_crossing_on.png"}, paramtype = "light", - is_ground_content = true, walkable = false, selection_box = { type = "fixed", diff --git a/games/default/files/bluestone/mesecons/wires.lua b/games/default/files/bluestone/mesecons/wires.lua index 22dc7a8c3..6671bde1d 100644 --- a/games/default/files/bluestone/mesecons/wires.lua +++ b/games/default/files/bluestone/mesecons/wires.lua @@ -116,7 +116,6 @@ for zmy=0, 1 do }, groups = groups, walkable = false, - stack_max = 64, drop = "mesecons:wire_00000000_off", mesecons = {conductor={ state = mesecon.state.off, @@ -145,7 +144,6 @@ for zmy=0, 1 do }, groups = {dig_immediate = 3, mesecon = 2, not_in_creative_inventory = 1}, walkable = false, - stack_max = 64, drop = "mesecons:wire_00000000_off", mesecons = {conductor={ state = mesecon.state.on, diff --git a/games/default/files/bluestone/mesecons_compatibility/init.lua b/games/default/files/bluestone/mesecons_compatibility/init.lua index 43674ada5..b676c5111 100644 --- a/games/default/files/bluestone/mesecons_compatibility/init.lua +++ b/games/default/files/bluestone/mesecons_compatibility/init.lua @@ -152,7 +152,7 @@ end doors:register_door("doors:door_wood", { description = "Wooden Door", inventory_image = "door_wood.png", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1, mese = 1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,door=1, mese = 1}, tiles_bottom = {"door_wood_b.png", "door_brown.png"}, tiles_top = {"door_wood_a.png", "door_brown.png"}, sounds = default.node_sound_wood_defaults(), @@ -161,7 +161,7 @@ doors:register_door("doors:door_wood", { doors:register_door("doors:door_steel", { description = "Steel Door", inventory_image = "door_steel.png", - groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1, mese = 1}, + groups = {snappy = 1,bendy=2,cracky=1,melty=2,level=2,door=1, mese = 1}, tiles_bottom = {"door_steel_b.png", "door_grey.png"}, tiles_top = {"door_steel_a.png", "door_grey.png"}, only_placer_can_open = true, diff --git a/games/default/files/bluestone/mesecons_delayer/init.lua b/games/default/files/bluestone/mesecons_delayer/init.lua index 3cb0e9ee2..bc87df867 100644 --- a/games/default/files/bluestone/mesecons_delayer/init.lua +++ b/games/default/files/bluestone/mesecons_delayer/init.lua @@ -48,10 +48,10 @@ local done = false for i = 1, 4 do local groups = {} if i == 1 and not done then - groups = {bendy=2,snappy=1,dig_immediate=2, mese = 1} + groups = {bendy=2,snappy = 1,dig_immediate=2, mese = 1} done = true else - groups = {bendy=2,snappy=1,dig_immediate=2, not_in_creative_inventory=1} + groups = {bendy=2,snappy = 1,dig_immediate=2, not_in_creative_inventory=1} end local delaytime @@ -113,7 +113,6 @@ minetest.register_node("mesecons_delayer:delayer_off_"..tostring(i), { paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, - is_ground_content = true, drop = 'mesecons_delayer:delayer_off_1', on_punch = function (pos, node) if node.name=="mesecons_delayer:delayer_off_1" then @@ -168,7 +167,6 @@ minetest.register_node("mesecons_delayer:delayer_on_"..tostring(i), { paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, - is_ground_content = true, drop = 'mesecons_delayer:delayer_off_1', on_punch = function (pos, node) if node.name=="mesecons_delayer:delayer_on_1" then diff --git a/games/default/files/bluestone/mesecons_noteblock/init.lua b/games/default/files/bluestone/mesecons_noteblock/init.lua index 31a36d99b..f38d2cbb4 100644 --- a/games/default/files/bluestone/mesecons_noteblock/init.lua +++ b/games/default/files/bluestone/mesecons_noteblock/init.lua @@ -3,7 +3,7 @@ minetest.register_node("mesecons_noteblock:noteblock", { description = "Noteblock", tiles = {"mesecons_noteblock.png"}, - groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2, mese = 1}, + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 2, mese = 1}, drawtype = "allfaces_optional", visual_scale = 1.3, paramtype="light", diff --git a/games/default/files/bluestone/mesecons_solarpanel/init.lua b/games/default/files/bluestone/mesecons_solarpanel/init.lua index 547f36664..46d34d034 100644 --- a/games/default/files/bluestone/mesecons_solarpanel/init.lua +++ b/games/default/files/bluestone/mesecons_solarpanel/init.lua @@ -10,7 +10,6 @@ minetest.register_node("mesecons_solarpanel:solar_panel_on", { wield_image = "jeija_solar_panel.png", paramtype = "light", walkable = false, - is_ground_content = true, selection_box = { type = "fixed", fixed = boxes @@ -35,7 +34,6 @@ minetest.register_node("mesecons_solarpanel:solar_panel_off", { wield_image = "jeija_solar_panel.png", paramtype = "light", walkable = false, - is_ground_content = true, selection_box = { type = "fixed", fixed = boxes @@ -99,7 +97,6 @@ minetest.register_node("mesecons_solarpanel:solar_panel_inverted_on", { wield_image = "jeija_solar_panel_inverted.png", paramtype = "light", walkable = false, - is_ground_content = true, selection_box = { type = "fixed", fixed = boxes @@ -124,7 +121,6 @@ minetest.register_node("mesecons_solarpanel:solar_panel_inverted_off", { wield_image = "jeija_solar_panel_inverted.png", paramtype = "light", walkable = false, - is_ground_content = true, selection_box = { type = "fixed", fixed = boxes diff --git a/games/default/files/bluestone/mesecons_torch/init.lua b/games/default/files/bluestone/mesecons_torch/init.lua index 473c7e04a..5a0f0b501 100644 --- a/games/default/files/bluestone/mesecons_torch/init.lua +++ b/games/default/files/bluestone/mesecons_torch/init.lua @@ -72,7 +72,6 @@ minetest.register_node("mesecons_torch:mesecon_torch_on", { tiles = {"jeija_torches_on.png", "jeija_torches_on_ceiling.png", "jeija_torches_on_side.png"}, inventory_image = "jeija_torches_on.png", wield_image = "jeija_torches_on.png", - stack_max = 64, paramtype = "light", sunlight_propagates = true, walkable = false, @@ -90,7 +89,6 @@ minetest.register_node("mesecons_torch:mesecon_torch_on", { minetest.register_node("mesecons_torch:bluestoneblock", { description = "Bluestone Block", tiles = {"default_bluestone_block.png"}, - stack_max = 64, groups = {cracky=1, mese = 1}, sounds = default.node_sound_stone_defaults(), mesecons = {receptor = { diff --git a/games/default/files/bucket/init.lua b/games/default/files/bucket/init.lua index 89730de71..3db051287 100644 --- a/games/default/files/bucket/init.lua +++ b/games/default/files/bucket/init.lua @@ -108,7 +108,6 @@ end minetest.register_craftitem("bucket:bucket_empty", { description = "Empty Bucket", inventory_image = "bucket.png", - stack_max = 99, liquids_pointable = true, on_use = function(itemstack, user, pointed_thing) -- Must be pointing to node diff --git a/games/default/files/crafting/creative.lua b/games/default/files/crafting/creative.lua index b53f1e70e..3150ce2df 100644 --- a/games/default/files/crafting/creative.lua +++ b/games/default/files/crafting/creative.lua @@ -214,16 +214,16 @@ crafting.set_creative_formspec = function(player, start_i, pagenum, show, page, bg[name] = "crafting_creative_bg.png" if name == "inv" then main_list = "image[-0.2,1.7;11.35,2.33;crafting_creative_bg.png]".. - "image[-0.3,0.15;3,4;crafting_inventory_armor2.png]".. + "image[-0.3,0.15;3,4.3;crafting_inventory_armor2.png]".. "list[current_player;main;0,3.75;9,3;9]".. - "list[detached:"..player_name.."_armor;armor;0,1.55;1,1;]".. - "list[detached:"..player_name.."_armor;armor;0,2.55;1,1;1]".. - "list[detached:"..player_name.."_armor;armor;1,1.55;1,1;2]".. - "list[detached:"..player_name.."_armor;armor;1,2.55;1,1;3]" + "list[detached:"..player_name.."_armor;armor;0.02,1.7;1,1;]".. + "list[detached:"..player_name.."_armor;armor;0.02,2.7;1,1;1]".. + "list[detached:"..player_name.."_armor;armor;0.98,1.7;1,1;2]".. + "list[detached:"..player_name.."_armor;armor;0.98,2.7;1,1;3]" end formspec = "size[10,9.3]".. - "image_button_exit[10,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "background[-0.19,-0.25;10.5,9.87;crafting_inventory_creative.png]".. "bgcolor[#080808BB;true]".. "listcolors[#9990;#FFF7;#FFF0;#160816;#D4D2FF]".. @@ -355,4 +355,4 @@ minetest.register_on_player_receive_fields(function(player, formname, fields) end crafting.set_creative_formspec(player, start_i, start_i/(9*5) +1, false, page) -end) \ No newline at end of file +end) diff --git a/games/default/files/crafting/formspecs.lua b/games/default/files/crafting/formspecs.lua index 3e29c7770..2da5b37dc 100644 --- a/games/default/files/crafting/formspecs.lua +++ b/games/default/files/crafting/formspecs.lua @@ -1,6 +1,6 @@ default.chest_formspec = "size[9,9.75]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "background[-0.19,-0.25;9.41,10.48;crafting_inventory_chest.png]".. "bgcolor[#080808BB;true]".. "listcolors[#9990;#FFF7;#FFF0;#160816;#D4D2FF]".. @@ -22,7 +22,7 @@ function default.get_locked_chest_formspec(pos) local spos = pos.x .. "," .. pos.y .. "," ..pos.z local formspec = "size[9,9.75]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "background[-0.19,-0.25;9.41,10.48;crafting_inventory_chest.png]".. "bgcolor[#080808BB;true]".. "listcolors[#9990;#FFF7;#FFF0;#160816;#D4D2FF]".. diff --git a/games/default/files/crafting/init.lua b/games/default/files/crafting/init.lua index f7c2b4283..5022f17ba 100644 --- a/games/default/files/crafting/init.lua +++ b/games/default/files/crafting/init.lua @@ -79,7 +79,7 @@ local function set_inventory(player) end local form = "size[9,8.75]".. - "image_button_exit[8.15,-0.15;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "background[-0.19,-0.25;9.41,9.49;crafting_formspec_inv.png]".. "bgcolor[#080808BB;true]".. "listcolors[#9990;#FFF7;#FFF0;#160816;#D4D2FF]".. @@ -102,42 +102,19 @@ local function set_inventory(player) end local split_form = "" split_form = - "list[detached:split;main;7.98,3.14;1,1;]" + "list[detached:split;main;7.99,3.15;1,1;]" form = form .. "list[current_player;main;0,4.5;9,3;9]".. "list[current_player;main;0,7.74;9,1;]".. "list[current_player;craft;4,1;2,1;1]".. "list[current_player;craft;4,2;2,1;4]".. - "list[current_player;craftpreview;7,1.5;1,1;]".. + "list[current_player;craftpreview;7.05,1.54;1,1;]".. split_form.. "inv" player:set_inventory_formspec(form) end -local function set_workbench(player) - player:get_inventory():set_width("craft", 3) - player:get_inventory():set_size("craft", 9) - player:get_inventory():set_size("main", 9*4) - - local split_form = "" - split_form = - "list[detached:split;main;7.98,3.14;1,1;]" - local form = "size[9,8.75]".. - "image_button_exit[8.15,-0.15;1,1;;exit;X;true;true;]" .. - "background[-0.19,-0.25;9.41,9.49;crafting_formspec_workbench.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[current_player;craft;1.75,0.5;3,3;]".. - "list[current_player;craftpreview;5.75,1.5;1,1;]".. - split_form.. - "wob" - - minetest.show_formspec(player:get_player_name(), "main", form) -end - --drop craf items and reset inventory on closing minetest.register_on_player_receive_fields(function(player, formname, fields) if fields.quit then @@ -185,26 +162,6 @@ minetest.register_on_joinplayer(function(player) end) end) -minetest.register_node("crafting:workbench", { - description = "Workbench", - tiles = {"crafting_workbench_top.png", "default_wood.png", "crafting_workbench_side.png", - "crafting_workbench_side.png", "crafting_workbench_front.png", "crafting_workbench_front.png"}, - paramtype2 = "facedir", - paramtype = "light", - groups = {choppy=2,oddly_breakable_by_hand=2,flammable=2, decorative = 1}, - on_rightclick = function(pos, node, clicker, itemstack) - set_workbench(clicker) - end -}) - -minetest.register_craft({ - output = "crafting:workbench", - recipe = { - {"group:wood", "group:wood"}, - {"group:wood", "group:wood"} - } -}) - local split_inv = minetest.create_detached_inventory("split", { allow_move = function(_, _, _, _, _, count, _) return count diff --git a/games/default/files/crafting/textures/crafting_creative_active.png b/games/default/files/crafting/textures/crafting_creative_active.png index b7532e26a..d80ff4a6e 100644 Binary files a/games/default/files/crafting/textures/crafting_creative_active.png and b/games/default/files/crafting/textures/crafting_creative_active.png differ diff --git a/games/default/files/crafting/textures/crafting_creative_bg.png b/games/default/files/crafting/textures/crafting_creative_bg.png index 1b51aa348..49778cb9a 100644 Binary files a/games/default/files/crafting/textures/crafting_creative_bg.png and b/games/default/files/crafting/textures/crafting_creative_bg.png differ diff --git a/games/default/files/crafting/textures/crafting_creative_bg_dark.png b/games/default/files/crafting/textures/crafting_creative_bg_dark.png index c78f50c78..bda61b56f 100644 Binary files a/games/default/files/crafting/textures/crafting_creative_bg_dark.png and b/games/default/files/crafting/textures/crafting_creative_bg_dark.png differ diff --git a/games/default/files/crafting/textures/crafting_creative_trash.png b/games/default/files/crafting/textures/crafting_creative_trash.png index ac13598d4..07ef708a4 100644 Binary files a/games/default/files/crafting/textures/crafting_creative_trash.png and b/games/default/files/crafting/textures/crafting_creative_trash.png differ diff --git a/games/default/files/crafting/textures/crafting_formspec_furnace.png b/games/default/files/crafting/textures/crafting_formspec_furnace.png deleted file mode 100644 index f9eb6fe29..000000000 Binary files a/games/default/files/crafting/textures/crafting_formspec_furnace.png and /dev/null differ diff --git a/games/default/files/crafting/textures/crafting_formspec_inv.png b/games/default/files/crafting/textures/crafting_formspec_inv.png index af6f5e2c2..7d8e39ae9 100644 Binary files a/games/default/files/crafting/textures/crafting_formspec_inv.png and b/games/default/files/crafting/textures/crafting_formspec_inv.png differ diff --git a/games/default/files/crafting/textures/crafting_formspec_workbench.png b/games/default/files/crafting/textures/crafting_formspec_workbench.png deleted file mode 100644 index 82adb2ab2..000000000 Binary files a/games/default/files/crafting/textures/crafting_formspec_workbench.png and /dev/null differ diff --git a/games/default/files/crafting/textures/crafting_furnace_fire_bg.png b/games/default/files/crafting/textures/crafting_furnace_fire_bg.png deleted file mode 100644 index fb76bceae..000000000 Binary files a/games/default/files/crafting/textures/crafting_furnace_fire_bg.png and /dev/null differ diff --git a/games/default/files/crafting/textures/crafting_inventory_chest.png b/games/default/files/crafting/textures/crafting_inventory_chest.png index 92e5d1606..083eb3763 100644 Binary files a/games/default/files/crafting/textures/crafting_inventory_chest.png and b/games/default/files/crafting/textures/crafting_inventory_chest.png differ diff --git a/games/default/files/crafting/textures/crafting_inventory_creative.png b/games/default/files/crafting/textures/crafting_inventory_creative.png index 28877e5dc..038c3a09b 100644 Binary files a/games/default/files/crafting/textures/crafting_inventory_creative.png and b/games/default/files/crafting/textures/crafting_inventory_creative.png differ diff --git a/games/default/files/creative/init.lua b/games/default/files/creative/init.lua index d0dd0f50d..16d1d1e3b 100644 --- a/games/default/files/creative/init.lua +++ b/games/default/files/creative/init.lua @@ -3,7 +3,7 @@ if minetest.setting_getbool("creative_mode") then minetest.register_item(":", { type = "none", wield_image = "wieldhand.png", - wield_scale = {x=0.7,y=2,z=0.0001}, + wield_scale = {x = 0.7, y = 2, z = 0.0001}, range = 10, tool_capabilities = { full_punch_interval = 0.9, @@ -15,7 +15,7 @@ if minetest.setting_getbool("creative_mode") then choppy = {times={[1]=digtime, [2]=digtime, [3]=digtime}, uses=0, maxlevel=3}, oddly_breakable_by_hand = {times={[1]=digtime, [2]=digtime, [3]=digtime}, uses=0, maxlevel=3}, }, - damage_groups = {fleshy = 10}, + damage_groups = {fleshy = 5}, } }) diff --git a/games/default/files/default/aliases.lua b/games/default/files/default/aliases.lua index 2f6e93b17..2e92b45ae 100644 --- a/games/default/files/default/aliases.lua +++ b/games/default/files/default/aliases.lua @@ -72,3 +72,6 @@ minetest.register_alias("default:pinewood", "default:pine_wood") minetest.register_alias("default:gold_nugget", "default:gold_ingot") -- Sandstone Carved minetest.register_alias("default:sandstonecarved", "default:sandstonesmooth") + +-- Workbench +minetest.register_alias("crafting:workbench", "default:workbench") diff --git a/games/default/files/default/craftitems.lua b/games/default/files/default/craftitems.lua index 3142284cd..54e0cea37 100644 --- a/games/default/files/default/craftitems.lua +++ b/games/default/files/default/craftitems.lua @@ -7,7 +7,6 @@ minetest.register_craftitem("default:stick", { description = "Stick", inventory_image = "default_stick.png", - stack_max = 64, groups = {materials = 1}, }) @@ -15,91 +14,78 @@ minetest.register_craftitem("default:stick", { minetest.register_craftitem("default:paper", { description = "Paper", inventory_image = "default_paper.png", - stack_max = 64, groups = {misc = 1}, }) minetest.register_craftitem("default:book", { description = "Book", inventory_image = "default_book.png", - stack_max = 64, groups = {misc = 1}, }) minetest.register_craftitem("default:coal_lump", { description = "Coal Lump", inventory_image = "default_coal_lump.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:charcoal_lump", { description = "Charcoal Lump", inventory_image = "default_charcoal_lump.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:diamond", { description = "Diamond", inventory_image = "default_diamond.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:clay_lump", { description = "Clay Lump", inventory_image = "default_clay_lump.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:steel_ingot", { description = "Steel Ingot", inventory_image = "default_steel_ingot.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:gold_ingot", { description = "Gold Ingot", inventory_image = "default_gold_ingot.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:emerald", { description = "Emerald", inventory_image = "default_emerald.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:clay_brick", { description = "Clay Brick", inventory_image = "default_clay_brick.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:gunpowder", { description = "Gunpowder", inventory_image = "default_gunpowder.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:bone", { description = "Bone", inventory_image = "default_bone.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:glowstone_dust", { description = "Glowstone Dust", inventory_image = "default_glowstone_dust.png", - stack_max = 64, groups = {materials = 1}, }) @@ -108,7 +94,6 @@ minetest.register_craftitem("default:fish_raw", { groups = {}, inventory_image = "default_fish.png", on_use = minetest.item_eat(2), - stack_max = 64, groups = {foodstuffs = 1}, }) @@ -117,21 +102,18 @@ minetest.register_craftitem("default:fish", { groups = {}, inventory_image = "default_fish_cooked.png", on_use = minetest.item_eat(4), - stack_max = 64, groups = {foodstuffs = 1}, }) minetest.register_craftitem("default:sugar", { description = "Sugar", inventory_image = "default_sugar.png", - stack_max = 64, groups = {materials = 1}, }) minetest.register_craftitem("default:string",{ description = "String", inventory_image = "default_string.png", - stack_max = 64, groups = {materials = 1}, }) @@ -139,6 +121,5 @@ minetest.register_craftitem("default:string",{ minetest.register_craftitem("default:quartz_crystal", { description = "Quartz Crystal", inventory_image = "default_quartz_crystal.png", - stack_max = 64, groups = {materials = 1}, }) \ No newline at end of file diff --git a/games/default/files/default/functions.lua b/games/default/files/default/functions.lua index cfba81b60..f9fbf83f2 100644 --- a/games/default/files/default/functions.lua +++ b/games/default/files/default/functions.lua @@ -425,8 +425,7 @@ function AddGlass(desc, recipeitem, color) tiles = {"xpanes_pane_glass"..color..".png"}, paramtype = "light", use_texture_alpha = true, - stack_max = 64, - groups = {cracky=3,oddly_breakable_by_hand=3, building = 1}, + groups = {cracky=3, oddly_breakable_by_hand = 3, building = 1}, sounds = default.node_sound_glass_defaults(), drop = "", }) diff --git a/games/default/files/default/furnace.lua b/games/default/files/default/furnace.lua index 74905a3dd..123327ac2 100644 --- a/games/default/files/default/furnace.lua +++ b/games/default/files/default/furnace.lua @@ -6,31 +6,31 @@ local function active_formspec(fuel_percent, item_percent) local formspec = "size[9,8.75]".. - "image_button_exit[8.15,-0.15;1,1;;exit;X;true;true;]".. - "background[-0.19,-0.25;9.41,9.49;crafting_formspec_furnace.png]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. + "background[-0.19,-0.25;9.41,9.49;formspec_furnace.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[current_name;src;2.75,0.5;1,1;]".. - "list[current_name;fuel;2.75,2.5;1,1;]".. - "list[current_name;dst;5.75,1.5;1,1;]".. - "image[2.75,1.5;1,1;default_furnace_fire_bg.png^[lowpart:".. + "list[current_name;src;3,0.5;1,1;]".. + "list[current_name;fuel;3,2.5;1,1;]".. + "list[current_name;dst;5,1.5;1,1;]".. + "image[3,1.5;1,1;default_furnace_fire_bg.png^[lowpart:".. (100-fuel_percent)..":default_furnace_fire_fg.png]" return formspec end local inactive_formspec = "size[9,8.75]".. - "image_button_exit[8.15,-0.15;1,1;;exit;X;true;true;]".. - "background[-0.19,-0.25;9.41,9.49;crafting_formspec_furnace.png]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. + "background[-0.19,-0.25;9.41,9.49;formspec_furnace.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[current_name;src;2.75,0.5;1,1;]".. - "list[current_name;fuel;2.75,2.5;1,1;]".. - "list[current_name;dst;5.75,1.5;1,1;]" + "list[current_name;src;3,0.5;1,1;]".. + "list[current_name;fuel;3,2.5;1,1;]".. + "list[current_name;dst;5,1.5;1,1;]" -- -- Node callback functions that are the same for active and inactive furnace diff --git a/games/default/files/default/init.lua b/games/default/files/default/init.lua index 6bfc5f89e..57b17c7f7 100644 --- a/games/default/files/default/init.lua +++ b/games/default/files/default/init.lua @@ -18,4 +18,5 @@ dofile(minetest.get_modpath("default").."/mapgen.lua") dofile(minetest.get_modpath("default").."/player.lua") dofile(minetest.get_modpath("default").."/trees.lua") dofile(minetest.get_modpath("default").."/aliases.lua") -dofile(minetest.get_modpath("default").."/furnace.lua") \ No newline at end of file +dofile(minetest.get_modpath("default").."/furnace.lua") +dofile(minetest.get_modpath("default").."/workbench.lua") \ No newline at end of file diff --git a/games/default/files/default/models/character.b3d b/games/default/files/default/models/character.b3d index bc9d92735..9ab454366 100644 Binary files a/games/default/files/default/models/character.b3d and b/games/default/files/default/models/character.b3d differ diff --git a/games/default/files/default/nodes.lua b/games/default/files/default/nodes.lua index 9ca0604ea..929d6fcf1 100644 --- a/games/default/files/default/nodes.lua +++ b/games/default/files/default/nodes.lua @@ -4,137 +4,9 @@ -- Node definitions -- -minetest.register_node("default:dirt_with_snow", { - description = "Dirt with Snow", - stack_max = 64, - tiles = {"default_snow.png", "default_dirt.png", - {name = "default_snow_side.png", - tileable_vertical = false}}, - groups = {crumbly = 3, soil = 1}, - drop = 'default:dirt', - sounds = default.node_sound_dirt_defaults({ - footstep = {name = "default_snow_footstep", gain = 0.25}, - }), -}) - -minetest.register_node("default:snow", { - description = "Snow", - stack_max = 64, - tiles = {"default_snow.png"}, - inventory_image = "default_snowball.png", - wield_image = "default_snowball.png", - paramtype = "light", - buildable_to = true, - drawtype = "nodebox", - node_box = { - type = "fixed", - fixed = { - {-0.5, -0.5, -0.5, 0.5, -0.25, 0.5}, - }, - }, - groups = {crumbly = 3, falling_node = 1, puts_out_fire = 1}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name = "default_snow_footstep", gain = 0.25}, - dug = {name = "default_snow_footstep", gain = 0.75}, - }), - - on_construct = function(pos) - pos.y = pos.y - 1 - if minetest.get_node(pos).name == "default:dirt_with_grass" then - minetest.set_node(pos, {name = "default:dirt_with_snow"}) - end - end, -}) - -minetest.register_node("default:snowblock", { - description = "Snow Block", - stack_max = 64, - tiles = {"default_snow.png"}, - groups = {crumbly = 3, puts_out_fire = 1}, - sounds = default.node_sound_dirt_defaults({ - footstep = {name = "default_snow_footstep", gain = 0.25}, - dug = {name = "default_snow_footstep", gain = 0.75}, - }), -}) - - -minetest.register_node("default:ice", { - description = "Ice", - tiles = {"default_ice.png"}, - is_ground_content = false, - paramtype = "light", - groups = {cracky = 3, puts_out_fire = 1}, - sounds = default.node_sound_glass_defaults(), -}) - -minetest.register_node("default:pine_tree", { - description = "Pine Tree", - stack_max = 64, - tiles = {"default_pine_tree_top.png", "default_pine_tree_top.png", - "default_pine_tree.png"}, - paramtype2 = "facedir", - is_ground_content = false, - groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2}, - sounds = default.node_sound_wood_defaults(), - on_place = minetest.rotate_node -}) - -minetest.register_node("default:pine_wood", { - description = "Pine Wood Planks", - stack_max = 64, - tiles = {"default_pine_wood.png"}, - is_ground_content = false, - groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, wood = 1}, - sounds = default.node_sound_wood_defaults(), -}) - -minetest.register_node("default:pine_needles",{ - description = "Pine Needles", - stack_max = 64, - drawtype = "allfaces_optional", - visual_scale = 1.3, - tiles = {"default_pine_needles.png"}, - waving = 1, - paramtype = "light", - is_ground_content = false, - groups = {snappy = 3, leafdecay = 3, flammable = 2, leaves = 1}, - drop = { - max_items = 1, - items = { - {items = {"default:pine_sapling"}, rarity = 20}, - {items = {"default:pine_needles"}} - } - }, - sounds = default.node_sound_leaves_defaults(), - - after_place_node = default.after_place_leaves, -}) - -minetest.register_node("default:pine_sapling", { - description = "Pine Sapling", - stack_max = 64, - drawtype = "plantlike", - visual_scale = 1.0, - tiles = {"default_pine_sapling.png"}, - inventory_image = "default_pine_sapling.png", - wield_image = "default_pine_sapling.png", - paramtype = "light", - sunlight_propagates = true, - walkable = false, - selection_box = { - type = "fixed", - fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3} - }, - groups = {snappy = 2, dig_immediate = 3, flammable = 2, - attached_node = 1, sapling = 1}, - sounds = default.node_sound_leaves_defaults(), -}) - minetest.register_node("default:stone", { description = "Stone", tiles = {"default_stone.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=3, stone=1, building = 1, decorative = 1}, drop = 'default:cobble', legacy_mineral = true, @@ -144,8 +16,6 @@ minetest.register_node("default:stone", { minetest.register_node("default:stone_with_coal", { description = "Coal Ore", tiles = {"default_stone.png^default_mineral_coal.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=3, building = 1}, drop = 'default:coal_lump', sounds = default.node_sound_stone_defaults(), @@ -154,8 +24,6 @@ minetest.register_node("default:stone_with_coal", { minetest.register_node("default:stone_with_iron", { description = "Iron Ore", tiles = {"default_stone.png^default_mineral_iron.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=2, building = 1}, drop = 'default:stone_with_iron', sounds = default.node_sound_stone_defaults(), @@ -165,8 +33,6 @@ minetest.register_node("default:stone_with_iron", { minetest.register_node("default:stone_with_gold", { description = "Gold Ore", tiles = {"default_stone.png^default_mineral_gold.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=2, building = 1}, drop = "default:stone_with_gold", sounds = default.node_sound_stone_defaults(), @@ -176,8 +42,6 @@ minetest.register_node("default:stone_with_gold", { minetest.register_node("default:stone_with_bluestone", { description = "Bluestone Ore", tiles = {"default_stone.png^default_mineral_bluestone.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=2, building = 1}, drop = "mesecons:wire_00000000_off 5", sounds = default.node_sound_stone_defaults(), @@ -186,8 +50,6 @@ minetest.register_node("default:stone_with_bluestone", { minetest.register_node("default:stone_with_lapis", { description = "Lapis Lazuli Ore", tiles = {"default_stone.png^default_mineral_lapis.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=2, building = 1}, drop = { max_items = 2, @@ -205,8 +67,6 @@ minetest.register_node("default:stone_with_lapis", { minetest.register_node("default:stone_with_emerald", { description = "Emerald Ore", tiles = {"default_stone.png^default_mineral_emerald.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=2, building = 1}, drop = "default:emerald", -- drop = { @@ -222,8 +82,6 @@ minetest.register_node("default:stone_with_emerald", { minetest.register_node("default:stone_with_diamond", { description = "Diamonds in Stone", tiles = {"default_stone.png^default_mineral_diamond.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=1, building = 1}, drop = "default:diamond", sounds = default.node_sound_stone_defaults(), @@ -232,7 +90,6 @@ minetest.register_node("default:stone_with_diamond", { minetest.register_node("default:stonebrick", { description = "Stone Brick", tiles = {"default_stone_brick.png"}, - stack_max = 64, groups = {cracky=3, stone=1, building = 1, decorative = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -240,7 +97,6 @@ minetest.register_node("default:stonebrick", { minetest.register_node("default:stonebrickcarved", { description = "Stone Brick Carved", tiles = {"default_stonebrick_carved.png"}, - stack_max = 64, groups = {cracky=3, stone=1, building = 1, decorative = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -248,7 +104,6 @@ minetest.register_node("default:stonebrickcarved", { minetest.register_node("default:stonebrickcracked", { description = "Stone Brick Cracked", tiles = {"default_stonebrick_cracked.png"}, - stack_max = 64, groups = {cracky=3, stone=1, building = 1, decorative = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -256,7 +111,6 @@ minetest.register_node("default:stonebrickcracked", { minetest.register_node("default:stonebrickmossy", { description = "Mossy Stone Brick", tiles = {"default_stonebrick_mossy.png"}, - stack_max = 64, groups = {cracky=3, stone=1, building = 1, decorative = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -264,9 +118,7 @@ minetest.register_node("default:stonebrickmossy", { minetest.register_node("default:dirt_with_grass", { description = "Dirt with Grass", tiles = {"default_grass.png", "default_dirt.png", "default_grass_side.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, soil=1, building = 1}, + groups = {crumbly = 3, soil=1, building = 1}, drop = 'default:dirt', sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.4}, @@ -277,9 +129,7 @@ minetest.register_node("default:dirt_with_dry_grass", { description = "Dirt with Dry Grass", tiles = {"default_dry_grass.png", "default_dirt.png", "default_dry_grass_side.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, soil=1, building = 1}, + groups = {crumbly = 3, soil=1, building = 1}, drop = "default:dirt", sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.6}, @@ -289,9 +139,7 @@ minetest.register_node("default:dirt_with_dry_grass", { minetest.register_node("default:dirt_with_grass_footsteps", { description = "Dirt with Grass and Footsteps", tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, not_in_creative_inventory=1, soil=1}, + groups = {crumbly = 3, not_in_creative_inventory=1, soil=1}, drop = 'default:dirt', sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.4}, @@ -299,23 +147,21 @@ minetest.register_node("default:dirt_with_grass_footsteps", { }) minetest.register_node("default:dirt_with_snow", { - description = "Dirt with Snow", - tiles = {"default_snow.png", "default_dirt.png", "default_dirt.png^default_snow_side.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, building = 1}, - drop = 'default:dirt', - sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, - }), + description = "Dirt with Snow", + tiles = {"default_snow.png", "default_dirt.png", + {name = "default_snow_side.png", + tileable_vertical = false}}, + groups = {crumbly = 3, soil = 1, building = 1}, + drop = 'default:dirt', + sounds = default.node_sound_dirt_defaults({ + footstep = {name = "default_snow_footstep", gain = 0.4}, + }), }) minetest.register_node("default:dirt", { description = "Dirt", tiles = {"default_dirt.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, soil=1, building = 1}, + groups = {crumbly = 3, soil=1, building = 1}, sounds = default.node_sound_dirt_defaults(), }) @@ -323,9 +169,7 @@ minetest.register_node("default:dirt", { minetest.register_node("default:gravel", { description = "Gravel", tiles = {"default_gravel.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=2, falling_node=1, building = 1}, + groups = {crumbly = 2, falling_node = 1, building = 1}, drop = { max_items = 1, items = { @@ -342,27 +186,21 @@ minetest.register_node("default:gravel", { minetest.register_node("default:sand", { description = "Sand", tiles = {"default_sand.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, falling_node=1, sand=1, building = 1}, + groups = {crumbly = 3, falling_node = 1, sand=1, building = 1}, sounds = default.node_sound_sand_defaults(), }) minetest.register_node("default:sandstone", { description = "Sandstone", tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_normal.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=2,cracky=2, building = 1}, + groups = {crumbly = 2,cracky=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:sandstonesmooth", { description = "Sandstone Smooth", tiles = {"default_sandstone_top.png", "default_sandstone_bottom.png", "default_sandstone_smooth.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=2,cracky=2, building = 1}, + groups = {crumbly = 2,cracky=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -371,36 +209,28 @@ minetest.register_node("default:sandstonesmooth", { minetest.register_node("default:redsand", { description = "Red Sand", tiles = {"default_red_sand.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, falling_node=1, redsand=1, building = 1}, + groups = {crumbly = 3, falling_node = 1, redsand=1, building = 1}, sounds = default.node_sound_sand_defaults(), }) minetest.register_node("default:redsandstone", { description = "Red SandStone", tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_normal.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=2,cracky=2, building = 1}, + groups = {crumbly = 2,cracky=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:redsandstonesmooth", { description = "Red SandStone Smooth", tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_smooth.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=2,cracky=2, building = 1}, + groups = {crumbly = 2,cracky=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:redsandstonecarved", { description = "Red SandStone Carved", tiles = {"default_redsandstone_top.png", "default_redsandstone_bottom.png", "default_redsandstone_carved.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=2,cracky=2, building = 1}, + groups = {crumbly = 2,cracky=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -409,9 +239,7 @@ minetest.register_node("default:redsandstonecarved", { minetest.register_node("default:clay", { description = "Clay", tiles = {"default_clay.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, building = 1}, + groups = {crumbly = 3, building = 1}, drop = 'default:clay_lump 4', sounds = default.node_sound_dirt_defaults({ footstep = "", @@ -421,7 +249,6 @@ minetest.register_node("default:clay", { minetest.register_node("default:brick", { description = "Brick Block", tiles = {"default_brick.png"}, - stack_max = 64, groups = {cracky=3, building = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -429,11 +256,10 @@ minetest.register_node("default:brick", { minetest.register_node("default:haybale", { description = "Hay Bale", tiles = {"default_hayblock_top.png", "default_hayblock_top.png", "default_hayblock_side.png"}, - stack_max = 64, paramtype2 = "facedir", is_ground_content = false, on_place = minetest.rotate_node, - groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2, building = 1}, + groups = {tree=1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, building = 1}, sounds = default.node_sound_wood_defaults(), }) @@ -444,7 +270,6 @@ minetest.register_node("default:haybale", { minetest.register_node("default:tree", { description = "Tree", - stack_max = 64, tiles = {"default_tree_top.png", "default_tree_top.png", "default_tree.png"}, paramtype2 = "facedir", is_ground_content = false, @@ -456,7 +281,6 @@ minetest.register_node("default:tree", { minetest.register_node("default:wood", { description = "Wooden Planks", - stack_max = 64, tiles = {"default_wood.png"}, is_ground_content = false, material = "default:wood", @@ -466,7 +290,6 @@ minetest.register_node("default:wood", { minetest.register_node("default:sapling", { description = "Sapling", - stack_max = 64, drawtype = "plantlike", visual_scale = 1.0, tiles = {"default_sapling.png"}, @@ -486,7 +309,6 @@ minetest.register_node("default:sapling", { minetest.register_node("default:leaves", { description = "Leaves", - stack_max = 64, drawtype = "allfaces_optional", waving = 1, visual_scale = 1.3, @@ -514,37 +336,8 @@ minetest.register_node("default:leaves", { after_place_node = default.after_place_leaves, }) -minetest.register_node("default:apple", { - description = "Apple", - stack_max = 64, - drawtype = "plantlike", - visual_scale = 1.0, - tiles = {"default_apple.png"}, - inventory_image = "default_apple.png", - paramtype = "light", - sunlight_propagates = true, - walkable = false, - is_ground_content = false, - selection_box = { - type = "fixed", - fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} - }, - groups = {fleshy = 3, dig_immediate = 3, flammable = 2, - leafdecay = 3, leafdecay_drop = 1}, - on_use = minetest.item_eat(2), - sounds = default.node_sound_leaves_defaults(), - - after_place_node = function(pos, placer, itemstack) - if placer:is_player() then - minetest.set_node(pos, {name = "default:apple", param2 = 1}) - end - end, -}) - - minetest.register_node("default:jungletree", { description = "Jungle Tree", - stack_max = 64, tiles = {"default_jungletree_top.png", "default_jungletree_top.png", "default_jungletree.png"}, paramtype2 = "facedir", @@ -557,7 +350,6 @@ minetest.register_node("default:jungletree", { minetest.register_node("default:junglewood", { description = "Junglewood Planks", - stack_max = 64, tiles = {"default_junglewood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, wood = 1}, @@ -566,7 +358,6 @@ minetest.register_node("default:junglewood", { minetest.register_node("default:jungleleaves", { description = "Jungle Leaves", - stack_max = 64, drawtype = "allfaces_optional", waving = 1, visual_scale = 1.3, @@ -588,7 +379,6 @@ minetest.register_node("default:jungleleaves", { minetest.register_node("default:junglesapling", { description = "Jungle Sapling", - stack_max = 64, drawtype = "plantlike", visual_scale = 1.0, tiles = {"default_junglesapling.png"}, @@ -606,10 +396,8 @@ minetest.register_node("default:junglesapling", { sounds = default.node_sound_leaves_defaults(), }) - minetest.register_node("default:pine_tree", { description = "Pine Tree", - stack_max = 64, tiles = {"default_pine_tree_top.png", "default_pine_tree_top.png", "default_pine_tree.png"}, paramtype2 = "facedir", @@ -622,16 +410,15 @@ minetest.register_node("default:pine_tree", { minetest.register_node("default:pine_wood", { description = "Pine Wood Planks", - stack_max = 64, tiles = {"default_pine_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, wood = 1}, sounds = default.node_sound_wood_defaults(), }) + minetest.register_node("default:pine_needles",{ description = "Pine Needles", - stack_max = 64, drawtype = "allfaces_optional", visual_scale = 1.3, tiles = {"default_pine_needles.png"}, @@ -653,7 +440,6 @@ minetest.register_node("default:pine_needles",{ minetest.register_node("default:pine_sapling", { description = "Pine Sapling", - stack_max = 64, drawtype = "plantlike", visual_scale = 1.0, tiles = {"default_pine_sapling.png"}, @@ -671,10 +457,8 @@ minetest.register_node("default:pine_sapling", { sounds = default.node_sound_leaves_defaults(), }) - minetest.register_node("default:acacia_tree", { description = "Acacia Tree", - stack_max = 64, tiles = {"default_acacia_tree_top.png", "default_acacia_tree_top.png", "default_acacia_tree.png"}, paramtype2 = "facedir", @@ -687,7 +471,6 @@ minetest.register_node("default:acacia_tree", { minetest.register_node("default:acacia_wood", { description = "Acacia Wood Planks", - stack_max = 64, tiles = {"default_acacia_wood.png"}, is_ground_content = false, groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, wood = 1}, @@ -696,7 +479,6 @@ minetest.register_node("default:acacia_wood", { minetest.register_node("default:acacia_leaves", { description = "Acacia Leaves", - stack_max = 64, drawtype = "allfaces_optional", visual_scale = 1.3, tiles = {"default_acacia_leaves.png"}, @@ -718,7 +500,6 @@ minetest.register_node("default:acacia_leaves", { minetest.register_node("default:acacia_sapling", { description = "Acacia Tree Sapling", - stack_max = 64, drawtype = "plantlike", visual_scale = 1.0, tiles = {"default_acacia_sapling.png"}, @@ -740,7 +521,6 @@ minetest.register_node("default:acacia_sapling", { minetest.register_node("default:junglegrass", { description = "Jungle Grass", - stack_max = 64, drawtype = "plantlike", waving = 1, visual_scale = 1.3, @@ -763,9 +543,7 @@ minetest.register_node("default:cactus", { description = "Cactus", drawtype = "nodebox", tiles = {"default_cactus_top.png", "default_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 = {snappy=1,choppy=3,flammable=2, decorative = 1}, + groups = {snappy = 1, choppy = 3, flammable = 2, decorative = 1}, sounds = default.node_sound_wood_defaults(), paramtype = "light", node_box = { @@ -817,7 +595,6 @@ minetest.register_node("default:reeds", { wield_image = "default_sugar_cane.png", paramtype = "light", walkable = false, - is_ground_content = true, node_box = { type = "fixed", fixed = { @@ -834,15 +611,13 @@ minetest.register_node("default:reeds", { {-7/16, -8/16, -7/16, 7/16, 8/16, 7/16}, }, }, - stack_max = 64, - groups = {snappy=3,flammable=2, materials=1}, + groups = {snappy = 3, flammable = 2, materials=1}, sounds = default.node_sound_leaves_defaults(), }) minetest.register_node("default:quartz_ore", { description = "Quartz Ore", - stack_max = 64, tiles = {"default_quartz_ore.png"}, groups = {cracky=3, stone=1, building = 1}, drop = 'default:quartz_crystal', @@ -851,43 +626,38 @@ minetest.register_node("default:quartz_ore", { minetest.register_node("default:quartz_block", { description = "Quartz Block", - stack_max = 64, tiles = {"default_quartz_block_top.png", "default_quartz_block_bottom.png", "default_quartz_block_side.png"}, - groups = {snappy=1,bendy=2,cracky=1,level=2, building = 1}, + groups = {snappy = 1,bendy=2,cracky=1,level=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:quartz_chiseled", { description = "Chiseled Quartz", - stack_max = 64, tiles = {"default_quartz_chiseled_top.png", "default_quartz_chiseled_top.png", "default_quartz_chiseled_side.png"}, - groups = {snappy=1,bendy=2,cracky=1,level=2, building = 1}, + groups = {snappy = 1,bendy=2,cracky=1,level=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:quartz_pillar", { description = "Quartz Pillar", - stack_max = 64, paramtype2 = "facedir", on_place = minetest.rotate_node, tiles = {"default_quartz_pillar_top.png", "default_quartz_pillar_top.png", "default_quartz_pillar_side.png"}, - groups = {snappy=1,bendy=2,cracky=1,level=2, building = 1}, + groups = {snappy = 1,bendy=2,cracky=1,level=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:bedrock", { description = "Bedrock", tiles = {"default_bedrock.png"}, - stack_max = 64, - groups = {oddly_breakable_by_hand=5, building = 1}, + groups = {oddly_breakable_by_hand = 5, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:bookshelf", { description = "Bookshelf", tiles = {"default_wood.png", "default_wood.png", "default_bookshelf.png"}, - stack_max = 64, - groups = {choppy=3,oddly_breakable_by_hand=2,flammable=3, building = 1}, + groups = {choppy = 3, oddly_breakable_by_hand = 2, flammable = 3, building = 1}, sounds = default.node_sound_wood_defaults(), }) @@ -906,8 +676,7 @@ minetest.register_node("default:slimeblock", { paramtype = "light", use_texture_alpha = true, sunlight_propagates = true, - stack_max = 64, - groups = {oddly_breakable_by_hand=3,dig_immediate=2,bouncy=70,disable_jump=1, fall_damage_add_percent=-100, building = 1}, + groups = {oddly_breakable_by_hand = 3,dig_immediate=2,bouncy=70,disable_jump=1, fall_damage_add_percent=-100, building = 1}, }) minetest.register_node("default:glass", { @@ -916,8 +685,7 @@ minetest.register_node("default:glass", { tiles = {"default_glass.png"}, paramtype = "light", sunlight_propagates = true, - stack_max = 64, - groups = {cracky=3,oddly_breakable_by_hand=3, building = 1}, + groups = {cracky=3, oddly_breakable_by_hand = 3, building = 1}, sounds = default.node_sound_glass_defaults(), drop = "", }) @@ -955,8 +723,7 @@ minetest.register_node("default:ladder", { --wall_bottom = = --wall_side = = }, - stack_max = 64, - groups = {choppy=2,oddly_breakable_by_hand=3,flammable=2, decorative = 1}, + groups = {choppy = 2, oddly_breakable_by_hand = 3, flammable = 2, decorative = 1}, legacy_wallmounted = true, sounds = default.node_sound_wood_defaults(), }) @@ -974,8 +741,7 @@ minetest.register_node("default:vine", { selection_box = { type = "wallmounted", }, - stack_max = 64, - groups = {choppy=2,oddly_breakable_by_hand=3,flammable=2, decorative = 1}, + groups = {choppy = 2, oddly_breakable_by_hand = 3, flammable = 2, decorative = 1}, legacy_wallmounted = true, sounds = default.node_sound_leaves_defaults(), drop = "", @@ -1000,11 +766,11 @@ minetest.register_node("default:vine", { }) minetest.register_node("default:cloud", { - description = "Cloud", - tiles = {"default_cloud.png"}, - stack_max = 64, - sounds = default.node_sound_defaults(), - groups = {not_in_creative_inventory=1}, + description = "Cloud", + tiles = {"default_cloud.png"}, + is_ground_content = false, + sounds = default.node_sound_defaults(), + groups = {not_in_creative_inventory = 1}, }) -- @@ -1370,8 +1136,7 @@ minetest.register_node("default:chest", { tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png", "default_chest_side.png", "default_chest_side.png", "default_chest_front.png"}, paramtype2 = "facedir", - stack_max = 64, - groups = {choppy=2,oddly_breakable_by_hand=2, decorative = 1}, + groups = {choppy = 2, oddly_breakable_by_hand = 2, decorative = 1}, legacy_facedir_simple = true, sounds = default.node_sound_wood_defaults(), on_construct = function(pos) @@ -1382,7 +1147,7 @@ minetest.register_node("default:chest", { local p = get_chest_neighborpos(pos, param2, "right") meta:set_string("formspec", "size[9,11.5]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "list[nodemeta:"..p.x..","..p.y..","..p.z..";main;0,0;9,3;]".. "list[current_name;main;0,3;9,3;]".. "list[current_player;main;0,7;9,3;9]".. @@ -1392,7 +1157,7 @@ minetest.register_node("default:chest", { local m = minetest.env:get_meta(p) m:set_string("formspec", "size[9,11.5]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "list[current_name;main;0,0;9,3;]".. "list[nodemeta:"..pos.x..","..pos.y..","..pos.z..";main;0,3;9,3;]".. "list[current_player;main;0,7;9,3;9]".. @@ -1403,7 +1168,7 @@ minetest.register_node("default:chest", { local p = get_chest_neighborpos(pos, param2, "left") meta:set_string("formspec", "size[9,11.5]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "list[current_name;main;0,0;9,3;]".. "list[nodemeta:"..p.x..","..p.y..","..p.z..";main;0,3;9,3;]".. "list[current_player;main;0,7;9,3;9]".. @@ -1413,7 +1178,7 @@ minetest.register_node("default:chest", { local m = minetest.env:get_meta(p) m:set_string("formspec", "size[9,11.5]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "list[nodemeta:"..pos.x..","..pos.y..","..pos.z..";main;0,0;9,3;]".. "list[current_name;main;0,3;9,3;]".. "list[current_player;main;0,7;9,3;9]".. @@ -1422,7 +1187,7 @@ minetest.register_node("default:chest", { else meta:set_string("formspec", "size[9,8.5]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "list[current_name;main;0,0;9,3;]".. "list[current_player;main;0,4;9,3;9]".. "list[current_player;main;0,7.5.5;9,1;]") @@ -1470,7 +1235,7 @@ minetest.register_node("default:chest_left", { tiles = {"default_chest_top_big.png", "default_chest_top_big.png", "default_chest_side.png", "default_chest_side.png", "default_chest_side_big.png^[transformFX", "default_chest_front_big.png"}, paramtype2 = "facedir", - groups = {choppy=2,oddly_breakable_by_hand=2,not_in_creative_inventory=1}, + groups = {choppy = 2, oddly_breakable_by_hand = 2,not_in_creative_inventory=1}, drop = "default:chest", sounds = default.node_sound_wood_defaults(), on_destruct = function(pos) @@ -1486,7 +1251,7 @@ minetest.register_node("default:chest_left", { local meta = minetest.env:get_meta(p) meta:set_string("formspec", "size[9,8.5]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. "list[current_name;main;0,0;9,3;]".. "list[current_player;main;0,4;9,3;9]".. "list[current_player;main;0,7.5.5;9,1;]") @@ -1525,7 +1290,7 @@ minetest.register_node("default:chest_right", { tiles = {"default_chest_top_big.png^[transformFX", "default_chest_top_big.png^[transformFX", "default_chest_side.png", "default_chest_side.png", "default_chest_side_big.png", "default_chest_front_big.png^[transformFX"}, paramtype2 = "facedir", - groups = {choppy=2,oddly_breakable_by_hand=2,not_in_creative_inventory=1}, + groups = {choppy = 2, oddly_breakable_by_hand = 2,not_in_creative_inventory=1}, drop = "default:chest", sounds = default.node_sound_wood_defaults(), on_destruct = function(pos) @@ -1541,7 +1306,7 @@ minetest.register_node("default:chest_right", { local meta = minetest.env:get_meta(p) meta:set_string("formspec", "size[9,8.5]".. - "image_button_exit[9,0;1,1;;exit;X;true;true;]".. + "image_button_exit[9,0;1,1;close.png;exit;;true;true;]".. "list[current_name;main;0,0;9,3;]".. "list[current_player;main;0,4;9,3;9]".. "list[current_player;main;0,7.5.5;9,1;]") @@ -1580,8 +1345,6 @@ minetest.register_node("default:chest_right", { minetest.register_node("default:cobble", { description = "Cobblestone", tiles = {"default_cobble.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=3, stone=2, building = 1, decorative = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -1589,8 +1352,6 @@ minetest.register_node("default:cobble", { minetest.register_node("default:mossycobble", { description = "Mossy Cobblestone", tiles = {"default_mossycobble.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=3, building = 1, decorative = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -1598,8 +1359,6 @@ minetest.register_node("default:mossycobble", { minetest.register_node("default:steelblock", { description = "Steel Block", tiles = {"default_steel_block.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=1,level=2, building = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -1607,8 +1366,6 @@ minetest.register_node("default:steelblock", { minetest.register_node("default:goldblock", { description = "Gold Block", tiles = {"default_gold_block.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=1, building = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -1616,16 +1373,13 @@ minetest.register_node("default:goldblock", { minetest.register_node("default:diamondblock", { description = "Diamond Block", tiles = {"default_diamond_block.png"}, - is_ground_content = true, - stack_max = 64, - groups = {cracky=1,level=3, building = 1}, + groups = {cracky=1, level=3, building = 1}, sounds = default.node_sound_stone_defaults(), }) minetest.register_node("default:lapisblock", { description = "Lapis Lazul Block", tiles = {"default_lapis_block.png"}, - stack_max = 64, groups = {cracky=1, building = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -1633,7 +1387,6 @@ minetest.register_node("default:lapisblock", { minetest.register_node("default:emeraldblock", { description = "Emerald Block", tiles = {"default_emerald_block.png"}, - stack_max = 64, groups = {cracky=1, building = 1}, sounds = default.node_sound_stone_defaults(), }) @@ -1641,29 +1394,32 @@ minetest.register_node("default:emeraldblock", { minetest.register_node("default:obsidian", { description = "Obsidian", tiles = {"default_obsidian.png"}, - is_ground_content = true, sounds = default.node_sound_stone_defaults(), - stack_max = 64, - groups = {cracky=4,level=2,oddly_breakable_by_hand=4, building = 1}, + groups = {cracky=4, level=2, oddly_breakable_by_hand = 4, building = 1}, }) minetest.register_node("default:apple", { - description = "Apple", - drawtype = "plantlike", - visual_scale = 1.0, - tiles = {"default_apple.png"}, - inventory_image = "default_apple.png", - paramtype = "light", - sunlight_propagates = true, - walkable = false, - selection_box = { - type = "fixed", - fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} - }, - stack_max = 64, - groups = {fleshy=3,dig_immediate=3,flammable=2, foodstuffs = 1}, - on_use = minetest.item_eat(4), - sounds = default.node_sound_defaults(), + description = "Apple", + drawtype = "plantlike", + visual_scale = 0.75, + tiles = {"default_apple.png"}, + inventory_image = "default_apple.png", + paramtype = "light", + sunlight_propagates = true, + walkable = false, + is_ground_content = false, + selection_box = { + type = "fixed", + fixed = {-3 / 16, -7 / 16, -3 / 16, 3 / 16, 4 / 16, 3 / 16} + }, + groups = {fleshy = 3, dig_immediate = 3, flammable = 2, + leafdecay = 3, leafdecay_drop = 1, foodstuffs = 1}, + on_use = minetest.item_eat(2), + sounds = default.node_sound_leaves_defaults(), + + after_place_node = function(pos, placer, itemstack) + minetest.set_node(pos, {name = "default:apple", param2 = 1}) + end, }) minetest.register_node("default:apple_gold", { @@ -1679,8 +1435,7 @@ minetest.register_node("default:apple_gold", { type = "fixed", fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2} }, - stack_max = 64, - groups = {fleshy=3,dig_immediate=3,flammable=2, foodstuffs = 1}, + groups = {fleshy=3,dig_immediate=3, flammable = 2, foodstuffs = 1}, on_use = minetest.item_eat(8), sounds = default.node_sound_defaults(), }) @@ -1694,8 +1449,7 @@ minetest.register_node("default:dry_shrub", { wield_image = "default_dry_shrub.png", paramtype = "light", walkable = false, - stack_max = 64, - groups = {snappy=3,flammable=3,attached_node=1, decorative = 1}, + groups = {snappy = 3, flammable = 3,attached_node=1, decorative = 1}, sounds = default.node_sound_leaves_defaults(), selection_box = { type = "fixed", @@ -1727,8 +1481,7 @@ minetest.register_node("default:grass", { -- } --}, paramtype = "light", - is_ground_content = true, - groups = {snappy=3,flammable=3,attached_node=1,dig_immediate=3, decorative=1, grass=1}, + groups = {snappy = 3, flammable = 3,attached_node=1,dig_immediate=3, decorative=1, grass=1}, sounds = default.node_sound_leaves_defaults(), after_dig_node = function(pos, oldnode, oldmetadata, user) local item = user:get_wielded_item() @@ -1747,8 +1500,7 @@ minetest.register_node("default:dry_grass", { walkable = false, buildable_to = true, paramtype = "light", - is_ground_content = true, - groups = {snappy=3,flammable=3,attached_node=1,dig_immediate=3, decorative=1, grass=1}, + groups = {snappy = 3, flammable = 3, attached_node=1, dig_immediate=3, decorative=1, grass=1}, sounds = default.node_sound_leaves_defaults(), after_dig_node = function(pos, oldnode, oldmetadata, user) local item = user:get_wielded_item() @@ -1761,8 +1513,6 @@ minetest.register_node("default:dry_grass", { minetest.register_node("default:glowstone", { description = "Glowstone", tiles = {"default_glowstone.png"}, - is_ground_content = true, - stack_max = 64, groups = {cracky=3, building = 1}, drop = { max_items = 1, @@ -1786,8 +1536,7 @@ minetest.register_node("default:sponge", { pointable = true, diggable = true, buildable_to = false, - stack_max = 64, - groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3, building = 1}, + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, flammable = 3, building = 1}, on_place = function(itemstack, placer, pointed_thing) local pn = placer:get_player_name() if pointed_thing.type ~= "node" then @@ -1865,20 +1614,17 @@ minetest.register_node("default:sponge_wet", { pointable = true, diggable = true, buildable_to = false, - stack_max = 64, - groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3, not_in_creative_inventory = 1}, + groups = {snappy = 2, choppy = 2, oddly_breakable_by_hand = 3, not_in_creative_inventory = 1}, }) - minetest.register_node("default:ice", { description = "Ice", drawtype = "glasslike", tiles = {"default_ice.png"}, - is_ground_content = true, + is_ground_content = false, paramtype = "light", use_texture_alpha = true, - stack_max = 64, - groups = {cracky=3,oddly_breakable_by_hand=2, building = 1}, + groups = {cracky = 3, puts_out_fire = 1, oddly_breakable_by_hand = 2, building = 1}, sounds = default.node_sound_glass_defaults(), }) @@ -1886,10 +1632,8 @@ minetest.register_node("default:packedice", { description = "Packed Ice", drawtype = "glasslike", tiles = {"default_ice_packed.png"}, - is_ground_content = true, paramtype = "light", use_texture_alpha = true, - stack_max = 64, groups = {cracky=2, building = 1}, sounds = default.node_sound_glass_defaults(), }) @@ -1899,7 +1643,6 @@ minetest.register_node("default:snow", { tiles = {"default_snow.png"}, inventory_image = "default_snowball.png", wield_image = "default_snowball.png", - is_ground_content = true, paramtype = "light", buildable_to = true, drawtype = "nodebox", @@ -1910,9 +1653,10 @@ minetest.register_node("default:snow", { {-0.5, -0.5, -0.5, 0.5, -0.5+2/16, 0.5}, }, }, - groups = {crumbly=3,falling_node=1, misc = 1}, + groups = {crumbly = 3, falling_node = 1, puts_out_fire = 1, misc = 1}, sounds = default.node_sound_dirt_defaults({ footstep = {name="default_grass_footstep", gain=0.4}, + dug = {name = "default_snow_footstep", gain = 0.75}, }), on_use = snow_shoot_snowball, on_construct = function(pos) @@ -1926,11 +1670,10 @@ minetest.register_node("default:snow", { minetest.register_node("default:snowblock", { description = "Snow Block", tiles = {"default_snow.png"}, - is_ground_content = true, - stack_max = 64, - groups = {crumbly=3, building = 1}, + groups = {crumbly = 3, building = 1}, sounds = default.node_sound_dirt_defaults({ - footstep = {name="default_grass_footstep", gain=0.4}, + footstep = {name = "default_snow_footstep", gain = 0.4}, + dug = {name = "default_snow_footstep", gain = 0.75}, }), drop = "default:snow 4", }) diff --git a/games/default/files/default/schematics/acacia_tree.mts b/games/default/files/default/schematics/acacia_tree.mts index ec7d5f9a5..4732ade3d 100644 Binary files a/games/default/files/default/schematics/acacia_tree.mts and b/games/default/files/default/schematics/acacia_tree.mts differ diff --git a/games/default/files/default/schematics/apple_tree.mts b/games/default/files/default/schematics/apple_tree.mts index 161b27bb3..2bd57c1fc 100644 Binary files a/games/default/files/default/schematics/apple_tree.mts and b/games/default/files/default/schematics/apple_tree.mts differ diff --git a/games/default/files/default/schematics/apple_tree_from_sapling.mts b/games/default/files/default/schematics/apple_tree_from_sapling.mts index 5d35a1545..d258ab1a8 100644 Binary files a/games/default/files/default/schematics/apple_tree_from_sapling.mts and b/games/default/files/default/schematics/apple_tree_from_sapling.mts differ diff --git a/games/default/files/default/schematics/aspen_tree.mts b/games/default/files/default/schematics/aspen_tree.mts index fe54f6777..429a831c7 100644 Binary files a/games/default/files/default/schematics/aspen_tree.mts and b/games/default/files/default/schematics/aspen_tree.mts differ diff --git a/games/default/files/default/schematics/aspen_tree_from_sapling.mts b/games/default/files/default/schematics/aspen_tree_from_sapling.mts index 6bf0f1865..b7ab3ee6b 100644 Binary files a/games/default/files/default/schematics/aspen_tree_from_sapling.mts and b/games/default/files/default/schematics/aspen_tree_from_sapling.mts differ diff --git a/games/default/files/default/schematics/jungle_tree.mts b/games/default/files/default/schematics/jungle_tree.mts index 329364a87..01a1b11a0 100644 Binary files a/games/default/files/default/schematics/jungle_tree.mts and b/games/default/files/default/schematics/jungle_tree.mts differ diff --git a/games/default/files/default/schematics/jungle_tree_from_sapling.mts b/games/default/files/default/schematics/jungle_tree_from_sapling.mts index babaa45f7..f93f01419 100644 Binary files a/games/default/files/default/schematics/jungle_tree_from_sapling.mts and b/games/default/files/default/schematics/jungle_tree_from_sapling.mts differ diff --git a/games/default/files/default/schematics/large_cactus.mts b/games/default/files/default/schematics/large_cactus.mts index 43555b962..b71077b3c 100644 Binary files a/games/default/files/default/schematics/large_cactus.mts and b/games/default/files/default/schematics/large_cactus.mts differ diff --git a/games/default/files/default/schematics/papyrus.mts b/games/default/files/default/schematics/papyrus.mts index a3b67776e..1333a7c42 100644 Binary files a/games/default/files/default/schematics/papyrus.mts and b/games/default/files/default/schematics/papyrus.mts differ diff --git a/games/default/files/default/schematics/pine_tree.mts b/games/default/files/default/schematics/pine_tree.mts index 576a2dfb7..6f27d8392 100644 Binary files a/games/default/files/default/schematics/pine_tree.mts and b/games/default/files/default/schematics/pine_tree.mts differ diff --git a/games/default/files/default/schematics/pine_tree_from_sapling.mts b/games/default/files/default/schematics/pine_tree_from_sapling.mts index 629c5da02..e42a9965c 100644 Binary files a/games/default/files/default/schematics/pine_tree_from_sapling.mts and b/games/default/files/default/schematics/pine_tree_from_sapling.mts differ diff --git a/games/default/files/default/sounds/boss_noise.ogg b/games/default/files/default/sounds/boss_noise.ogg deleted file mode 100644 index a14a0bb5f..000000000 Binary files a/games/default/files/default/sounds/boss_noise.ogg and /dev/null differ diff --git a/games/default/files/default/sounds/ent.ogg b/games/default/files/default/sounds/ent.ogg deleted file mode 100644 index 7d5fed4dc..000000000 Binary files a/games/default/files/default/sounds/ent.ogg and /dev/null differ diff --git a/games/default/files/default/sounds/grim_reaper.ogg b/games/default/files/default/sounds/grim_reaper.ogg deleted file mode 100644 index 9c02d591c..000000000 Binary files a/games/default/files/default/sounds/grim_reaper.ogg and /dev/null differ diff --git a/games/default/files/default/textures/default_dry_grass.png b/games/default/files/default/textures/default_dry_grass.png index d124ed1d3..bcf896e10 100644 Binary files a/games/default/files/default/textures/default_dry_grass.png and b/games/default/files/default/textures/default_dry_grass.png differ diff --git a/games/default/files/default/textures/default_dry_grass_side.png b/games/default/files/default/textures/default_dry_grass_side.png index f6ed98bb6..2cf619a86 100644 Binary files a/games/default/files/default/textures/default_dry_grass_side.png and b/games/default/files/default/textures/default_dry_grass_side.png differ diff --git a/games/default/files/default/textures/default_dry_tallgrass.png b/games/default/files/default/textures/default_dry_tallgrass.png index 94bf1157d..2f8048a53 100644 Binary files a/games/default/files/default/textures/default_dry_tallgrass.png and b/games/default/files/default/textures/default_dry_tallgrass.png differ diff --git a/games/default/files/default/textures/default_sign_wall_wood.png b/games/default/files/default/textures/default_sign_wall_wood.png index d9e850199..144c92e67 100644 Binary files a/games/default/files/default/textures/default_sign_wall_wood.png and b/games/default/files/default/textures/default_sign_wall_wood.png differ diff --git a/games/default/files/default/textures/default_sign_wood.png b/games/default/files/default/textures/default_sign_wood.png index 04b79ac85..e345e5a3e 100644 Binary files a/games/default/files/default/textures/default_sign_wood.png and b/games/default/files/default/textures/default_sign_wood.png differ diff --git a/games/default/files/default/textures/formspec_furnace.png b/games/default/files/default/textures/formspec_furnace.png new file mode 100644 index 000000000..ecd2ed9bd Binary files /dev/null and b/games/default/files/default/textures/formspec_furnace.png differ diff --git a/games/default/files/default/textures/formspec_workbench.png b/games/default/files/default/textures/formspec_workbench.png new file mode 100644 index 000000000..d86755301 Binary files /dev/null and b/games/default/files/default/textures/formspec_workbench.png differ diff --git a/games/default/files/crafting/textures/crafting_workbench_front.png b/games/default/files/default/textures/workbench_front.png similarity index 100% rename from games/default/files/crafting/textures/crafting_workbench_front.png rename to games/default/files/default/textures/workbench_front.png diff --git a/games/default/files/crafting/textures/crafting_workbench_side.png b/games/default/files/default/textures/workbench_side.png similarity index 100% rename from games/default/files/crafting/textures/crafting_workbench_side.png rename to games/default/files/default/textures/workbench_side.png diff --git a/games/default/files/crafting/textures/crafting_workbench_top.png b/games/default/files/default/textures/workbench_top.png similarity index 100% rename from games/default/files/crafting/textures/crafting_workbench_top.png rename to games/default/files/default/textures/workbench_top.png diff --git a/games/default/files/default/tools.lua b/games/default/files/default/tools.lua index 02319e9f0..16d6af246 100644 --- a/games/default/files/default/tools.lua +++ b/games/default/files/default/tools.lua @@ -183,7 +183,7 @@ minetest.register_tool("default:axe_stone", { full_punch_interval = 1.2, max_drop_level=0, groupcaps={ - choppy={times={[1]=3.00, [2]=2.00, [3]=1.50}, uses=20, maxlevel=1}, + choppy = {times={[1]=3.00, [2]=2.00, [3]=1.50}, uses=20, maxlevel=1}, }, damage_groups = {fleshy=3}, }, @@ -196,7 +196,7 @@ minetest.register_tool("default:axe_steel", { full_punch_interval = 1.0, max_drop_level=1, groupcaps={ - choppy={times={[1]=2.50, [2]=1.40, [3]=1.00}, uses=20, maxlevel=2}, + choppy = {times={[1]=2.50, [2]=1.40, [3]=1.00}, uses=20, maxlevel=2}, }, damage_groups = {fleshy=5}, }, @@ -209,7 +209,7 @@ minetest.register_tool("default:axe_gold", { full_punch_interval = 1.2, max_drop_level=0, groupcaps={ - choppy={times={[1]=3.00, [2]=2.00, [3]=1.50}, uses=20, maxlevel=1}, + choppy = {times={[1]=3.00, [2]=2.00, [3]=1.50}, uses=20, maxlevel=1}, }, damage_groups = {fleshy=3}, }, @@ -222,7 +222,7 @@ minetest.register_tool("default:axe_diamond", { full_punch_interval = 0.9, max_drop_level=1, groupcaps={ - choppy={times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=30, maxlevel=2}, + choppy = {times={[1]=2.10, [2]=0.90, [3]=0.50}, uses=30, maxlevel=2}, }, damage_groups = {fleshy=6}, }, @@ -237,7 +237,7 @@ minetest.register_tool("default:sword_wood", { full_punch_interval = 1, max_drop_level=0, groupcaps={ - snappy={times={[2]=1.6, [3]=0.40}, uses=10, maxlevel=1}, + snappy = {times={[2]=1.6, [3]=0.40}, uses=10, maxlevel=1}, }, damage_groups = {fleshy=2}, }, @@ -250,7 +250,7 @@ minetest.register_tool("default:sword_stone", { full_punch_interval = 1.2, max_drop_level=0, groupcaps={ - snappy={times={[2]=1.4, [3]=0.40}, uses=20, maxlevel=1}, + snappy = {times={[2]=1.4, [3]=0.40}, uses=20, maxlevel=1}, }, damage_groups = {fleshy=4}, }, @@ -263,7 +263,7 @@ minetest.register_tool("default:sword_steel", { full_punch_interval = 0.8, max_drop_level=1, groupcaps={ - snappy={times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=30, maxlevel=2}, + snappy = {times={[1]=2.5, [2]=1.20, [3]=0.35}, uses=30, maxlevel=2}, }, damage_groups = {fleshy=6}, }, @@ -276,7 +276,7 @@ minetest.register_tool("default:sword_gold", { full_punch_interval = 1.2, max_drop_level=0, groupcaps={ - snappy={times={[2]=1.4, [3]=0.40}, uses=20, maxlevel=1}, + snappy = {times={[2]=1.4, [3]=0.40}, uses=20, maxlevel=1}, }, damage_groups = {fleshy=4}, }, @@ -289,7 +289,7 @@ minetest.register_tool("default:sword_diamond", { full_punch_interval = 0.7, max_drop_level=1, groupcaps={ - snappy={times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3}, + snappy = {times={[1]=1.90, [2]=0.90, [3]=0.30}, uses=40, maxlevel=3}, }, damage_groups = {fleshy=7}, }, diff --git a/games/default/files/default/workbench.lua b/games/default/files/default/workbench.lua new file mode 100644 index 000000000..fc4f05744 --- /dev/null +++ b/games/default/files/default/workbench.lua @@ -0,0 +1,56 @@ + +-- +-- Workbench +-- + +local function set_workbench(player) + + local split_form = "" + local workbench = "size[9,8.75]" .. + "image_button_exit[8.4,-0.1;0.75,0.75;close.png;exit;;true;true;]".. + "background[-0.19,-0.25;9.41,9.49;formspec_workbench.png]" .. + "bgcolor[#080808BB;true]" .. + "listcolors[#9990;#FFF7;#FFF0;#160816;#D4D2FF]" .. + "list[detached:split;main;8,3.15;1,1;]".. + "list[current_player;main;0,4.5;9,3;9]" .. + "list[current_player;main;0,7.74;9,1;]" .. + "list[current_player;craft;2,0.5;3,3;]" .. + "list[current_player;craftpreview;6.05,1.5;1,1;]" .. + split_form.. + "wob" + + minetest.show_formspec(player:get_player_name(), "main", workbench) +end + +minetest.register_node("default:workbench", { + description = "Workbench", + tiles = {"workbench_top.png", "workbench_top.png", "workbench_side.png", + "workbench_side.png", "workbench_front.png", "workbench_front.png"}, + paramtype2 = "facedir", + paramtype = "light", + groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2}, + on_rightclick = function (pos, node, clicker, itemstack) + set_workbench(clicker) + end + }) + +minetest.register_craft({ + output = 'default:workbench', + recipe = { + {'group:wood', 'group:wood'}, + {'group:wood', 'group:wood'} + } + }) + +local split_inv = minetest.create_detached_inventory("split", { + allow_move = function(_, _, _, _, _, count, _) + return count + end, + allow_put = function(_, _, _, stack, _) + return stack:get_count() / 2 + end, + allow_take = function(_, _, _, stack, _) + return stack:get_count() + end, +}) +split_inv:set_size("main", 1) diff --git a/games/default/files/doors/init.lua b/games/default/files/doors/init.lua index f84a08abf..05a2ed156 100644 --- a/games/default/files/doors/init.lua +++ b/games/default/files/doors/init.lua @@ -296,7 +296,7 @@ doors:register_door("doors:door_wood", { description = "Wooden Door", inventory_image = "door_wood.png", stack_max = 16, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1, mese = 1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,door=1, mese = 1}, tiles_bottom = {"door_wood_b.png", "door_brown.png"}, tiles_top = {"door_wood_a.png", "door_brown.png"}, }) @@ -315,7 +315,7 @@ doors:register_door("doors:door_acacia", { description = "Wooden Acacia Door", inventory_image = "door_acacia.png", stack_max = 16, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1, mese=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,door=1, mese=1}, tiles_bottom = {"door_acacia_b.png", "door_brown.png"}, tiles_top = {"door_acacia_a.png", "door_brown.png"}, }) @@ -334,7 +334,7 @@ doors:register_door("doors:door_birch", { description = "Wooden Birch Door", stack_max = 16, inventory_image = "door_birch.png", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1, mese = 1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,door=1, mese = 1}, tiles_bottom = {"door_birch_b.png", "door_brown.png"}, tiles_top = {"door_birch_a.png", "door_brown.png"}, }) @@ -344,7 +344,7 @@ doors:register_door("doors:door_dark_oak", { description = "Wooden Dark Oak Door", inventory_image = "door_dark_oak.png", stack_max = 16, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1, mese=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,door=1, mese=1}, tiles_bottom = {"door_dark_oak_b.png", "door_brown.png"}, tiles_top = {"door_dark_oak_a.png", "door_brown.png"}, }) @@ -354,7 +354,7 @@ doors:register_door("doors:door_jungle", { description = "Wooden Jungle Door", stack_max = 16, inventory_image = "door_jungle.png", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,door=1, mese=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,door=1, mese=1}, tiles_bottom = {"door_jungle_b.png", "door_brown.png"}, tiles_top = {"door_jungle_a.png", "door_brown.png"}, }) @@ -374,7 +374,7 @@ doors:register_door("doors:door_steel", { description = "Steel Door", stack_max = 16, inventory_image = "door_steel.png", - groups = {snappy=1,bendy=2,cracky=1,melty=2,level=2,door=1,mesecon_effector_on=1, mese=1}, + groups = {snappy = 1,bendy=2,cracky=1,melty=2,level=2,door=1,mesecon_effector_on=1, mese=1}, tiles_bottom = {"door_steel_b.png", "door_grey.png"}, tiles_top = {"door_steel_a.png", "door_grey.png"}, only_placer_can_open = true, @@ -434,7 +434,7 @@ minetest.register_node("doors:trapdoor", { paramtype = "light", stack_max = 16, paramtype2 = "facedir", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,flammable=2,door=1,mese=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2,mesecon_effector_on=1, flammable = 2,door=1,mese=1}, sounds = default.node_sound_wood_defaults(), drop = "doors:trapdoor", node_box = { @@ -480,7 +480,7 @@ minetest.register_node("doors:trapdoor_open", { paramtype2 = "facedir", pointable = true, stack_max = 0, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,flammable=2,door=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2,mesecon_effector_on=1, flammable = 2,door=1}, sounds = default.node_sound_wood_defaults(), drop = "doors:trapdoor", node_box = { @@ -551,7 +551,7 @@ minetest.register_node("doors:iron_trapdoor", { paramtype = "light", stack_max = 16, paramtype2 = "facedir", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,mesecon_effector_on=1,flammable=0,door=1, mese=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2,mesecon_effector_on=1, flammable = 0,door=1, mese=1}, sounds = default.node_sound_wood_defaults(), drop = "doors:iron_trapdoor", node_box = { @@ -594,7 +594,7 @@ minetest.register_node("doors:iron_trapdoor_open", { paramtype2 = "facedir", pointable = true, stack_max = 0, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=0,door=1,mesecon_effector_on=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 0,door=1,mesecon_effector_on=1}, sounds = default.node_sound_wood_defaults(), drop = "doors:iron_trapdoor", node_box = { diff --git a/games/default/files/default/sounds/door_close.ogg b/games/default/files/doors/sounds/door_close.ogg similarity index 100% rename from games/default/files/default/sounds/door_close.ogg rename to games/default/files/doors/sounds/door_close.ogg diff --git a/games/default/files/default/sounds/door_open.ogg b/games/default/files/doors/sounds/door_open.ogg similarity index 100% rename from games/default/files/default/sounds/door_open.ogg rename to games/default/files/doors/sounds/door_open.ogg diff --git a/games/default/files/default/textures/door_acacia.png b/games/default/files/doors/textures/door_acacia.png similarity index 100% rename from games/default/files/default/textures/door_acacia.png rename to games/default/files/doors/textures/door_acacia.png diff --git a/games/default/files/default/textures/door_acacia_a.png b/games/default/files/doors/textures/door_acacia_a.png similarity index 100% rename from games/default/files/default/textures/door_acacia_a.png rename to games/default/files/doors/textures/door_acacia_a.png diff --git a/games/default/files/default/textures/door_acacia_b.png b/games/default/files/doors/textures/door_acacia_b.png similarity index 100% rename from games/default/files/default/textures/door_acacia_b.png rename to games/default/files/doors/textures/door_acacia_b.png diff --git a/games/default/files/default/textures/door_birch.png b/games/default/files/doors/textures/door_birch.png similarity index 100% rename from games/default/files/default/textures/door_birch.png rename to games/default/files/doors/textures/door_birch.png diff --git a/games/default/files/default/textures/door_birch_a.png b/games/default/files/doors/textures/door_birch_a.png similarity index 100% rename from games/default/files/default/textures/door_birch_a.png rename to games/default/files/doors/textures/door_birch_a.png diff --git a/games/default/files/default/textures/door_birch_b.png b/games/default/files/doors/textures/door_birch_b.png similarity index 100% rename from games/default/files/default/textures/door_birch_b.png rename to games/default/files/doors/textures/door_birch_b.png diff --git a/games/default/files/default/textures/door_brown.png b/games/default/files/doors/textures/door_brown.png similarity index 100% rename from games/default/files/default/textures/door_brown.png rename to games/default/files/doors/textures/door_brown.png diff --git a/games/default/files/default/textures/door_dark_oak.png b/games/default/files/doors/textures/door_dark_oak.png similarity index 100% rename from games/default/files/default/textures/door_dark_oak.png rename to games/default/files/doors/textures/door_dark_oak.png diff --git a/games/default/files/default/textures/door_dark_oak_a.png b/games/default/files/doors/textures/door_dark_oak_a.png similarity index 100% rename from games/default/files/default/textures/door_dark_oak_a.png rename to games/default/files/doors/textures/door_dark_oak_a.png diff --git a/games/default/files/default/textures/door_dark_oak_b.png b/games/default/files/doors/textures/door_dark_oak_b.png similarity index 100% rename from games/default/files/default/textures/door_dark_oak_b.png rename to games/default/files/doors/textures/door_dark_oak_b.png diff --git a/games/default/files/default/textures/door_grey.png b/games/default/files/doors/textures/door_grey.png similarity index 100% rename from games/default/files/default/textures/door_grey.png rename to games/default/files/doors/textures/door_grey.png diff --git a/games/default/files/default/textures/door_jungle.png b/games/default/files/doors/textures/door_jungle.png similarity index 100% rename from games/default/files/default/textures/door_jungle.png rename to games/default/files/doors/textures/door_jungle.png diff --git a/games/default/files/default/textures/door_jungle_a.png b/games/default/files/doors/textures/door_jungle_a.png similarity index 100% rename from games/default/files/default/textures/door_jungle_a.png rename to games/default/files/doors/textures/door_jungle_a.png diff --git a/games/default/files/default/textures/door_jungle_b.png b/games/default/files/doors/textures/door_jungle_b.png similarity index 100% rename from games/default/files/default/textures/door_jungle_b.png rename to games/default/files/doors/textures/door_jungle_b.png diff --git a/games/default/files/default/textures/door_steel.png b/games/default/files/doors/textures/door_steel.png similarity index 100% rename from games/default/files/default/textures/door_steel.png rename to games/default/files/doors/textures/door_steel.png diff --git a/games/default/files/default/textures/door_steel_a.png b/games/default/files/doors/textures/door_steel_a.png similarity index 100% rename from games/default/files/default/textures/door_steel_a.png rename to games/default/files/doors/textures/door_steel_a.png diff --git a/games/default/files/default/textures/door_steel_b.png b/games/default/files/doors/textures/door_steel_b.png similarity index 100% rename from games/default/files/default/textures/door_steel_b.png rename to games/default/files/doors/textures/door_steel_b.png diff --git a/games/default/files/default/textures/door_trapdoor.png b/games/default/files/doors/textures/door_trapdoor.png similarity index 100% rename from games/default/files/default/textures/door_trapdoor.png rename to games/default/files/doors/textures/door_trapdoor.png diff --git a/games/default/files/default/textures/door_wood.png b/games/default/files/doors/textures/door_wood.png similarity index 100% rename from games/default/files/default/textures/door_wood.png rename to games/default/files/doors/textures/door_wood.png diff --git a/games/default/files/default/textures/door_wood_a.png b/games/default/files/doors/textures/door_wood_a.png similarity index 100% rename from games/default/files/default/textures/door_wood_a.png rename to games/default/files/doors/textures/door_wood_a.png diff --git a/games/default/files/default/textures/door_wood_a_r.png b/games/default/files/doors/textures/door_wood_a_r.png similarity index 100% rename from games/default/files/default/textures/door_wood_a_r.png rename to games/default/files/doors/textures/door_wood_a_r.png diff --git a/games/default/files/default/textures/door_wood_b.png b/games/default/files/doors/textures/door_wood_b.png similarity index 100% rename from games/default/files/default/textures/door_wood_b.png rename to games/default/files/doors/textures/door_wood_b.png diff --git a/games/default/files/default/textures/door_wood_b_r.png b/games/default/files/doors/textures/door_wood_b_r.png similarity index 100% rename from games/default/files/default/textures/door_wood_b_r.png rename to games/default/files/doors/textures/door_wood_b_r.png diff --git a/games/default/files/fences/init.lua b/games/default/files/fences/init.lua index 348eadd14..78af8d302 100644 --- a/games/default/files/fences/init.lua +++ b/games/default/files/fences/init.lua @@ -99,9 +99,8 @@ minetest.register_node("fences:fence_wood", { inventory_image = "default_fence.png", wield_image = "default_fence.png", paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1, decorative = 1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1, decorative = 1}, drop = 'fences:fence_wood', - stack_max = 64, sunlight_propagates = true, drawtype = "nodebox", node_box = { @@ -130,7 +129,7 @@ minetest.register_node("fences:fence_wood", { minetest.register_node("fences:fence_wood_1", { tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -157,7 +156,7 @@ minetest.register_node("fences:fence_wood_1", { minetest.register_node("fences:fence_wood_2", { tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -184,7 +183,7 @@ minetest.register_node("fences:fence_wood_2", { minetest.register_node("fences:fence_wood_3", { --left+right(3) tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -211,7 +210,7 @@ minetest.register_node("fences:fence_wood_3", { --left+right(3) minetest.register_node("fences:fence_wood_11", { --top tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -238,7 +237,7 @@ minetest.register_node("fences:fence_wood_11", { --top minetest.register_node("fences:fence_wood_21", { --bottom tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -266,7 +265,7 @@ minetest.register_node("fences:fence_wood_21", { --bottom minetest.register_node("fences:fence_wood_32", { --top+bottom(32) tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -293,7 +292,7 @@ minetest.register_node("fences:fence_wood_32", { --top+bottom(32) minetest.register_node("fences:fence_wood_14", { --left+right(3)+ top(11) =14 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -320,7 +319,7 @@ minetest.register_node("fences:fence_wood_14", { --left+right(3)+ top(11) =14 minetest.register_node("fences:fence_wood_24", { --left+right(3)+ bottom(21) =24 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -347,7 +346,7 @@ minetest.register_node("fences:fence_wood_24", { --left+right(3)+ bottom(21) =2 minetest.register_node("fences:fence_wood_35", { --left+right(3)+top+bottom(32) = 35 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -374,7 +373,7 @@ minetest.register_node("fences:fence_wood_35", { --left+right(3)+top+bottom(32) minetest.register_node("fences:fence_wood_12", { --left(1)+top(11)=12 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -401,7 +400,7 @@ minetest.register_node("fences:fence_wood_12", { --left(1)+top(11)=12 minetest.register_node("fences:fence_wood_22", { --left(1)+bottom(21)=22 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -428,7 +427,7 @@ minetest.register_node("fences:fence_wood_22", { --left(1)+bottom(21)=22 minetest.register_node("fences:fence_wood_33", { --left(1)+top+bottom(32)=33 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -455,7 +454,7 @@ minetest.register_node("fences:fence_wood_33", { --left(1)+top+bottom(32)=33 minetest.register_node("fences:fence_wood_34", { --right(2)+top+bottom(32)=34 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -482,7 +481,7 @@ minetest.register_node("fences:fence_wood_34", { --right(2)+top+bottom(32)=34 minetest.register_node("fences:fence_wood_23", { --right(2)+bottom(21)=23 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -509,7 +508,7 @@ minetest.register_node("fences:fence_wood_23", { --right(2)+bottom(21)=23 minetest.register_node("fences:fence_wood_13", { --right(2)+top(11)=13 tiles = {"default_wood.png"}, paramtype = "light", - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1}, drop = 'fences:fence_wood', sunlight_propagates = true, drawtype = "nodebox", @@ -586,7 +585,7 @@ minetest.register_node("fences:fencegate_open", { paramtype2 = "facedir", sunlight_propagates = true, walkable = true, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,fences=1,not_in_inventory=1,mesecon_effector_on=1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,fences=1,not_in_inventory=1,mesecon_effector_on=1}, drop = 'fences:fencegate', drawtype = "nodebox", node_box = { @@ -632,7 +631,7 @@ minetest.register_node("fences:fencegate", { paramtype2 = "facedir", sunlight_propagates = true, walkable = true, - groups = {snappy=1,choppy=2,oddly_breakable_by_hand=2,flammable=2,mesecon_effector_on=1,fences=1, mese = 1}, + groups = {snappy = 1, choppy = 2, oddly_breakable_by_hand = 2, flammable = 2,mesecon_effector_on=1,fences=1, mese = 1}, drop = 'fences:fencegate', drawtype = "nodebox", node_box = { diff --git a/games/default/files/default/sounds/fire_large.ogg b/games/default/files/fire/sounds/fire_large.ogg similarity index 100% rename from games/default/files/default/sounds/fire_large.ogg rename to games/default/files/fire/sounds/fire_large.ogg diff --git a/games/default/files/default/sounds/fire_small.ogg b/games/default/files/fire/sounds/fire_small.ogg similarity index 100% rename from games/default/files/default/sounds/fire_small.ogg rename to games/default/files/fire/sounds/fire_small.ogg diff --git a/games/default/files/flowers/init.lua b/games/default/files/flowers/init.lua index de4fdcc69..31fe64a8d 100644 --- a/games/default/files/flowers/init.lua +++ b/games/default/files/flowers/init.lua @@ -47,7 +47,6 @@ local function add_simple_flower(name, desc, box, f_groups) paramtype = "light", walkable = false, buildable_to = true, - stack_max = 99, groups = f_groups, sounds = default.node_sound_leaves_defaults(), selection_box = { diff --git a/games/default/files/hardened_clay/init.lua b/games/default/files/hardened_clay/init.lua index 5a4c48d3f..d4cd35f04 100644 --- a/games/default/files/hardened_clay/init.lua +++ b/games/default/files/hardened_clay/init.lua @@ -21,7 +21,6 @@ clay.dyes = { minetest.register_node("hardened_clay:hardened_clay", { description = "Hardened Clay", tiles = {"hardened_clay.png"}, - stack_max = 64, groups = {cracky = 3}, legacy_mineral = true, groups = {buliding = 1}, @@ -43,7 +42,6 @@ for _, row in ipairs(clay.dyes) do description = desc.." Hardened Clay", tiles = {"hardened_clay_stained_"..name..".png"}, groups = {cracky = 3,hardened_clay=1, buliding = 1}, - stack_max = 64, sounds = default.node_sound_defaults(), }) if craft_color_group then diff --git a/games/default/files/itemframes/init.lua b/games/default/files/itemframes/init.lua index c6493edad..bc76da564 100644 --- a/games/default/files/itemframes/init.lua +++ b/games/default/files/itemframes/init.lua @@ -99,7 +99,7 @@ minetest.register_node("itemframes:frame",{ paramtype = "light", paramtype2 = "facedir", sunlight_propagates = true, - groups = { choppy=2,dig_immediate=2, decorative = 1 }, + groups = { choppy = 2,dig_immediate=2, decorative = 1 }, legacy_wallmounted = true, sounds = default.node_sound_defaults(), after_place_node = function(pos, placer, itemstack) diff --git a/games/default/files/mobs_animal/bear.lua b/games/default/files/mobs_animal/bear.lua index 28c5ea7c0..3b3dc0ce7 100644 --- a/games/default/files/mobs_animal/bear.lua +++ b/games/default/files/mobs_animal/bear.lua @@ -1,9 +1,7 @@ --- Bear - mobs:register_mob("mobs_animal:bear", { type = "npc", visual = "mesh", - mesh = "mobs_bear.x", + mesh = "mobs_bear.b3d", rotate = 0, collisionbox = {-0.5, -0.01, -0.5, 0.5, 1.49, 0.5}, animation = { @@ -79,7 +77,17 @@ return end mobs:capture_mob(self, clicker, 0, 0, 80, false, nil) + end, + after_activate = function(self, staticdata, def, dtime) + -- replace bear using the old directx model + if self.mesh == "mobs_bear.x" then + local pos = self.object:get_pos() + if pos then + minetest.add_entity(pos, self.name) + self.object:remove() + end end + end, }) mobs:spawn({ diff --git a/games/default/files/mobs_animal/bunny.lua b/games/default/files/mobs_animal/bunny.lua index 3735dbbcf..4def303e1 100644 --- a/games/default/files/mobs_animal/bunny.lua +++ b/games/default/files/mobs_animal/bunny.lua @@ -1,4 +1,3 @@ - -- Bunny by ExeterDad mobs:register_mob("mobs_animal:bunny", { diff --git a/games/default/files/mobs_animal/chicken.lua b/games/default/files/mobs_animal/chicken.lua index d8c11f68e..23f98127a 100644 --- a/games/default/files/mobs_animal/chicken.lua +++ b/games/default/files/mobs_animal/chicken.lua @@ -1,4 +1,3 @@ - -- Chicken by JK Murray mobs:register_mob("mobs_animal:chicken", { @@ -217,7 +216,6 @@ minetest.register_node(":mobs:egg", { wield_image = "mobs_chicken_egg.png", paramtype = "light", walkable = false, - is_ground_content = true, sunlight_propagates = true, selection_box = { type = "fixed", diff --git a/games/default/files/mobs_animal/cow.lua b/games/default/files/mobs_animal/cow.lua index a951d140e..cdff39dec 100644 --- a/games/default/files/mobs_animal/cow.lua +++ b/games/default/files/mobs_animal/cow.lua @@ -1,6 +1,3 @@ - --- Cow by Krupnovpavel - mobs:register_mob("mobs_animal:cow", { type = "animal", passive = false, @@ -10,12 +7,13 @@ mobs:register_mob("mobs_animal:cow", { hp_min = 8, hp_max = 12, armor = 100, - collisionbox = {-0.8, -0.01, -0.8, 0.8, 1.3, 0.8}, + collisionbox = {-0.9, -0.01, -0.9, 0.9, 1.65, 0.9}, visual = "mesh", - mesh = "mobs_cow.x", + mesh = "mobs_cow.b3d", textures = { {"mobs_cow.png"}, {"mobs_cow2.png"}, + {"mobs_cow3.png"}, }, makes_footstep_sound = true, sounds = { @@ -97,7 +95,17 @@ mobs:register_mob("mobs_animal:cow", { return end end, -}) + after_activate = function(self, staticdata, def, dtime) + -- replace cow using the old directx model + if self.mesh == "mobs_cow.x" then + local pos = self.object:get_pos() + if pos then + minetest.add_entity(pos, self.name) + self.object:remove() + end + end + end, + }) mobs:spawn({ name = "mobs_animal:cow", diff --git a/games/default/files/mobs_animal/dog.lua b/games/default/files/mobs_animal/dog.lua index 5d18da959..2d116ce04 100644 --- a/games/default/files/mobs_animal/dog.lua +++ b/games/default/files/mobs_animal/dog.lua @@ -1,5 +1,3 @@ - --- Wolf mobs:register_mob("mobs_animal:wolf", { type = "animal", visual = "mesh", diff --git a/games/default/files/mobs_animal/kitten.lua b/games/default/files/mobs_animal/kitten.lua index 0ad0c9844..b540d8b2a 100644 --- a/games/default/files/mobs_animal/kitten.lua +++ b/games/default/files/mobs_animal/kitten.lua @@ -1,4 +1,3 @@ - -- Kitten by Jordach / BFD mobs:register_mob("mobs_animal:kitten", { diff --git a/games/default/files/mobs_animal/models/mobs_bear.b3d b/games/default/files/mobs_animal/models/mobs_bear.b3d new file mode 100644 index 000000000..59fda3a26 Binary files /dev/null and b/games/default/files/mobs_animal/models/mobs_bear.b3d differ diff --git a/games/default/files/mobs_animal/models/mobs_bear.x b/games/default/files/mobs_animal/models/mobs_bear.x index 5c02a801c..f8f3fb67f 100644 --- a/games/default/files/mobs_animal/models/mobs_bear.x +++ b/games/default/files/mobs_animal/models/mobs_bear.x @@ -1,6760 +1,10 @@ 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, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } - Frame Armature { - FrameTransformMatrix { - 3.207477, 0.000000, 0.000000, 0.000000, - 0.000000, 3.207477, 0.000000, 0.000000, - 0.000000, 0.000000, 3.207477, 0.000000, - -16.930458, 0.174942, 0.066300, 1.000000;; - } - Frame Armature_Body { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.996529, 0.083252, 0.000000, - 0.000000,-0.083252, 0.996529, 0.000000, - 5.378092,-1.647068, 2.876912, 1.000000;; - } - Frame Armature_noga3 { - FrameTransformMatrix { - 0.000000,-0.996529, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996529, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.823735,-0.011078,-1.204985, 1.000000;; - } - } //End of Armature_noga3 - Frame Armature_noga1 { - FrameTransformMatrix { - 0.000000,-0.996529, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996529, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.752547, 3.021216,-1.494725, 1.000000;; - } - } //End of Armature_noga1 - Frame Armature_noga4 { - FrameTransformMatrix { - 0.000000,-0.996528, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996528, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - -0.858075,-0.011159,-1.205961, 1.000000;; - } - } //End of Armature_noga4 - Frame Armature_noga2 { - FrameTransformMatrix { - 0.000000,-0.996529, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996529, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - -0.839105, 3.022715,-1.476782, 1.000000;; - } - } //End of Armature_noga2 - Frame Armature_hvost { - FrameTransformMatrix { - 0.997402,-0.071996,-0.002231, 0.000000, - -0.071851,-0.996629, 0.039608, 0.000000, - -0.005075,-0.039345,-0.999213, 0.000000, - 0.105165,-0.163946, 0.004525, 1.000000;; - } - } //End of Armature_hvost - Frame Armature_sheya { - FrameTransformMatrix { - 0.997121, 0.067775,-0.033999, 0.000000, - -0.071692, 0.988697,-0.131678, 0.000000, - 0.024691, 0.133736, 0.990709, 0.000000, - 0.000000, 3.190314,-0.593113, 1.000000;; - } - Frame Armature_head { - FrameTransformMatrix { - 0.997121,-0.075824,-0.000243, 0.000000, - 0.075813, 0.996898, 0.021119, 0.000000, - -0.001359,-0.021076, 0.999777, 0.000000, - 0.068622, 0.902305, 0.030138, 1.000000;; - } - } //End of Armature_head - Frame Armature_zubi { - FrameTransformMatrix { - 0.997121,-0.075824,-0.000243, 0.000000, - 0.075658, 0.994708, 0.069515, 0.000000, - -0.005029,-0.069333, 0.997581, 0.000000, - 0.192513, 1.798870,-0.340671, 1.000000;; - } - } //End of Armature_zubi - } //End of Armature_sheya - } //End of Armature_Body - } //End of Armature - Frame Cube { - FrameTransformMatrix { - 3.207477, 0.000000, 0.000000, 0.000000, - 0.000000, 3.207477, 0.000000, 0.000000, - 0.000000, 0.000000, 3.207477, 0.000000, - 0.191637,-0.316125,10.025743, 1.000000;; - } - Mesh { //Mesh Mesh - 344; - -1.644231; 0.271962;-1.630584;, - -1.000000; 2.052689;-1.534117;, - -1.000000; 2.052689; 0.297009;, - -1.644231; 0.271962; 0.393477;, - -1.000000; 2.052689;-1.534117;, - 1.000000; 2.052689;-1.534117;, - 1.000000; 2.052689; 0.297009;, - -1.000000; 2.052689; 0.297009;, - 1.644231; 0.271962;-1.630584;, - 1.209352;-1.823040;-1.383494;, - 1.209352;-1.823040;-0.053288;, - 1.644231; 0.271962; 0.393477;, - 1.209352;-1.823040;-1.383494;, - -1.190063;-1.800769;-1.383494;, - -1.190063;-1.800769;-0.053288;, - 1.209352;-1.823040;-0.053288;, - 1.644231; 0.271962;-1.630584;, - 1.000000; 2.052689;-1.534117;, - -1.000000; 2.052689;-1.534117;, - -1.644231; 0.271962;-1.630584;, - -1.644231; 0.271962; 0.393477;, - -1.000000; 2.052689; 0.297009;, - 1.000000; 2.052689; 0.297009;, - 1.644231; 0.271962; 0.393477;, - -1.190063;-1.800769;-1.383494;, - -1.644231; 0.271962;-1.630584;, - -1.644231; 0.271962; 0.393477;, - -1.190063;-1.800769;-0.053288;, - 1.000000; 2.052689;-1.534117;, - 1.644231; 0.271962;-1.630584;, - 1.644231; 0.271962; 0.393477;, - 1.000000; 2.052689; 0.297009;, - 1.209352;-1.823040;-1.383494;, - 1.644231; 0.271962;-1.630584;, - -1.644231; 0.271962;-1.630584;, - -1.190063;-1.800769;-1.383494;, - -1.190063;-1.800769;-0.053288;, - -1.644231; 0.271962; 0.393477;, - 1.644231; 0.271962; 0.393477;, - 1.209352;-1.823040;-0.053288;, - -0.554794; 1.531876;-1.093480;, - -0.554794; 2.869460;-1.091906;, - -0.554794; 2.868186;-0.009092;, - -0.554794; 1.530602;-0.010665;, - -0.554794; 2.869460;-1.091906;, - 0.722589; 2.869460;-1.091906;, - 0.722589; 2.868186;-0.009092;, - -0.554794; 2.868186;-0.009092;, - 0.722589; 2.869460;-1.091906;, - 0.722589; 1.531876;-1.093480;, - 0.722589; 1.530602;-0.010665;, - 0.722589; 2.868186;-0.009092;, - 0.722589; 1.531876;-1.093480;, - -0.554794; 1.531876;-1.093480;, - -0.554794; 1.530602;-0.010665;, - 0.722589; 1.530602;-0.010665;, - 0.722589; 1.531876;-1.093480;, - 0.722589; 2.869460;-1.091906;, - -0.554794; 2.869460;-1.091906;, - -0.554794; 1.531876;-1.093480;, - -0.554794; 1.530602;-0.010665;, - -0.554794; 2.868186;-0.009092;, - 0.722589; 2.868186;-0.009092;, - 0.722589; 1.530602;-0.010665;, - -0.753715; 2.477185;-1.123960;, - -0.753715; 3.192936;-1.123960;, - -0.753715; 3.192936; 0.109990;, - -0.753715; 2.477185; 0.109990;, - 0.561114; 3.890996;-1.025554;, - -0.445592; 3.890996;-1.025554;, - -0.753715; 3.192936;-1.123960;, - 0.869236; 3.192936;-1.123960;, - 0.869236; 3.192936;-1.123960;, - 0.869236; 2.477185;-1.123960;, - 0.869236; 2.477185; 0.109990;, - 0.869236; 3.192936; 0.109990;, - 0.869236; 2.477185;-1.123960;, - -0.753715; 2.477185;-1.123960;, - -0.753715; 2.477185; 0.109990;, - 0.869236; 2.477185; 0.109990;, - 0.869236; 2.477185;-1.123960;, - 0.869236; 3.192936;-1.123960;, - -0.753715; 3.192936;-1.123960;, - -0.753715; 2.477185;-1.123960;, - -0.753715; 2.477185; 0.109990;, - -0.753715; 3.192936; 0.109990;, - 0.869236; 3.192936; 0.109990;, - 0.869236; 2.477185; 0.109990;, - 0.561114; 4.338547;-1.025554;, - -0.445592; 4.338547;-1.025554;, - -0.445592; 3.890996;-1.025554;, - 0.561114; 3.890996;-1.025554;, - -0.445592; 3.890996;-0.314747;, - 0.561114; 3.890996;-0.314747;, - 0.869236; 3.192936; 0.109990;, - -0.753715; 3.192936; 0.109990;, - 0.561114; 3.890996;-0.314747;, - 0.561114; 3.890996;-1.025554;, - 0.869236; 3.192936;-1.123960;, - 0.869236; 3.192936; 0.109990;, - -0.753715; 3.192936; 0.109990;, - -0.753715; 3.192936;-1.123960;, - -0.445592; 3.890996;-1.025554;, - -0.445592; 3.890996;-0.314747;, - -0.445592; 4.338547;-1.025554;, - 0.561114; 4.338547;-1.025554;, - 0.561114; 4.338547;-0.314747;, - -0.445592; 4.338547;-0.314747;, - -0.445592; 3.890996;-0.314747;, - -0.445592; 3.890996;-1.025554;, - -0.445592; 4.338547;-1.025554;, - -0.445592; 4.338547;-0.314747;, - -0.445592; 4.338547;-0.314747;, - 0.561114; 4.338547;-0.314747;, - 0.561114; 3.890996;-0.314747;, - -0.445592; 3.890996;-0.314747;, - 0.561114; 4.338547;-0.314747;, - 0.561114; 4.338547;-1.025554;, - 0.561114; 3.890996;-1.025554;, - 0.561114; 3.890996;-0.314747;, - 0.409596; 2.270300; 0.016374;, - 0.409596; 2.596083; 0.016374;, - 0.798799; 2.596083; 0.630571;, - 0.798799; 2.270300; 0.630571;, - 0.409596; 2.596083; 0.016374;, - 0.934144; 2.642804;-0.213707;, - 1.246098; 2.642804; 0.342611;, - 0.798799; 2.596083; 0.630571;, - 0.934144; 2.642804;-0.213707;, - 0.934144; 2.317022;-0.213707;, - 1.246098; 2.317022; 0.342611;, - 1.246098; 2.642804; 0.342611;, - 0.934144; 2.317022;-0.213707;, - 0.409596; 2.270300; 0.016374;, - 0.798799; 2.270300; 0.630571;, - 1.246098; 2.317022; 0.342611;, - 0.934144; 2.317022;-0.213707;, - 0.934144; 2.642804;-0.213707;, - 0.409596; 2.596083; 0.016374;, - 0.409596; 2.270300; 0.016374;, - 0.798799; 2.270300; 0.630571;, - 0.798799; 2.596083; 0.630571;, - 1.246098; 2.642804; 0.342611;, - 1.246098; 2.317022; 0.342611;, - -0.734767; 2.291395;-0.226150;, - -0.734767; 2.617177;-0.226150;, - -1.077193; 2.617177; 0.310634;, - -1.077193; 2.291395; 0.310634;, - -0.734767; 2.617177;-0.226150;, - -0.315343; 2.617177; 0.003931;, - -0.668083; 2.617177; 0.602313;, - -1.077193; 2.617177; 0.310634;, - -0.315343; 2.617177; 0.003931;, - -0.315343; 2.291395; 0.003931;, - -0.668083; 2.291395; 0.602313;, - -0.668083; 2.617177; 0.602313;, - -0.315343; 2.291395; 0.003931;, - -0.734767; 2.291395;-0.226150;, - -1.077193; 2.291395; 0.310634;, - -0.668083; 2.291395; 0.602313;, - -0.315343; 2.291395; 0.003931;, - -0.315343; 2.617177; 0.003931;, - -0.734767; 2.617177;-0.226150;, - -0.734767; 2.291395;-0.226150;, - -1.077193; 2.291395; 0.310634;, - -1.077193; 2.617177; 0.310634;, - -0.668083; 2.617177; 0.602313;, - -0.668083; 2.291395; 0.602313;, - 0.009420;-2.334142;-0.118004;, - 0.009420;-2.340712;-0.330199;, - -0.048841;-2.092197;-0.388032;, - -0.048841;-2.082525;-0.075655;, - 0.009420;-2.340712;-0.330199;, - 0.205426;-2.340712;-0.330199;, - 0.263686;-2.092197;-0.388032;, - -0.048841;-2.092197;-0.388032;, - 0.205426;-2.340712;-0.330199;, - 0.205426;-2.334142;-0.118004;, - 0.263686;-2.082525;-0.075655;, - 0.263686;-2.092197;-0.388032;, - 0.205426;-2.334142;-0.118004;, - 0.009420;-2.334142;-0.118004;, - -0.048841;-2.082525;-0.075655;, - 0.263686;-2.082525;-0.075655;, - 0.205426;-2.334142;-0.118004;, - 0.205426;-2.340712;-0.330199;, - 0.009420;-2.340712;-0.330199;, - 0.009420;-2.334142;-0.118004;, - -0.005182;-1.361437;-0.233249;, - -0.005182;-1.366143;-0.385240;, - 0.220027;-1.366143;-0.385240;, - 0.220027;-1.361437;-0.233249;, - -0.048841;-1.640101;-0.089354;, - -0.048841;-1.649773;-0.401731;, - -0.005182;-1.366143;-0.385240;, - -0.005182;-1.361437;-0.233249;, - -0.048841;-1.649773;-0.401731;, - 0.263686;-1.649773;-0.401731;, - 0.220027;-1.366143;-0.385240;, - -0.005182;-1.366143;-0.385240;, - 0.263686;-1.649773;-0.401731;, - 0.263686;-1.640101;-0.089354;, - 0.220027;-1.361437;-0.233249;, - 0.220027;-1.366143;-0.385240;, - 0.263686;-1.640101;-0.089354;, - -0.048841;-1.640101;-0.089354;, - -0.005182;-1.361437;-0.233249;, - 0.220027;-1.361437;-0.233249;, - 0.263686;-2.092197;-0.388032;, - 0.263686;-2.082525;-0.075655;, - 0.263686;-1.640101;-0.089354;, - 0.263686;-1.649773;-0.401731;, - 0.263686;-2.082525;-0.075655;, - -0.048841;-2.082525;-0.075655;, - -0.048841;-1.640101;-0.089354;, - 0.263686;-1.640101;-0.089354;, - -1.032929; 1.496758;-3.168478;, - -1.032929; 1.849385;-3.168478;, - -1.139218; 1.982406;-1.484576;, - -1.139218; 1.363736;-1.484576;, - 1.045648; 1.496758;-3.168478;, - 1.045648; 1.849385;-3.168478;, - 0.553646; 1.849385;-3.168478;, - 0.553646; 1.496758;-3.168478;, - -0.048841;-2.092197;-0.388032;, - 0.263686;-2.092197;-0.388032;, - 0.263686;-1.649773;-0.401731;, - -0.048841;-1.649773;-0.401731;, - 0.553646; 1.496758;-3.168478;, - 0.553646; 1.849385;-3.168478;, - 0.435254; 1.982406;-1.484576;, - 0.435254; 1.363736;-1.484576;, - -0.048841;-2.082525;-0.075655;, - -0.048841;-2.092197;-0.388032;, - -0.048841;-1.649773;-0.401731;, - -0.048841;-1.640101;-0.089354;, - 0.435254; 1.363736;-1.484576;, - 0.435254; 1.982406;-1.484576;, - 1.164040; 1.982406;-1.484576;, - 1.164040; 1.363736;-1.484576;, - 0.553646; 1.849385;-3.168478;, - 1.045648; 1.849385;-3.168478;, - 1.164040; 1.982406;-1.484576;, - 0.435254; 1.982406;-1.484576;, - -0.591223; 1.496758;-3.168478;, - -0.591223; 1.849385;-3.168478;, - -1.032929; 1.849385;-3.168478;, - -1.032929; 1.496758;-3.168478;, - 1.045648; 1.496758;-3.168478;, - 0.553646; 1.496758;-3.168478;, - 0.435254; 1.363736;-1.484576;, - 1.164040; 1.363736;-1.484576;, - 1.045648; 1.849385;-3.168478;, - 1.045648; 1.496758;-3.168478;, - 1.164040; 1.363736;-1.484576;, - 1.164040; 1.982406;-1.484576;, - -1.139218; 1.363736;-1.484576;, - -1.139218; 1.982406;-1.484576;, - -0.484934; 1.982406;-1.484576;, - -0.484934; 1.363736;-1.484576;, - -1.032929; 1.849385;-3.168478;, - -0.591223; 1.849385;-3.168478;, - -0.484934; 1.982406;-1.484576;, - -1.139218; 1.982406;-1.484576;, - -0.591223; 1.496758;-3.168478;, - -1.032929; 1.496758;-3.168478;, - -1.139218; 1.363736;-1.484576;, - -0.484934; 1.363736;-1.484576;, - -0.591223; 1.849385;-3.168478;, - -0.591223; 1.496758;-3.168478;, - -0.484934; 1.363736;-1.484576;, - -0.484934; 1.982406;-1.484576;, - -1.032929;-1.614760;-3.168478;, - -1.032929;-1.262132;-3.168478;, - -1.139218;-1.129111;-1.484576;, - -1.139218;-1.747781;-1.484576;, - -0.591223;-1.614760;-3.168478;, - -0.591223;-1.262132;-3.168478;, - -1.032929;-1.262132;-3.168478;, - -1.032929;-1.614760;-3.168478;, - -1.139218;-1.747781;-1.484576;, - -1.139218;-1.129111;-1.484576;, - -0.484934;-1.129111;-1.484576;, - -0.484934;-1.747781;-1.484576;, - -1.032929;-1.262132;-3.168478;, - -0.591223;-1.262132;-3.168478;, - -0.484934;-1.129111;-1.484576;, - -1.139218;-1.129111;-1.484576;, - -0.591223;-1.614760;-3.168478;, - -1.032929;-1.614760;-3.168478;, - -1.139218;-1.747781;-1.484576;, - -0.484934;-1.747781;-1.484576;, - -0.591223;-1.262132;-3.168478;, - -0.591223;-1.614760;-3.168478;, - -0.484934;-1.747781;-1.484576;, - -0.484934;-1.129111;-1.484576;, - 0.610107;-1.578270;-3.168478;, - 0.610107;-1.225643;-3.168478;, - 0.491715;-1.092621;-1.484576;, - 0.491715;-1.711292;-1.484576;, - 1.102109;-1.578270;-3.168478;, - 1.102109;-1.225643;-3.168478;, - 0.610107;-1.225643;-3.168478;, - 0.610107;-1.578270;-3.168478;, - 0.491715;-1.711292;-1.484576;, - 0.491715;-1.092621;-1.484576;, - 1.220501;-1.092621;-1.484576;, - 1.220501;-1.711292;-1.484576;, - 0.610107;-1.225643;-3.168478;, - 1.102109;-1.225643;-3.168478;, - 1.220501;-1.092621;-1.484576;, - 0.491715;-1.092621;-1.484576;, - 1.102109;-1.578270;-3.168478;, - 0.610107;-1.578270;-3.168478;, - 0.491715;-1.711292;-1.484576;, - 1.220501;-1.711292;-1.484576;, - 1.102109;-1.225643;-3.168478;, - 1.102109;-1.578270;-3.168478;, - 1.220501;-1.711292;-1.484576;, - 1.220501;-1.092621;-1.484576;, - -0.254405; 3.833649;-1.076399;, - -0.254405; 4.312441;-1.076399;, - -0.254405; 4.312441;-1.023467;, - -0.254405; 3.833649;-1.023467;, - -0.254405; 4.312441;-1.076399;, - 0.411050; 4.312441;-1.076399;, - 0.411050; 4.312441;-1.023467;, - -0.254405; 4.312441;-1.023467;, - 0.411050; 4.312441;-1.076399;, - 0.411050; 3.833649;-1.076399;, - 0.411050; 3.833649;-1.023467;, - 0.411050; 4.312441;-1.023467;, - 0.411050; 3.833649;-1.076399;, - -0.254405; 3.833649;-1.076399;, - -0.254405; 3.833649;-1.023467;, - 0.411050; 3.833649;-1.023467;, - 0.411050; 3.833649;-1.076399;, - 0.411050; 4.312441;-1.076399;, - -0.254405; 4.312441;-1.076399;, - -0.254405; 3.833649;-1.076399;, - -0.254405; 3.833649;-1.023467;, - -0.254405; 4.312441;-1.023467;, - 0.411050; 4.312441;-1.023467;, - 0.411050; 3.833649;-1.023467;; - 86; - 4;0;1;2;3;, - 4;4;5;6;7;, - 4;8;9;10;11;, - 4;12;13;14;15;, - 4;16;17;18;19;, - 4;20;21;22;23;, - 4;24;25;26;27;, - 4;28;29;30;31;, - 4;32;33;34;35;, - 4;36;37;38;39;, - 4;40;41;42;43;, - 4;44;45;46;47;, - 4;48;49;50;51;, - 4;52;53;54;55;, - 4;56;57;58;59;, - 4;60;61;62;63;, - 4;64;65;66;67;, - 4;68;69;70;71;, - 4;72;73;74;75;, - 4;76;77;78;79;, - 4;80;81;82;83;, - 4;84;85;86;87;, - 4;88;89;90;91;, - 4;92;93;94;95;, - 4;96;97;98;99;, - 4;100;101;102;103;, - 4;104;105;106;107;, - 4;108;109;110;111;, - 4;112;113;114;115;, - 4;116;117;118;119;, - 4;120;121;122;123;, - 4;124;125;126;127;, - 4;128;129;130;131;, - 4;132;133;134;135;, - 4;136;137;138;139;, - 4;140;141;142;143;, - 4;144;145;146;147;, - 4;148;149;150;151;, - 4;152;153;154;155;, - 4;156;157;158;159;, - 4;160;161;162;163;, - 4;164;165;166;167;, - 4;168;169;170;171;, - 4;172;173;174;175;, - 4;176;177;178;179;, - 4;180;181;182;183;, - 4;184;185;186;187;, - 4;188;189;190;191;, - 4;192;193;194;195;, - 4;196;197;198;199;, - 4;200;201;202;203;, - 4;204;205;206;207;, - 4;208;209;210;211;, - 4;212;213;214;215;, - 4;216;217;218;219;, - 4;220;221;222;223;, - 4;224;225;226;227;, - 4;228;229;230;231;, - 4;232;233;234;235;, - 4;236;237;238;239;, - 4;240;241;242;243;, - 4;244;245;246;247;, - 4;248;249;250;251;, - 4;252;253;254;255;, - 4;256;257;258;259;, - 4;260;261;262;263;, - 4;264;265;266;267;, - 4;268;269;270;271;, - 4;272;273;274;275;, - 4;276;277;278;279;, - 4;280;281;282;283;, - 4;284;285;286;287;, - 4;288;289;290;291;, - 4;292;293;294;295;, - 4;296;297;298;299;, - 4;300;301;302;303;, - 4;304;305;306;307;, - 4;308;309;310;311;, - 4;312;313;314;315;, - 4;316;317;318;319;, - 4;320;321;322;323;, - 4;324;325;326;327;, - 4;328;329;330;331;, - 4;332;333;334;335;, - 4;336;337;338;339;, - 4;340;341;342;343;; - MeshNormals { //Mesh Normals - 344; - -0.940353; 0.340201;-0.000000;, - -0.940353; 0.340201;-0.000000;, - -0.940353; 0.340201;-0.000000;, - -0.940353; 0.340201;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.979128;-0.203247;-0.000000;, - 0.979128;-0.203247;-0.000000;, - 0.979128;-0.203247;-0.000000;, - 0.979128;-0.203247;-0.000000;, - -0.009281;-0.999957; 0.000000;, - -0.009281;-0.999957; 0.000000;, - -0.009281;-0.999957; 0.000000;, - -0.009281;-0.999957; 0.000000;, - -0.000000; 0.054094;-0.998536;, - -0.000000; 0.054094;-0.998536;, - -0.000000; 0.054094;-0.998536;, - -0.000000; 0.054094;-0.998536;, - 0.000000; 0.054094; 0.998536;, - 0.000000; 0.054094; 0.998536;, - 0.000000; 0.054094; 0.998536;, - 0.000000; 0.054094; 0.998536;, - -0.976825;-0.214038; 0.000000;, - -0.976825;-0.214038; 0.000000;, - -0.976825;-0.214038; 0.000000;, - -0.976825;-0.214038; 0.000000;, - 0.940353; 0.340201; 0.000000;, - 0.940353; 0.340201; 0.000000;, - 0.940353; 0.340201; 0.000000;, - 0.940353; 0.340201; 0.000000;, - -0.000461;-0.117750;-0.993043;, - -0.000461;-0.117750;-0.993043;, - -0.000461;-0.117750;-0.993043;, - -0.000461;-0.117750;-0.993043;, - -0.000821;-0.209633; 0.977780;, - -0.000821;-0.209633; 0.977780;, - -0.000821;-0.209633; 0.977780;, - -0.000821;-0.209633; 0.977780;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.999999; 0.001176;, - 0.000000; 0.999999; 0.001176;, - 0.000000; 0.999999; 0.001176;, - 0.000000; 0.999999; 0.001176;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-0.999999;-0.001176;, - 0.000000;-0.999999;-0.001176;, - 0.000000;-0.999999;-0.001176;, - 0.000000;-0.999999;-0.001176;, - 0.000000; 0.001176;-0.999999;, - 0.000000; 0.001176;-0.999999;, - 0.000000; 0.001176;-0.999999;, - 0.000000; 0.001176;-0.999999;, - 0.000000;-0.001176; 0.999999;, - 0.000000;-0.001176; 0.999999;, - 0.000000;-0.001176; 0.999999;, - 0.000000;-0.001176; 0.999999;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.139591;-0.990209;, - 0.000000; 0.139591;-0.990209;, - 0.000000; 0.139591;-0.990209;, - 0.000000; 0.139591;-0.990209;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000; 0.519795; 0.854291;, - 0.000000; 0.519795; 0.854291;, - 0.000000; 0.519795; 0.854291;, - 0.000000; 0.519795; 0.854291;, - 0.914843; 0.403810; 0.000000;, - 0.914843; 0.403810; 0.000000;, - 0.914843; 0.403810; 0.000000;, - 0.914843; 0.403810; 0.000000;, - -0.914843; 0.403810; 0.000000;, - -0.914843; 0.403810; 0.000000;, - -0.914843; 0.403810; 0.000000;, - -0.914843; 0.403810; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - 1.000000; 0.000000; 0.000000;, - -0.844688; 0.000000; 0.535259;, - -0.844688; 0.000000; 0.535259;, - -0.844688; 0.000000; 0.535259;, - -0.844688; 0.000000; 0.535259;, - -0.072617; 0.996411; 0.043499;, - -0.072617; 0.996411; 0.043499;, - -0.072617; 0.996411; 0.043499;, - -0.072617; 0.996411; 0.043499;, - 0.872228; 0.000000;-0.489100;, - 0.872228; 0.000000;-0.489100;, - 0.872228; 0.000000;-0.489100;, - 0.872228; 0.000000;-0.489100;, - 0.072618;-0.996411;-0.043499;, - 0.072618;-0.996411;-0.043499;, - 0.072618;-0.996411;-0.043499;, - 0.072618;-0.996411;-0.043499;, - -0.401684; 0.000000;-0.915778;, - -0.401684; 0.000000;-0.915778;, - -0.401684; 0.000000;-0.915778;, - -0.401684; 0.000000;-0.915778;, - 0.541303; 0.000000; 0.840828;, - 0.541303; 0.000000; 0.840828;, - 0.541303; 0.000000; 0.840828;, - 0.541303; 0.000000; 0.840828;, - -0.843066; 0.000000;-0.537810;, - -0.843066; 0.000000;-0.537810;, - -0.843066; 0.000000;-0.537810;, - -0.843066; 0.000000;-0.537810;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.861461; 0.000000; 0.507823;, - 0.861461; 0.000000; 0.507823;, - 0.861461; 0.000000; 0.507823;, - 0.861461; 0.000000; 0.507823;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.480951; 0.000000;-0.876748;, - 0.480951; 0.000000;-0.876748;, - 0.480951; 0.000000;-0.876748;, - 0.480951; 0.000000;-0.876748;, - -0.580522; 0.000000; 0.814245;, - -0.580522; 0.000000; 0.814245;, - -0.580522; 0.000000; 0.814245;, - -0.580522; 0.000000; 0.814245;, - -0.973941;-0.226692; 0.007019;, - -0.973941;-0.226692; 0.007019;, - -0.973941;-0.226692; 0.007019;, - -0.973941;-0.226692; 0.007019;, - 0.000000;-0.226661;-0.973974;, - 0.000000;-0.226661;-0.973974;, - 0.000000;-0.226661;-0.973974;, - 0.000000;-0.226661;-0.973974;, - 0.973941;-0.226692; 0.007019;, - 0.973941;-0.226692; 0.007019;, - 0.973941;-0.226692; 0.007019;, - 0.973941;-0.226692; 0.007019;, - 0.000000;-0.165974; 0.986130;, - 0.000000;-0.165974; 0.986130;, - 0.000000;-0.165974; 0.986130;, - 0.000000;-0.165974; 0.986130;, - 0.000000;-0.999521; 0.030947;, - 0.000000;-0.999521; 0.030947;, - 0.000000;-0.999521; 0.030947;, - 0.000000;-0.999521; 0.030947;, - 0.000000; 0.999521;-0.030947;, - 0.000000; 0.999521;-0.030947;, - 0.000000; 0.999521;-0.030947;, - 0.000000; 0.999521;-0.030947;, - -0.988307; 0.152404;-0.004719;, - -0.988307; 0.152404;-0.004719;, - -0.988307; 0.152404;-0.004719;, - -0.988307; 0.152404;-0.004719;, - 0.000000; 0.058044;-0.998314;, - 0.000000; 0.058044;-0.998314;, - 0.000000; 0.058044;-0.998314;, - 0.000000; 0.058044;-0.998314;, - 0.988307; 0.152404;-0.004719;, - 0.988307; 0.152404;-0.004719;, - 0.988307; 0.152404;-0.004719;, - 0.988307; 0.152404;-0.004719;, - 0.000000; 0.458817; 0.888531;, - 0.000000; 0.458817; 0.888531;, - 0.000000; 0.458817; 0.888531;, - 0.000000; 0.458817; 0.888531;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 1.000000;-0.000000; 0.000000;, - 0.000000; 0.030947; 0.999521;, - 0.000000; 0.030947; 0.999521;, - 0.000000; 0.030947; 0.999521;, - 0.000000; 0.030947; 0.999521;, - -0.998014; 0.000000;-0.062995;, - -0.998014; 0.000000;-0.062995;, - -0.998014; 0.000000;-0.062995;, - -0.998014; 0.000000;-0.062995;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000;-0.030947;-0.999521;, - 0.000000;-0.030947;-0.999521;, - 0.000000;-0.030947;-0.999521;, - 0.000000;-0.030947;-0.999521;, - -0.997537; 0.000000;-0.070135;, - -0.997537; 0.000000;-0.070135;, - -0.997537; 0.000000;-0.070135;, - -0.997537; 0.000000;-0.070135;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.997537; 0.000000;-0.070135;, - 0.997537; 0.000000;-0.070135;, - 0.997537; 0.000000;-0.070135;, - 0.997537; 0.000000;-0.070135;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.998014; 0.000000;-0.062995;, - 0.998014; 0.000000;-0.062995;, - 0.998014; 0.000000;-0.062995;, - 0.998014; 0.000000;-0.062995;, - -0.998014; 0.000000;-0.062995;, - -0.998014; 0.000000;-0.062995;, - -0.998014; 0.000000;-0.062995;, - -0.998014; 0.000000;-0.062995;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.998014; 0.000000;-0.062995;, - 0.998014; 0.000000;-0.062995;, - 0.998014; 0.000000;-0.062995;, - 0.998014; 0.000000;-0.062995;, - -0.997537; 0.000000;-0.070135;, - -0.997537; 0.000000;-0.070135;, - -0.997537; 0.000000;-0.070135;, - -0.997537; 0.000000;-0.070135;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.997537; 0.000000;-0.070135;, - 0.997537; 0.000000;-0.070135;, - 0.997537; 0.000000;-0.070135;, - 0.997537; 0.000000;-0.070135;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;; - 86; - 4;0;1;2;3;, - 4;4;5;6;7;, - 4;8;9;10;11;, - 4;12;13;14;15;, - 4;16;17;18;19;, - 4;20;21;22;23;, - 4;24;25;26;27;, - 4;28;29;30;31;, - 4;32;33;34;35;, - 4;36;37;38;39;, - 4;40;41;42;43;, - 4;44;45;46;47;, - 4;48;49;50;51;, - 4;52;53;54;55;, - 4;56;57;58;59;, - 4;60;61;62;63;, - 4;64;65;66;67;, - 4;68;69;70;71;, - 4;72;73;74;75;, - 4;76;77;78;79;, - 4;80;81;82;83;, - 4;84;85;86;87;, - 4;88;89;90;91;, - 4;92;93;94;95;, - 4;96;97;98;99;, - 4;100;101;102;103;, - 4;104;105;106;107;, - 4;108;109;110;111;, - 4;112;113;114;115;, - 4;116;117;118;119;, - 4;120;121;122;123;, - 4;124;125;126;127;, - 4;128;129;130;131;, - 4;132;133;134;135;, - 4;136;137;138;139;, - 4;140;141;142;143;, - 4;144;145;146;147;, - 4;148;149;150;151;, - 4;152;153;154;155;, - 4;156;157;158;159;, - 4;160;161;162;163;, - 4;164;165;166;167;, - 4;168;169;170;171;, - 4;172;173;174;175;, - 4;176;177;178;179;, - 4;180;181;182;183;, - 4;184;185;186;187;, - 4;188;189;190;191;, - 4;192;193;194;195;, - 4;196;197;198;199;, - 4;200;201;202;203;, - 4;204;205;206;207;, - 4;208;209;210;211;, - 4;212;213;214;215;, - 4;216;217;218;219;, - 4;220;221;222;223;, - 4;224;225;226;227;, - 4;228;229;230;231;, - 4;232;233;234;235;, - 4;236;237;238;239;, - 4;240;241;242;243;, - 4;244;245;246;247;, - 4;248;249;250;251;, - 4;252;253;254;255;, - 4;256;257;258;259;, - 4;260;261;262;263;, - 4;264;265;266;267;, - 4;268;269;270;271;, - 4;272;273;274;275;, - 4;276;277;278;279;, - 4;280;281;282;283;, - 4;284;285;286;287;, - 4;288;289;290;291;, - 4;292;293;294;295;, - 4;296;297;298;299;, - 4;300;301;302;303;, - 4;304;305;306;307;, - 4;308;309;310;311;, - 4;312;313;314;315;, - 4;316;317;318;319;, - 4;320;321;322;323;, - 4;324;325;326;327;, - 4;328;329;330;331;, - 4;332;333;334;335;, - 4;336;337;338;339;, - 4;340;341;342;343;; - } //End of Mesh Normals - MeshMaterialList { //Mesh Material List - 1; - 1; - 0;; - Material Default_Material { - 0.800000; 0.800000; 0.800000; 0.800000;; - 96.078431; - 0.500000; 0.500000; 0.500000;; - 0.000000; 0.000000; 0.000000;; - } - } //End of Mesh Material List - MeshTextureCoords { //Mesh UV Coordinates - 344; - 0.444664; 0.882740;, - 0.453010; 0.994603;, - 0.352139; 0.990704;, - 0.370352; 0.882084;, - 0.699615; 0.826957;, - 0.888198; 0.826957;, - 0.888198; 0.999617;, - 0.699615; 0.999617;, - 0.566940; 0.877116;, - 0.559308; 0.768256;, - 0.664340; 0.764336;, - 0.671138; 0.868138;, - 0.999617; 0.397190;, - 0.811034; 0.397190;, - 0.811034; 0.271762;, - 0.999617; 0.271762;, - 0.566940; 0.877116;, - 0.565483; 0.991269;, - 0.453010; 0.994603;, - 0.444664; 0.882740;, - 0.370352; 0.882084;, - 0.352139; 0.990704;, - 0.243744; 0.976452;, - 0.255729; 0.872295;, - 0.447331; 0.770867;, - 0.444664; 0.882740;, - 0.370352; 0.882084;, - 0.373731; 0.773298;, - 0.565483; 0.991269;, - 0.566940; 0.877116;, - 0.671138; 0.868138;, - 0.670488; 0.977139;, - 0.559308; 0.768256;, - 0.566940; 0.877116;, - 0.444664; 0.882740;, - 0.447331; 0.770867;, - 0.373731; 0.773298;, - 0.370352; 0.882084;, - 0.255729; 0.872295;, - 0.261819; 0.766836;, - 0.694945; 0.168323;, - 0.694945; 0.057246;, - 0.784866; 0.057246;, - 0.784866; 0.168323;, - 0.978885; 0.802852;, - 0.978885; 0.908930;, - 0.888965; 0.908930;, - 0.888965; 0.802852;, - 0.980864; 0.057246;, - 0.980864; 0.168323;, - 0.890944; 0.168323;, - 0.890944; 0.057246;, - 0.995043; 0.999617;, - 0.888965; 0.999617;, - 0.888965; 0.909696;, - 0.995043; 0.909696;, - 0.588867; 0.168323;, - 0.588867; 0.057246;, - 0.694945; 0.057246;, - 0.694945; 0.168323;, - 0.784866; 0.168323;, - 0.784866; 0.057246;, - 0.890944; 0.057246;, - 0.890944; 0.168323;, - 0.581893; 0.381313;, - 0.525981; 0.490259;, - 0.379618; 0.402841;, - 0.398054; 0.301018;, - 0.815523; 0.662938;, - 0.815524; 0.728486;, - 0.769623; 0.748548;, - 0.769623; 0.642876;, - 0.048873; 0.480128;, - 0.006488; 0.386718;, - 0.167529; 0.313647;, - 0.194276; 0.403737;, - 0.988636; 0.730470;, - 0.896211; 0.730470;, - 0.896211; 0.660198;, - 0.988636; 0.660198;, - 0.723019; 0.642876;, - 0.769623; 0.642876;, - 0.769623; 0.748548;, - 0.723019; 0.748548;, - 0.398054; 0.301018;, - 0.379618; 0.402841;, - 0.194276; 0.403737;, - 0.167529; 0.313647;, - 0.877077; 0.662938;, - 0.877077; 0.728486;, - 0.815524; 0.728486;, - 0.815523; 0.662938;, - 0.357048; 0.517540;, - 0.216152; 0.507657;, - 0.194276; 0.403737;, - 0.379618; 0.402841;, - 0.216152; 0.507657;, - 0.120216; 0.568830;, - 0.048873; 0.480128;, - 0.194276; 0.403737;, - 0.379618; 0.402841;, - 0.525981; 0.490259;, - 0.444034; 0.577428;, - 0.357048; 0.517540;, - 0.362490; 0.686881;, - 0.215162; 0.682739;, - 0.251936; 0.612341;, - 0.315469; 0.601729;, - 0.357048; 0.517540;, - 0.444034; 0.577428;, - 0.362490; 0.686881;, - 0.315469; 0.601729;, - 0.315469; 0.601729;, - 0.251936; 0.612341;, - 0.216152; 0.507657;, - 0.357048; 0.517540;, - 0.251936; 0.612341;, - 0.215162; 0.682739;, - 0.120216; 0.568830;, - 0.216152; 0.507657;, - 0.882221; 0.248633;, - 0.854668; 0.246226;, - 0.860426; 0.180315;, - 0.887978; 0.182722;, - 0.854668; 0.246226;, - 0.811034; 0.225788;, - 0.836391; 0.169090;, - 0.860426; 0.180315;, - 0.955560; 0.229325;, - 0.928738; 0.236069;, - 0.913594; 0.175833;, - 0.940417; 0.169090;, - 0.928738; 0.236069;, - 0.882221; 0.248633;, - 0.887978; 0.182722;, - 0.913594; 0.175833;, - 0.568666; 0.188259;, - 0.570943; 0.215822;, - 0.522758; 0.215822;, - 0.520482; 0.188259;, - 0.557028; 0.187492;, - 0.557028; 0.159835;, - 0.583256; 0.155869;, - 0.583256; 0.183526;, - 0.831256; 0.582510;, - 0.811034; 0.563643;, - 0.853460; 0.518170;, - 0.873682; 0.537037;, - 0.941763; 0.626056;, - 0.893812; 0.623471;, - 0.917809; 0.562573;, - 0.941763; 0.563864;, - 0.893812; 0.623471;, - 0.868081; 0.613331;, - 0.892078; 0.552433;, - 0.917809; 0.562573;, - 0.868081; 0.613331;, - 0.831256; 0.582510;, - 0.873682; 0.537037;, - 0.892078; 0.552433;, - 0.680049; 0.227106;, - 0.680049; 0.254763;, - 0.632028; 0.254763;, - 0.632028; 0.227106;, - 0.631262; 0.227106;, - 0.631262; 0.254763;, - 0.607273; 0.254763;, - 0.607273; 0.227106;, - 0.151813; 0.952191;, - 0.112345; 0.947279;, - 0.113514; 0.904716;, - 0.158003; 0.906790;, - 0.112345; 0.947279;, - 0.077106; 0.948022;, - 0.069721; 0.907057;, - 0.113514; 0.904716;, - 0.077106; 0.948022;, - 0.041465; 0.957980;, - 0.021003; 0.917204;, - 0.069721; 0.907057;, - 0.189475; 0.963315;, - 0.151813; 0.952191;, - 0.158003; 0.906790;, - 0.212875; 0.914749;, - 0.563441; 0.216588;, - 0.563441; 0.263118;, - 0.520482; 0.263118;, - 0.520482; 0.216588;, - 0.758717; 0.826190;, - 0.758717; 0.792862;, - 0.808077; 0.792862;, - 0.808077; 0.826190;, - 0.160570; 0.844684;, - 0.116458; 0.842962;, - 0.117818; 0.795850;, - 0.145830; 0.795143;, - 0.116458; 0.842962;, - 0.069466; 0.841189;, - 0.076449; 0.791324;, - 0.117818; 0.795850;, - 0.069466; 0.841189;, - 0.014746; 0.837740;, - 0.047872; 0.785711;, - 0.076449; 0.791324;, - 0.209296; 0.833892;, - 0.160570; 0.844684;, - 0.145830; 0.795143;, - 0.184389; 0.782622;, - 0.069721; 0.907057;, - 0.021003; 0.917204;, - 0.014746; 0.837740;, - 0.069466; 0.841189;, - 0.212875; 0.914749;, - 0.158003; 0.906790;, - 0.160570; 0.844684;, - 0.209296; 0.833892;, - 0.696701; 0.623144;, - 0.663486; 0.624673;, - 0.640785; 0.404303;, - 0.699058; 0.401620;, - 0.556261; 0.154243;, - 0.556261; 0.187492;, - 0.520482; 0.187492;, - 0.520482; 0.154243;, - 0.113514; 0.904716;, - 0.069721; 0.907057;, - 0.069466; 0.841189;, - 0.116458; 0.842962;, - 0.696269; 0.621054;, - 0.663054; 0.622583;, - 0.640352; 0.402213;, - 0.698626; 0.399530;, - 0.158003; 0.906790;, - 0.113514; 0.904716;, - 0.116458; 0.842962;, - 0.160570; 0.844684;, - 0.621714; 0.314631;, - 0.680049; 0.314631;, - 0.680049; 0.367630;, - 0.621714; 0.367630;, - 0.663054; 0.622583;, - 0.627632; 0.627630;, - 0.587883; 0.409689;, - 0.640352; 0.402213;, - 0.844623; 0.792862;, - 0.844623; 0.826112;, - 0.808843; 0.826112;, - 0.808843; 0.792862;, - 0.732005; 0.622825;, - 0.696269; 0.621054;, - 0.698626; 0.399530;, - 0.751560; 0.402153;, - 0.764905; 0.627630;, - 0.732005; 0.622825;, - 0.751560; 0.402153;, - 0.809283; 0.410584;, - 0.699615; 0.773191;, - 0.757950; 0.773191;, - 0.757950; 0.826190;, - 0.699615; 0.826190;, - 0.663486; 0.624673;, - 0.628065; 0.629720;, - 0.588315; 0.411779;, - 0.640785; 0.404303;, - 0.732437; 0.624915;, - 0.696701; 0.623144;, - 0.699058; 0.401620;, - 0.751992; 0.404243;, - 0.765338; 0.629720;, - 0.732437; 0.624915;, - 0.751992; 0.404243;, - 0.809715; 0.412674;, - 0.697254; 0.619480;, - 0.664039; 0.621009;, - 0.641336; 0.400639;, - 0.699610; 0.397956;, - 0.680049; 0.193089;, - 0.680049; 0.226339;, - 0.644269; 0.226339;, - 0.644269; 0.193089;, - 0.680049; 0.255529;, - 0.680049; 0.313865;, - 0.627050; 0.313865;, - 0.627050; 0.255529;, - 0.664039; 0.621009;, - 0.628617; 0.626056;, - 0.588867; 0.408115;, - 0.641336; 0.400639;, - 0.732989; 0.621251;, - 0.697254; 0.619480;, - 0.699610; 0.397956;, - 0.752544; 0.400579;, - 0.765890; 0.626056;, - 0.732989; 0.621251;, - 0.752544; 0.400579;, - 0.810267; 0.409010;, - 0.697253; 0.620613;, - 0.664039; 0.622143;, - 0.641336; 0.401773;, - 0.699610; 0.399090;, - 0.643503; 0.193089;, - 0.643503; 0.226339;, - 0.607723; 0.226339;, - 0.607723; 0.193089;, - 0.573481; 0.263885;, - 0.573481; 0.322220;, - 0.520482; 0.322220;, - 0.520482; 0.263885;, - 0.664039; 0.622143;, - 0.628617; 0.627190;, - 0.588867; 0.409249;, - 0.641336; 0.401773;, - 0.732989; 0.622384;, - 0.697253; 0.620613;, - 0.699610; 0.399090;, - 0.752544; 0.401713;, - 0.765890; 0.627190;, - 0.732989; 0.622384;, - 0.752544; 0.401713;, - 0.810267; 0.410144;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;; - } //End of Mesh UV Coordinates - XSkinMeshHeader { - 1; - 3; - 9; - } - SkinWeights { - "Armature_noga3"; - 24; - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -1.404690,-1.429884,-0.863645, 1.000000;; - } //End of Armature_noga3 Skin Weights - SkinWeights { - "Armature_hvost"; - 56; - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 224, - 225, - 226, - 227, - 232, - 233, - 234, - 235; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.997830,-0.065809,-0.002036, 0.000000, - -0.065657,-0.996882, 0.043768, 0.000000, - -0.004910,-0.043540,-0.999040, 0.000000, - -0.254768,-1.653337,-0.164220, 1.000000;; - } //End of Armature_hvost Skin Weights - SkinWeights { - "Armature_noga2"; - 24; - 216, - 217, - 218, - 219, - 244, - 245, - 246, - 247, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - 1.641199,-1.448169, 0.799194, 1.000000;; - } //End of Armature_noga2 Skin Weights - SkinWeights { - "Armature_noga4"; - 24; - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000,-0.000000, 0.000000, 0.000000, - 0.000000,-1.000000,-0.000000, 0.000000, - -1.404690,-1.430863, 0.818165, 1.000000;; - } //End of Armature_noga4 Skin Weights - SkinWeights { - "Armature_sheya"; - 24; - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.997121,-0.075824,-0.000243, 0.000000, - 0.075644, 0.994519, 0.072177, 0.000000, - -0.005231,-0.071988, 0.997392, 0.000000, - -0.173907,-1.761969, 0.426978, 1.000000;; - } //End of Armature_sheya Skin Weights - SkinWeights { - "Armature_head"; - 104; - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000, 0.000000, 0.000000, 0.000000, - -0.000000, 0.998694, 0.051097, 0.000000, - -0.000000,-0.051097, 0.998694, 0.000000, - -0.039910,-2.666016, 0.453234, 1.000000;; - } //End of Armature_head Skin Weights - SkinWeights { - "Armature_Body"; - 40; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.996529,-0.083252, 0.000000, - 0.000000, 0.083252, 0.996529, 0.000000, - -0.039910, 1.507776, 0.102992, 1.000000;; - } //End of Armature_Body Skin Weights - SkinWeights { - "Armature_noga1"; - 24; - 220, - 221, - 222, - 223, - 228, - 229, - 230, - 231, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - 1.641199,-1.466174,-0.792458, 1.000000;; - } //End of Armature_noga1 Skin Weights - SkinWeights { - "Armature_zubi"; - 24; - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000,-0.000000, 0.000000, 0.000000, - -0.000000, 0.999497, 0.031712, 0.000000, - -0.000000,-0.031712, 0.999497, 0.000000, - -0.095553,-3.544336, 0.911962, 1.000000;; - } //End of Armature_zubi Skin Weights - } //End of Mesh Mesh - } //End of Cube -} //End of Root Frame -AnimationSet { - Animation { - {Armature} - AnimationKey { //Position - 2; - 136; - 0;3; -16.930458, 0.174942, 0.066300;;, - 1;3; -16.930458, 0.174942, 0.066300;;, - 2;3; -16.930458, 0.174942, 0.066300;;, - 3;3; -16.930458, 0.174942, 0.066300;;, - 4;3; -16.930458, 0.174942, 0.066300;;, - 5;3; -16.930458, 0.174942, 0.066300;;, - 6;3; -16.930458, 0.174942, 0.066300;;, - 7;3; -16.930458, 0.174942, 0.066300;;, - 8;3; -16.930458, 0.174942, 0.066300;;, - 9;3; -16.930458, 0.174942, 0.066300;;, - 10;3; -16.930458, 0.174942, 0.066300;;, - 11;3; -16.930458, 0.174942, 0.066300;;, - 12;3; -16.930458, 0.174942, 0.066300;;, - 13;3; -16.930458, 0.174942, 0.066300;;, - 14;3; -16.930458, 0.174942, 0.066300;;, - 15;3; -16.930458, 0.174942, 0.066300;;, - 16;3; -16.930458, 0.174942, 0.066300;;, - 17;3; -16.930458, 0.174942, 0.066300;;, - 18;3; -16.930458, 0.174942, 0.066300;;, - 19;3; -16.930458, 0.174942, 0.066300;;, - 20;3; -16.930458, 0.174942, 0.066300;;, - 21;3; -16.930458, 0.174942, 0.066300;;, - 22;3; -16.930458, 0.174942, 0.066300;;, - 23;3; -16.930458, 0.174942, 0.066300;;, - 24;3; -16.930458, 0.174942, 0.066300;;, - 25;3; -16.930458, 0.174942, 0.066300;;, - 26;3; -16.930458, 0.174942, 0.066300;;, - 27;3; -16.930458, 0.174942, 0.066300;;, - 28;3; -16.930458, 0.174942, 0.066300;;, - 29;3; -16.930458, 0.174942, 0.066300;;, - 30;3; -16.930458, 0.174942, 0.066300;;, - 31;3; -16.930458, 0.174942, 0.066300;;, - 32;3; -16.930458, 0.174942, 0.066300;;, - 33;3; -16.930458, 0.174942, 0.066300;;, - 34;3; -16.930458, 0.174942, 0.066300;;, - 35;3; -16.930458, 0.174942, 0.066300;;, - 36;3; -16.930458, 0.174942, 0.066300;;, - 37;3; -16.930458, 0.174942, 0.066300;;, - 38;3; -16.930458, 0.174942, 0.066300;;, - 39;3; -16.930458, 0.174942, 0.066300;;, - 40;3; -16.930458, 0.174942, 0.066300;;, - 41;3; -16.930458, 0.174942, 0.066300;;, - 42;3; -16.930458, 0.174942, 0.066300;;, - 43;3; -16.930458, 0.174942, 0.066300;;, - 44;3; -16.930458, 0.174942, 0.066300;;, - 45;3; -16.930458, 0.174942, 0.066300;;, - 46;3; -16.930458, 0.174942, 0.066300;;, - 47;3; -16.930458, 0.174942, 0.066300;;, - 48;3; -16.930458, 0.174942, 0.066300;;, - 49;3; -16.930458, 0.174942, 0.066300;;, - 50;3; -16.930458, 0.174942, 0.066300;;, - 51;3; -16.930458, 0.174942, 0.066300;;, - 52;3; -16.930458, 0.174942, 0.066300;;, - 53;3; -16.930458, 0.174942, 0.066300;;, - 54;3; -16.930458, 0.174942, 0.066300;;, - 55;3; -16.930458, 0.174942, 0.066300;;, - 56;3; -16.930458, 0.174942, 0.066300;;, - 57;3; -16.930458, 0.174942, 0.066300;;, - 58;3; -16.930458, 0.174942, 0.066300;;, - 59;3; -16.930458, 0.174942, 0.066300;;, - 60;3; -16.930458, 0.174942, 0.066300;;, - 61;3; -16.930458, 0.174942, 0.066300;;, - 62;3; -16.930458, 0.174942, 0.066300;;, - 63;3; -16.930458, 0.174942, 0.066300;;, - 64;3; -16.930458, 0.174942, 0.066300;;, - 65;3; -16.930458, 0.174942, 0.066300;;, - 66;3; -16.930458, 0.174942, 0.066300;;, - 67;3; -16.930458, 0.174942, 0.066300;;, - 68;3; -16.930458, 0.174942, 0.066300;;, - 69;3; -16.930458, 0.174942, 0.066300;;, - 70;3; -16.930458, 0.174942, 0.066300;;, - 71;3; -16.930458, 0.174942, 0.066300;;, - 72;3; -16.930458, 0.174942, 0.066300;;, - 73;3; -16.930458, 0.174942, 0.066300;;, - 74;3; -16.930458, 0.174942, 0.066300;;, - 75;3; -16.930458, 0.174942, 0.066300;;, - 76;3; -16.930458, 0.174942, 0.066300;;, - 77;3; -16.930458, 0.174942, 0.066300;;, - 78;3; -16.930458, 0.174942, 0.066300;;, - 79;3; -16.930458, 0.174942, 0.066300;;, - 80;3; -16.930458, 0.174942, 0.066300;;, - 81;3; -16.930458, 0.174942, 0.066300;;, - 82;3; -16.930458, 0.174942, 0.066300;;, - 83;3; -16.930458, 0.174942, 0.066300;;, - 84;3; -16.930458, 0.174942, 0.066300;;, - 85;3; -16.930458, 0.174942, 0.066300;;, - 86;3; -16.930458, 0.174942, 0.066300;;, - 87;3; -16.930458, 0.174942, 0.066300;;, - 88;3; -16.930458, 0.174942, 0.066300;;, - 89;3; -16.930458, 0.174942, 0.066300;;, - 90;3; -16.930458, 0.174942, 0.066300;;, - 91;3; -16.930458, 0.174942, 0.066300;;, - 92;3; -16.930458, 0.174942, 0.066300;;, - 93;3; -16.930458, 0.174942, 0.066300;;, - 94;3; -16.930458, 0.174942, 0.066300;;, - 95;3; -16.930458, 0.174942, 0.066300;;, - 96;3; -16.930458, 0.174942, 0.066300;;, - 97;3; -16.930458, 0.174942, 0.066300;;, - 98;3; -16.930458, 0.174942, 0.066300;;, - 99;3; -16.930458, 0.174942, 0.066300;;, - 100;3; -16.930458, 0.174942, 0.066300;;, - 101;3; -16.930458, 0.174942, 0.066300;;, - 102;3; -16.930458, 0.174942, 0.066300;;, - 103;3; -16.930458, 0.174942, 0.066300;;, - 104;3; -16.930458, 0.174942, 0.066300;;, - 105;3; -16.930458, 0.174942, 0.066300;;, - 106;3; -16.930458, 0.174942, 0.066300;;, - 107;3; -16.930458, 0.174942, 0.066300;;, - 108;3; -16.930458, 0.174942, 0.066300;;, - 109;3; -16.930458, 0.174942, 0.066300;;, - 110;3; -16.930458, 0.174942, 0.066300;;, - 111;3; -16.930458, 0.174942, 0.066300;;, - 112;3; -16.930458, 0.174942, 0.066300;;, - 113;3; -16.930458, 0.174942, 0.066300;;, - 114;3; -16.930458, 0.174942, 0.066300;;, - 115;3; -16.930458, 0.174942, 0.066300;;, - 116;3; -16.930458, 0.174942, 0.066300;;, - 117;3; -16.930458, 0.174942, 0.066300;;, - 118;3; -16.930458, 0.174942, 0.066300;;, - 119;3; -16.930458, 0.174942, 0.066300;;, - 120;3; -16.930458, 0.174942, 0.066300;;, - 121;3; -16.930458, 0.174942, 0.066300;;, - 122;3; -16.930458, 0.174942, 0.066300;;, - 123;3; -16.930458, 0.174942, 0.066300;;, - 124;3; -16.930458, 0.174942, 0.066300;;, - 125;3; -16.930458, 0.174942, 0.066300;;, - 126;3; -16.930458, 0.174942, 0.066300;;, - 127;3; -16.930458, 0.174942, 0.066300;;, - 128;3; -16.930458, 0.174942, 0.066300;;, - 129;3; -16.930458, 0.174942, 0.066300;;, - 130;3; -16.930458, 0.174942, 0.066300;;, - 131;3; -16.930458, 0.174942, 0.066300;;, - 132;3; -16.930458, 0.174942, 0.066300;;, - 133;3; -16.930458, 0.174942, 0.066300;;, - 134;3; -16.930458, 0.174942, 0.066300;;, - 135;3; -16.930458, 0.174942, 0.066300;;; - } - AnimationKey { //Rotation - 0; - 136; - 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;;; - } - AnimationKey { //Scale - 1; - 136; - 0;3; 3.207477, 3.207477, 3.207477;;, - 1;3; 3.207477, 3.207477, 3.207477;;, - 2;3; 3.207477, 3.207477, 3.207477;;, - 3;3; 3.207477, 3.207477, 3.207477;;, - 4;3; 3.207477, 3.207477, 3.207477;;, - 5;3; 3.207477, 3.207477, 3.207477;;, - 6;3; 3.207477, 3.207477, 3.207477;;, - 7;3; 3.207477, 3.207477, 3.207477;;, - 8;3; 3.207477, 3.207477, 3.207477;;, - 9;3; 3.207477, 3.207477, 3.207477;;, - 10;3; 3.207477, 3.207477, 3.207477;;, - 11;3; 3.207477, 3.207477, 3.207477;;, - 12;3; 3.207477, 3.207477, 3.207477;;, - 13;3; 3.207477, 3.207477, 3.207477;;, - 14;3; 3.207477, 3.207477, 3.207477;;, - 15;3; 3.207477, 3.207477, 3.207477;;, - 16;3; 3.207477, 3.207477, 3.207477;;, - 17;3; 3.207477, 3.207477, 3.207477;;, - 18;3; 3.207477, 3.207477, 3.207477;;, - 19;3; 3.207477, 3.207477, 3.207477;;, - 20;3; 3.207477, 3.207477, 3.207477;;, - 21;3; 3.207477, 3.207477, 3.207477;;, - 22;3; 3.207477, 3.207477, 3.207477;;, - 23;3; 3.207477, 3.207477, 3.207477;;, - 24;3; 3.207477, 3.207477, 3.207477;;, - 25;3; 3.207477, 3.207477, 3.207477;;, - 26;3; 3.207477, 3.207477, 3.207477;;, - 27;3; 3.207477, 3.207477, 3.207477;;, - 28;3; 3.207477, 3.207477, 3.207477;;, - 29;3; 3.207477, 3.207477, 3.207477;;, - 30;3; 3.207477, 3.207477, 3.207477;;, - 31;3; 3.207477, 3.207477, 3.207477;;, - 32;3; 3.207477, 3.207477, 3.207477;;, - 33;3; 3.207477, 3.207477, 3.207477;;, - 34;3; 3.207477, 3.207477, 3.207477;;, - 35;3; 3.207477, 3.207477, 3.207477;;, - 36;3; 3.207477, 3.207477, 3.207477;;, - 37;3; 3.207477, 3.207477, 3.207477;;, - 38;3; 3.207477, 3.207477, 3.207477;;, - 39;3; 3.207477, 3.207477, 3.207477;;, - 40;3; 3.207477, 3.207477, 3.207477;;, - 41;3; 3.207477, 3.207477, 3.207477;;, - 42;3; 3.207477, 3.207477, 3.207477;;, - 43;3; 3.207477, 3.207477, 3.207477;;, - 44;3; 3.207477, 3.207477, 3.207477;;, - 45;3; 3.207477, 3.207477, 3.207477;;, - 46;3; 3.207477, 3.207477, 3.207477;;, - 47;3; 3.207477, 3.207477, 3.207477;;, - 48;3; 3.207477, 3.207477, 3.207477;;, - 49;3; 3.207477, 3.207477, 3.207477;;, - 50;3; 3.207477, 3.207477, 3.207477;;, - 51;3; 3.207477, 3.207477, 3.207477;;, - 52;3; 3.207477, 3.207477, 3.207477;;, - 53;3; 3.207477, 3.207477, 3.207477;;, - 54;3; 3.207477, 3.207477, 3.207477;;, - 55;3; 3.207477, 3.207477, 3.207477;;, - 56;3; 3.207477, 3.207477, 3.207477;;, - 57;3; 3.207477, 3.207477, 3.207477;;, - 58;3; 3.207477, 3.207477, 3.207477;;, - 59;3; 3.207477, 3.207477, 3.207477;;, - 60;3; 3.207477, 3.207477, 3.207477;;, - 61;3; 3.207477, 3.207477, 3.207477;;, - 62;3; 3.207477, 3.207477, 3.207477;;, - 63;3; 3.207477, 3.207477, 3.207477;;, - 64;3; 3.207477, 3.207477, 3.207477;;, - 65;3; 3.207477, 3.207477, 3.207477;;, - 66;3; 3.207477, 3.207477, 3.207477;;, - 67;3; 3.207477, 3.207477, 3.207477;;, - 68;3; 3.207477, 3.207477, 3.207477;;, - 69;3; 3.207477, 3.207477, 3.207477;;, - 70;3; 3.207477, 3.207477, 3.207477;;, - 71;3; 3.207477, 3.207477, 3.207477;;, - 72;3; 3.207477, 3.207477, 3.207477;;, - 73;3; 3.207477, 3.207477, 3.207477;;, - 74;3; 3.207477, 3.207477, 3.207477;;, - 75;3; 3.207477, 3.207477, 3.207477;;, - 76;3; 3.207477, 3.207477, 3.207477;;, - 77;3; 3.207477, 3.207477, 3.207477;;, - 78;3; 3.207477, 3.207477, 3.207477;;, - 79;3; 3.207477, 3.207477, 3.207477;;, - 80;3; 3.207477, 3.207477, 3.207477;;, - 81;3; 3.207477, 3.207477, 3.207477;;, - 82;3; 3.207477, 3.207477, 3.207477;;, - 83;3; 3.207477, 3.207477, 3.207477;;, - 84;3; 3.207477, 3.207477, 3.207477;;, - 85;3; 3.207477, 3.207477, 3.207477;;, - 86;3; 3.207477, 3.207477, 3.207477;;, - 87;3; 3.207477, 3.207477, 3.207477;;, - 88;3; 3.207477, 3.207477, 3.207477;;, - 89;3; 3.207477, 3.207477, 3.207477;;, - 90;3; 3.207477, 3.207477, 3.207477;;, - 91;3; 3.207477, 3.207477, 3.207477;;, - 92;3; 3.207477, 3.207477, 3.207477;;, - 93;3; 3.207477, 3.207477, 3.207477;;, - 94;3; 3.207477, 3.207477, 3.207477;;, - 95;3; 3.207477, 3.207477, 3.207477;;, - 96;3; 3.207477, 3.207477, 3.207477;;, - 97;3; 3.207477, 3.207477, 3.207477;;, - 98;3; 3.207477, 3.207477, 3.207477;;, - 99;3; 3.207477, 3.207477, 3.207477;;, - 100;3; 3.207477, 3.207477, 3.207477;;, - 101;3; 3.207477, 3.207477, 3.207477;;, - 102;3; 3.207477, 3.207477, 3.207477;;, - 103;3; 3.207477, 3.207477, 3.207477;;, - 104;3; 3.207477, 3.207477, 3.207477;;, - 105;3; 3.207477, 3.207477, 3.207477;;, - 106;3; 3.207477, 3.207477, 3.207477;;, - 107;3; 3.207477, 3.207477, 3.207477;;, - 108;3; 3.207477, 3.207477, 3.207477;;, - 109;3; 3.207477, 3.207477, 3.207477;;, - 110;3; 3.207477, 3.207477, 3.207477;;, - 111;3; 3.207477, 3.207477, 3.207477;;, - 112;3; 3.207477, 3.207477, 3.207477;;, - 113;3; 3.207477, 3.207477, 3.207477;;, - 114;3; 3.207477, 3.207477, 3.207477;;, - 115;3; 3.207477, 3.207477, 3.207477;;, - 116;3; 3.207477, 3.207477, 3.207477;;, - 117;3; 3.207477, 3.207477, 3.207477;;, - 118;3; 3.207477, 3.207477, 3.207477;;, - 119;3; 3.207477, 3.207477, 3.207477;;, - 120;3; 3.207477, 3.207477, 3.207477;;, - 121;3; 3.207477, 3.207477, 3.207477;;, - 122;3; 3.207477, 3.207477, 3.207477;;, - 123;3; 3.207477, 3.207477, 3.207477;;, - 124;3; 3.207477, 3.207477, 3.207477;;, - 125;3; 3.207477, 3.207477, 3.207477;;, - 126;3; 3.207477, 3.207477, 3.207477;;, - 127;3; 3.207477, 3.207477, 3.207477;;, - 128;3; 3.207477, 3.207477, 3.207477;;, - 129;3; 3.207477, 3.207477, 3.207477;;, - 130;3; 3.207477, 3.207477, 3.207477;;, - 131;3; 3.207477, 3.207477, 3.207477;;, - 132;3; 3.207477, 3.207477, 3.207477;;, - 133;3; 3.207477, 3.207477, 3.207477;;, - 134;3; 3.207477, 3.207477, 3.207477;;, - 135;3; 3.207477, 3.207477, 3.207477;;; - } - } - Animation { - {Armature_Body} - AnimationKey { //Position - 2; - 136; - 0;3; 5.378092,-1.647068, 2.876912;;, - 1;3; 5.378092,-1.647068, 2.876912;;, - 2;3; 5.378092,-1.646686, 2.801787;;, - 3;3; 5.378092,-1.645919, 2.580982;;, - 4;3; 5.378092,-1.645363, 2.234573;;, - 5;3; 5.378092,-1.645406, 1.802940;;, - 6;3; 5.378092,-1.645984, 1.343675;;, - 7;3; 5.378092,-1.646670, 0.919804;;, - 8;3; 5.378092,-1.647071, 0.584943;;, - 9;3; 5.378092,-1.647126, 0.374042;;, - 10;3; 5.378092,-1.647068, 0.302837;;, - 11;3; 5.378092,-1.647068, 0.302837;;, - 12;3; 5.378092,-1.647068, 0.302837;;, - 13;3; 5.378092,-1.647068, 0.302837;;, - 14;3; 5.378092,-1.647068, 0.302837;;, - 15;3; 5.378092,-1.647068, 0.302837;;, - 16;3; 5.378092,-1.647068, 0.302837;;, - 17;3; 5.378092,-1.647068, 0.302837;;, - 18;3; 5.378092,-1.647068, 0.302837;;, - 19;3; 5.378092,-1.647068, 0.302837;;, - 20;3; 5.378092,-1.647068, 0.302837;;, - 21;3; 5.378092,-1.647068, 0.302837;;, - 22;3; 5.378092,-1.647068, 0.302837;;, - 23;3; 5.378092,-1.647068, 0.302837;;, - 24;3; 5.378092,-1.647068, 0.302837;;, - 25;3; 5.378092,-1.647068, 0.302837;;, - 26;3; 5.378092,-1.647068, 0.302837;;, - 27;3; 5.378092,-1.648305, 0.673703;;, - 28;3; 5.378092,-1.647068, 1.589874;;, - 29;3; 5.378092,-1.645832, 2.506046;;, - 30;3; 5.378092,-1.647068, 2.876912;;, - 31;3; 5.378092,-1.647068, 2.876912;;, - 32;3; 5.378092,-1.647068, 2.876912;;, - 33;3; 5.378092,-1.647068, 2.876912;;, - 34;3; 5.378092,-1.647068, 2.876912;;, - 35;3; 5.378092,-1.647068, 2.876912;;, - 36;3; 5.378092,-1.647068, 2.882412;;, - 37;3; 5.378092,-1.647068, 2.898830;;, - 38;3; 5.378092,-1.647068, 2.924675;;, - 39;3; 5.378092,-1.647068, 2.956158;;, - 40;3; 5.378092,-1.647068, 2.987640;;, - 41;3; 5.378092,-1.647068, 3.013484;;, - 42;3; 5.378092,-1.647068, 3.029901;;, - 43;3; 5.378092,-1.647068, 3.035401;;, - 44;3; 5.378092,-1.647068, 3.031038;;, - 45;3; 5.378092,-1.647068, 3.017950;;, - 46;3; 5.378092,-1.647068, 2.996935;;, - 47;3; 5.378092,-1.647068, 2.970201;;, - 48;3; 5.378092,-1.647068, 2.941358;;, - 49;3; 5.378092,-1.647068, 2.914623;;, - 50;3; 5.378092,-1.647068, 2.893608;;, - 51;3; 5.378092,-1.647068, 2.880520;;, - 52;3; 5.378092,-1.647068, 2.876157;;, - 53;3; 5.378092,-1.647068, 2.886195;;, - 54;3; 5.378092,-1.647068, 2.915410;;, - 55;3; 5.378092,-1.647068, 2.957406;;, - 56;3; 5.378092,-1.647068, 2.999403;;, - 57;3; 5.378092,-1.647068, 3.028617;;, - 58;3; 5.378092,-1.647068, 3.038655;;, - 59;3; 5.378092,-1.647068, 3.031317;;, - 60;3; 5.378092,-1.647068, 3.009612;;, - 61;3; 5.378092,-1.647068, 2.976541;;, - 62;3; 5.378092,-1.647069, 2.939030;;, - 63;3; 5.378092,-1.647069, 2.905957;;, - 64;3; 5.378092,-1.647068, 2.884250;;, - 65;3; 5.378092,-1.647068, 2.876912;;, - 66;3; 5.378092,-1.647068, 2.876912;;, - 67;3; 5.378092,-1.647068, 2.876912;;, - 68;3; 5.378092,-1.647068, 2.876912;;, - 69;3; 5.378092,-1.647068, 2.876912;;, - 70;3; 5.378092,-1.647068, 2.876912;;, - 71;3; 5.378092,-1.647042, 2.825212;;, - 72;3; 5.378092,-1.646973, 2.672627;;, - 73;3; 5.378092,-1.646907, 2.440711;;, - 74;3; 5.378092,-1.646898, 2.178037;;, - 75;3; 5.378092,-1.646957, 1.946423;;, - 76;3; 5.378092,-1.647034, 1.794190;;, - 77;3; 5.378092,-1.647068, 1.742638;;, - 78;3; 5.378092,-1.563065, 1.770739;;, - 79;3; 5.378092,-1.319628, 1.850373;;, - 80;3; 5.378092,-0.985174, 1.954349;;, - 81;3; 5.378092,-0.678874, 2.039136;;, - 82;3; 5.378092,-0.487521, 2.076149;;, - 83;3; 5.378092,-0.381837, 2.079479;;, - 84;3; 5.378092,-0.311392, 2.068994;;, - 85;3; 5.378092,-0.272432, 2.047756;;, - 86;3; 5.378092,-0.251056, 2.023187;;, - 87;3; 5.378092,-0.229342, 2.003510;;, - 88;3; 5.378092,-0.194676, 1.993526;;, - 89;3; 5.378092,-0.146664, 1.990258;;, - 90;3; 5.378092,-0.093181, 1.989651;;, - 91;3; 5.378092,-0.044942, 1.991030;;, - 92;3; 5.378092,-0.013653, 1.992786;;, - 93;3; 5.378092,-0.003593, 1.993526;;, - 94;3; 5.378092,-0.078541, 2.033725;;, - 95;3; 5.378092,-0.299365, 2.152420;;, - 96;3; 5.378092,-0.634662, 2.332946;;, - 97;3; 5.378092,-1.014643, 2.537552;;, - 98;3; 5.378092,-1.350450, 2.718056;;, - 99;3; 5.378092,-1.571869, 2.836725;;, - 100;3; 5.378092,-1.647068, 2.876912;;, - 101;3; 5.378092,-1.647068, 2.876912;;, - 102;3; 5.378092,-1.647068, 2.876912;;, - 103;3; 5.378092,-1.647068, 2.876912;;, - 104;3; 5.378092,-1.647068, 2.876912;;, - 105;3; 5.378092,-1.647068, 2.876912;;, - 106;3; 5.378092,-1.647068, 2.882412;;, - 107;3; 5.378092,-1.647068, 2.898830;;, - 108;3; 5.378092,-1.647068, 2.924675;;, - 109;3; 5.378092,-1.647068, 2.956158;;, - 110;3; 5.378092,-1.647068, 2.987640;;, - 111;3; 5.378092,-1.647068, 3.013484;;, - 112;3; 5.378092,-1.647068, 3.029901;;, - 113;3; 5.378092,-1.647068, 3.035401;;, - 114;3; 5.378092,-1.647068, 3.031038;;, - 115;3; 5.378092,-1.647068, 3.017950;;, - 116;3; 5.378092,-1.647068, 2.996935;;, - 117;3; 5.378092,-1.647068, 2.970201;;, - 118;3; 5.378092,-1.647068, 2.941358;;, - 119;3; 5.378092,-1.647068, 2.914623;;, - 120;3; 5.378092,-1.647068, 2.893608;;, - 121;3; 5.378092,-1.647068, 2.880520;;, - 122;3; 5.378092,-1.647068, 2.876157;;, - 123;3; 5.378092,-1.647068, 2.886195;;, - 124;3; 5.378092,-1.647068, 2.915409;;, - 125;3; 5.378092,-1.647068, 2.957406;;, - 126;3; 5.378092,-1.647068, 2.999403;;, - 127;3; 5.378092,-1.647068, 3.028617;;, - 128;3; 5.378092,-1.647068, 3.038655;;, - 129;3; 5.378092,-1.647068, 3.031318;;, - 130;3; 5.378092,-1.647069, 3.009614;;, - 131;3; 5.378092,-1.647069, 2.976547;;, - 132;3; 5.378092,-1.647069, 2.939038;;, - 133;3; 5.378092,-1.647069, 2.905964;;, - 134;3; 5.378092,-1.647069, 2.884252;;, - 135;3; 5.378092,-1.647068, 2.876912;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 1;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 2;4; -0.991000, 0.060102, 0.000000, 0.000000;;, - 3;4; -0.966609, 0.115344, 0.000000, 0.000000;;, - 4;4; -0.927462, 0.203892, 0.000000, 0.000000;;, - 5;4; -0.877681, 0.316357, 0.000000, 0.000000;;, - 6;4; -0.823985, 0.437561, 0.000000, 0.000000;;, - 7;4; -0.774220, 0.549862, 0.000000, 0.000000;;, - 8;4; -0.735098, 0.638172, 0.000000, 0.000000;;, - 9;4; -0.710728, 0.693217, 0.000000, 0.000000;;, - 10;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 11;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 12;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 13;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 14;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 15;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 16;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 17;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 18;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 19;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 20;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 21;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 22;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 23;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 24;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 25;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 26;4; -0.702604, 0.711582, 0.000000, 0.000000;;, - 27;4; -0.743640, 0.618644, 0.000000, 0.000000;;, - 28;4; -0.850868, 0.376622, 0.000000, 0.000000;;, - 29;4; -0.958096, 0.134600, 0.000000, 0.000000;;, - 30;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 31;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 32;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 33;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 34;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 35;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 36;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 37;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 38;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 39;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 40;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 41;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 42;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 43;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 44;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 45;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 46;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 47;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 48;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 49;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 50;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 51;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 52;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 53;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 54;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 55;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 56;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 57;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 58;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 59;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 60;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 61;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 62;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 63;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 64;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 65;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 66;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 67;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 68;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 69;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 70;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 71;4; -0.984864, 0.072887, 0.000000, 0.000000;;, - 72;4; -0.942665, 0.165169, 0.000000, 0.000000;;, - 73;4; -0.878384, 0.305634, 0.000000, 0.000000;;, - 74;4; -0.805482, 0.464882, 0.000000, 0.000000;;, - 75;4; -0.741206, 0.605319, 0.000000, 0.000000;;, - 76;4; -0.699012, 0.697569, 0.000000, 0.000000;;, - 77;4; -0.684747, 0.728781, 0.000000, 0.000000;;, - 78;4; -0.687592, 0.726012, 0.000000, 0.000000;;, - 79;4; -0.696218, 0.717562, 0.000000, 0.000000;;, - 80;4; -0.708938, 0.704953, 0.000000, 0.000000;;, - 81;4; -0.722049, 0.691696, 0.000000, 0.000000;;, - 82;4; -0.732528, 0.680737, 0.000000, 0.000000;;, - 83;4; -0.742086, 0.670235, 0.000000, 0.000000;;, - 84;4; -0.752909, 0.657913, 0.000000, 0.000000;;, - 85;4; -0.763643, 0.645380, 0.000000, 0.000000;;, - 86;4; -0.772397, 0.634973, 0.000000, 0.000000;;, - 87;4; -0.777776, 0.628497, 0.000000, 0.000000;;, - 88;4; -0.779490, 0.626415, 0.000000, 0.000000;;, - 89;4; -0.771068, 0.635512, 0.000000, 0.000000;;, - 90;4; -0.747348, 0.661131, 0.000000, 0.000000;;, - 91;4; -0.716892, 0.694031, 0.000000, 0.000000;;, - 92;4; -0.693170, 0.719671, 0.000000, 0.000000;;, - 93;4; -0.684747, 0.728781, 0.000000, 0.000000;;, - 94;4; -0.699011, 0.697581, 0.000000, 0.000000;;, - 95;4; -0.741201, 0.605353, 0.000000, 0.000000;;, - 96;4; -0.805475, 0.464926, 0.000000, 0.000000;;, - 97;4; -0.878379, 0.305666, 0.000000, 0.000000;;, - 98;4; -0.942663, 0.165182, 0.000000, 0.000000;;, - 99;4; -0.984864, 0.072889, 0.000000, 0.000000;;, - 100;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 101;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 102;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 103;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 104;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 105;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 106;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 107;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 108;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 109;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 110;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 111;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 112;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 113;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 114;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 115;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 116;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 117;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 118;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 119;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 120;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 121;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 122;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 123;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 124;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 125;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 126;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 127;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 128;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 129;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 130;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 131;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 132;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 133;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 134;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 135;4; -0.999132, 0.041662, 0.000000, 0.000000;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga3} - AnimationKey { //Position - 2; - 136; - 0;3; 0.823735,-0.011078,-1.204985;;, - 1;3; 0.823735,-0.011078,-1.204985;;, - 2;3; 0.823735,-0.011078,-1.204985;;, - 3;3; 0.823735,-0.011078,-1.204985;;, - 4;3; 0.823735,-0.011078,-1.204985;;, - 5;3; 0.823734,-0.011078,-1.204985;;, - 6;3; 0.823735,-0.011078,-1.204985;;, - 7;3; 0.823735,-0.011078,-1.204985;;, - 8;3; 0.823735,-0.011078,-1.204985;;, - 9;3; 0.823735,-0.011078,-1.204985;;, - 10;3; 0.823735,-0.011078,-1.204985;;, - 11;3; 0.823735,-0.011078,-1.204985;;, - 12;3; 0.823735,-0.011078,-1.204985;;, - 13;3; 0.823735,-0.011078,-1.204985;;, - 14;3; 0.823735,-0.011078,-1.204985;;, - 15;3; 0.823735,-0.011078,-1.204985;;, - 16;3; 0.823735,-0.011078,-1.204985;;, - 17;3; 0.823735,-0.011078,-1.204985;;, - 18;3; 0.823735,-0.011078,-1.204985;;, - 19;3; 0.823735,-0.011078,-1.204985;;, - 20;3; 0.823735,-0.011078,-1.204985;;, - 21;3; 0.823735,-0.011078,-1.204985;;, - 22;3; 0.823735,-0.011078,-1.204985;;, - 23;3; 0.823735,-0.011078,-1.204985;;, - 24;3; 0.823735,-0.011078,-1.204985;;, - 25;3; 0.823735,-0.011078,-1.204985;;, - 26;3; 0.823735,-0.011078,-1.204985;;, - 27;3; 0.823735,-0.011078,-1.204985;;, - 28;3; 0.823735,-0.011078,-1.204985;;, - 29;3; 0.823735,-0.011078,-1.204985;;, - 30;3; 0.823735,-0.011078,-1.204985;;, - 31;3; 0.823735,-0.011078,-1.204985;;, - 32;3; 0.823735,-0.011078,-1.204985;;, - 33;3; 0.823735,-0.011078,-1.204985;;, - 34;3; 0.823735,-0.011078,-1.204985;;, - 35;3; 0.823735,-0.011078,-1.204985;;, - 36;3; 0.823735,-0.011078,-1.204985;;, - 37;3; 0.823735,-0.011078,-1.204985;;, - 38;3; 0.823735,-0.011078,-1.204985;;, - 39;3; 0.823735,-0.011078,-1.204985;;, - 40;3; 0.823735,-0.011078,-1.204985;;, - 41;3; 0.823735,-0.011078,-1.204985;;, - 42;3; 0.823735,-0.011078,-1.204985;;, - 43;3; 0.823735,-0.011078,-1.204985;;, - 44;3; 0.823735,-0.011078,-1.204985;;, - 45;3; 0.823735,-0.011078,-1.204985;;, - 46;3; 0.823735,-0.011078,-1.204985;;, - 47;3; 0.823735,-0.011078,-1.204985;;, - 48;3; 0.823735,-0.011078,-1.204985;;, - 49;3; 0.823735,-0.011078,-1.204985;;, - 50;3; 0.823735,-0.011078,-1.204985;;, - 51;3; 0.823735,-0.011078,-1.204985;;, - 52;3; 0.823735,-0.011078,-1.204985;;, - 53;3; 0.823735,-0.011078,-1.204985;;, - 54;3; 0.823735,-0.011078,-1.204985;;, - 55;3; 0.823735,-0.011078,-1.204985;;, - 56;3; 0.823735,-0.011078,-1.204985;;, - 57;3; 0.823735,-0.011078,-1.204985;;, - 58;3; 0.823735,-0.011078,-1.204985;;, - 59;3; 0.823735,-0.011078,-1.204985;;, - 60;3; 0.823735,-0.011078,-1.204985;;, - 61;3; 0.823735,-0.011078,-1.204985;;, - 62;3; 0.823735,-0.011078,-1.204985;;, - 63;3; 0.823735,-0.011078,-1.204985;;, - 64;3; 0.823735,-0.011078,-1.204985;;, - 65;3; 0.823735,-0.011078,-1.204985;;, - 66;3; 0.823735,-0.011078,-1.204985;;, - 67;3; 0.823735,-0.011078,-1.204985;;, - 68;3; 0.823735,-0.011078,-1.204985;;, - 69;3; 0.823735,-0.011078,-1.204985;;, - 70;3; 0.823735,-0.011078,-1.204985;;, - 71;3; 0.823735,-0.024448,-1.166171;;, - 72;3; 0.823735,-0.064002,-1.051508;;, - 73;3; 0.823734,-0.124267,-0.877039;;, - 74;3; 0.823735,-0.192623,-0.679255;;, - 75;3; 0.823735,-0.252888,-0.504786;;, - 76;3; 0.823735,-0.292443,-0.390124;;, - 77;3; 0.823735,-0.305813,-0.351309;;, - 78;3; 0.823735,-0.305813,-0.351309;;, - 79;3; 0.823735,-0.305813,-0.351309;;, - 80;3; 0.823735,-0.305813,-0.351309;;, - 81;3; 0.823735,-0.305813,-0.351309;;, - 82;3; 0.823734,-0.305813,-0.351309;;, - 83;3; 0.823734,-0.305813,-0.351309;;, - 84;3; 0.823735,-0.305813,-0.351309;;, - 85;3; 0.823735,-0.305813,-0.351309;;, - 86;3; 0.823735,-0.305813,-0.351309;;, - 87;3; 0.823735,-0.305813,-0.351309;;, - 88;3; 0.823734,-0.305813,-0.351309;;, - 89;3; 0.823735,-0.305813,-0.351309;;, - 90;3; 0.823735,-0.305813,-0.351309;;, - 91;3; 0.823735,-0.305813,-0.351309;;, - 92;3; 0.823735,-0.305813,-0.351309;;, - 93;3; 0.823735,-0.305813,-0.351309;;, - 94;3; 0.823735,-0.292443,-0.390124;;, - 95;3; 0.823735,-0.252888,-0.504786;;, - 96;3; 0.823735,-0.192623,-0.679255;;, - 97;3; 0.823735,-0.124267,-0.877039;;, - 98;3; 0.823735,-0.064002,-1.051508;;, - 99;3; 0.823735,-0.024448,-1.166171;;, - 100;3; 0.823735,-0.011078,-1.204985;;, - 101;3; 0.823735,-0.011078,-1.204985;;, - 102;3; 0.823735,-0.011078,-1.204985;;, - 103;3; 0.823735,-0.011078,-1.204985;;, - 104;3; 0.823735,-0.011078,-1.204985;;, - 105;3; 0.823735,-0.011078,-1.204985;;, - 106;3; 0.823735,-0.011078,-1.204985;;, - 107;3; 0.823735,-0.011078,-1.204985;;, - 108;3; 0.823735,-0.011078,-1.204985;;, - 109;3; 0.823735,-0.011078,-1.204985;;, - 110;3; 0.823735,-0.011078,-1.204985;;, - 111;3; 0.823735,-0.011078,-1.204985;;, - 112;3; 0.823735,-0.011078,-1.204985;;, - 113;3; 0.823735,-0.011078,-1.204985;;, - 114;3; 0.823735,-0.011078,-1.204985;;, - 115;3; 0.823735,-0.011078,-1.204985;;, - 116;3; 0.823735,-0.011078,-1.204985;;, - 117;3; 0.823735,-0.011078,-1.204985;;, - 118;3; 0.823735,-0.011078,-1.204985;;, - 119;3; 0.823735,-0.011078,-1.204985;;, - 120;3; 0.823735,-0.011078,-1.204985;;, - 121;3; 0.823735,-0.011078,-1.204985;;, - 122;3; 0.823735,-0.011078,-1.204985;;, - 123;3; 0.823735,-0.011078,-1.204985;;, - 124;3; 0.823735,-0.011078,-1.204985;;, - 125;3; 0.823735,-0.011078,-1.204985;;, - 126;3; 0.823735,-0.011078,-1.204985;;, - 127;3; 0.823735,-0.011078,-1.204985;;, - 128;3; 0.823735,-0.011078,-1.204985;;, - 129;3; 0.823735,-0.011078,-1.204985;;, - 130;3; 0.823735,-0.011078,-1.204985;;, - 131;3; 0.823735,-0.011078,-1.204985;;, - 132;3; 0.823735,-0.011078,-1.204985;;, - 133;3; 0.823735,-0.011078,-1.204985;;, - 134;3; 0.823735,-0.011078,-1.204985;;, - 135;3; 0.823735,-0.011078,-1.204985;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.479603,-0.519546, 0.479603,-0.519546;;, - 3;4; -0.482208,-0.516995, 0.482208,-0.516994;;, - 4;4; -0.486391,-0.512897, 0.486391,-0.512897;;, - 5;4; -0.491711,-0.507685, 0.491711,-0.507685;;, - 6;4; -0.497452,-0.502061, 0.497452,-0.502061;;, - 7;4; -0.502773,-0.496849, 0.502773,-0.496849;;, - 8;4; -0.506955,-0.492752, 0.506955,-0.492752;;, - 9;4; -0.509560,-0.490200, 0.509560,-0.490200;;, - 10;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 11;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 12;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 13;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 14;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 15;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 16;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 17;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 18;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 19;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 20;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 21;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 22;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 23;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 24;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 25;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 26;4; -0.510428,-0.489350, 0.510428,-0.489350;;, - 27;4; -0.506045,-0.493643, 0.506046,-0.493643;;, - 28;4; -0.494582,-0.504873, 0.494582,-0.504873;;, - 29;4; -0.483118,-0.516103, 0.483118,-0.516103;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.471419,-0.525048, 0.471419,-0.525048;;, - 37;4; -0.449585,-0.538928, 0.449585,-0.538928;;, - 38;4; -0.415216,-0.560776, 0.415216,-0.560775;;, - 39;4; -0.373354,-0.587385, 0.373354,-0.587385;;, - 40;4; -0.331496,-0.613991, 0.331496,-0.613991;;, - 41;4; -0.297134,-0.635832, 0.297134,-0.635832;;, - 42;4; -0.275307,-0.649706, 0.275307,-0.649706;;, - 43;4; -0.267994,-0.654354, 0.267994,-0.654354;;, - 44;4; -0.271164,-0.651497, 0.271164,-0.651497;;, - 45;4; -0.280754,-0.642868, 0.280754,-0.642868;;, - 46;4; -0.296731,-0.628532, 0.296731,-0.628532;;, - 47;4; -0.318782,-0.608809, 0.318782,-0.608809;;, - 48;4; -0.346239,-0.584351, 0.346239,-0.584351;;, - 49;4; -0.378024,-0.556181, 0.378024,-0.556181;;, - 50;4; -0.412665,-0.525678, 0.412665,-0.525678;;, - 51;4; -0.448397,-0.494478, 0.448398,-0.494477;;, - 52;4; -0.483345,-0.464307, 0.483345,-0.464307;;, - 53;4; -0.515728,-0.436788, 0.515728,-0.436788;;, - 54;4; -0.544052,-0.413272, 0.544052,-0.413272;;, - 55;4; -0.567204,-0.394746, 0.567204,-0.394746;;, - 56;4; -0.584482,-0.381824, 0.584482,-0.381824;;, - 57;4; -0.595539,-0.374790, 0.595539,-0.374790;;, - 58;4; -0.600308,-0.373672, 0.600308,-0.373671;;, - 59;4; -0.596120,-0.381769, 0.596120,-0.381769;;, - 60;4; -0.580435,-0.402142, 0.580435,-0.402142;;, - 61;4; -0.555540,-0.432097, 0.555540,-0.432097;;, - 62;4; -0.526829,-0.465563, 0.526829,-0.465563;;, - 63;4; -0.501294,-0.494832, 0.501294,-0.494832;;, - 64;4; -0.484447,-0.513952, 0.484447,-0.513952;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.445994,-0.526989, 0.445994,-0.526989;;, - 72;4; -0.349226,-0.546440, 0.349226,-0.546439;;, - 73;4; -0.201952,-0.575980, 0.201953,-0.575980;;, - 74;4; -0.035056,-0.609400, 0.035056,-0.609400;;, - 75;4; 0.112030,-0.638828,-0.112030,-0.638828;;, - 76;4; 0.208581,-0.658149,-0.208581,-0.658149;;, - 77;4; 0.241230,-0.664687,-0.241230,-0.664687;;, - 78;4; 0.193458,-0.662679,-0.193458,-0.662679;;, - 79;4; 0.058903,-0.657023,-0.058903,-0.657023;;, - 80;4; -0.113861,-0.649757, 0.113861,-0.649757;;, - 81;4; -0.248414,-0.644096, 0.248414,-0.644096;;, - 82;4; -0.296184,-0.642086, 0.296185,-0.642086;;, - 83;4; -0.260120,-0.642326, 0.260120,-0.642326;;, - 84;4; -0.155158,-0.643024, 0.155158,-0.643024;;, - 85;4; -0.004271,-0.644025, 0.004271,-0.644025;;, - 86;4; 0.146616,-0.645025,-0.146616,-0.645025;;, - 87;4; 0.251576,-0.645720,-0.251576,-0.645720;;, - 88;4; 0.287640,-0.645959,-0.287640,-0.645959;;, - 89;4; 0.252730,-0.651734,-0.252730,-0.651734;;, - 90;4; 0.150357,-0.666633,-0.150357,-0.666633;;, - 91;4; 0.007873,-0.682012,-0.007873,-0.682012;;, - 92;4; -0.124668,-0.686638, 0.124668,-0.686638;;, - 93;4; -0.210774,-0.674963, 0.210774,-0.674962;;, - 94;4; -0.269535,-0.652049, 0.269535,-0.652049;;, - 95;4; -0.327564,-0.623769, 0.327564,-0.623769;;, - 96;4; -0.380927,-0.592653, 0.380927,-0.592653;;, - 97;4; -0.424904,-0.563016, 0.424904,-0.563016;;, - 98;4; -0.455996,-0.539504, 0.455996,-0.539504;;, - 99;4; -0.473439,-0.525074, 0.473439,-0.525074;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.463300,-0.526860, 0.463300,-0.526860;;, - 107;4; -0.417244,-0.546141, 0.417244,-0.546141;;, - 108;4; -0.344767,-0.576470, 0.344767,-0.576470;;, - 109;4; -0.256510,-0.613389, 0.256510,-0.613389;;, - 110;4; -0.168274,-0.650290, 0.168274,-0.650290;;, - 111;4; -0.095844,-0.680578, 0.095844,-0.680578;;, - 112;4; -0.049832,-0.699820, 0.049832,-0.699820;;, - 113;4; -0.034414,-0.706269, 0.034414,-0.706269;;, - 114;4; -0.040097,-0.701921, 0.040097,-0.701920;;, - 115;4; -0.057302,-0.688805, 0.057302,-0.688805;;, - 116;4; -0.085990,-0.667046, 0.085990,-0.667046;;, - 117;4; -0.125627,-0.637167, 0.125627,-0.637167;;, - 118;4; -0.175044,-0.600200, 0.175044,-0.600200;;, - 119;4; -0.232343,-0.557746, 0.232343,-0.557746;;, - 120;4; -0.294919,-0.511948, 0.294919,-0.511948;;, - 121;4; -0.359641,-0.465336, 0.359641,-0.465336;;, - 122;4; -0.423163,-0.420566, 0.423163,-0.420566;;, - 123;4; -0.482311,-0.380122, 0.482311,-0.380122;;, - 124;4; -0.534402,-0.346061, 0.534402,-0.346061;;, - 125;4; -0.577438,-0.319876, 0.577438,-0.319876;;, - 126;4; -0.610141,-0.302481, 0.610141,-0.302481;;, - 127;4; -0.631872,-0.294284, 0.631872,-0.294284;;, - 128;4; -0.642492,-0.295303, 0.642492,-0.295303;;, - 129;4; -0.639162,-0.309963, 0.639162,-0.309963;;, - 130;4; -0.619144,-0.342262, 0.619144,-0.342262;;, - 131;4; -0.585572,-0.388121, 0.585572,-0.388121;;, - 132;4; -0.546020,-0.438572, 0.546020,-0.438572;;, - 133;4; -0.510436,-0.482349, 0.510436,-0.482349;;, - 134;4; -0.486790,-0.510822, 0.486790,-0.510822;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga1} - AnimationKey { //Position - 2; - 136; - 0;3; 0.752547, 3.021216,-1.494725;;, - 1;3; 0.752547, 3.021216,-1.494725;;, - 2;3; 0.775991, 3.012991,-1.481758;;, - 3;3; 0.846171, 2.988321,-1.442876;;, - 4;3; 0.958560, 2.948725,-1.380489;;, - 5;3; 1.101183, 2.898370,-1.301177;;, - 6;3; 1.254803, 2.844056,-1.215646;;, - 7;3; 1.397110, 2.793717,-1.136382;;, - 8;3; 1.509037, 2.754144,-1.074064;;, - 9;3; 1.578836, 2.729494,-1.035240;;, - 10;3; 1.602134, 2.721276,-1.022294;;, - 11;3; 1.602134, 2.721276,-1.022294;;, - 12;3; 1.602134, 2.721276,-1.022294;;, - 13;3; 1.602134, 2.721276,-1.022294;;, - 14;3; 1.602134, 2.721276,-1.022294;;, - 15;3; 1.602134, 2.721276,-1.022294;;, - 16;3; 1.602134, 2.721276,-1.022294;;, - 17;3; 1.602134, 2.721276,-1.022294;;, - 18;3; 1.602134, 2.721276,-1.022294;;, - 19;3; 1.602134, 2.721276,-1.022294;;, - 20;3; 1.602134, 2.721276,-1.022294;;, - 21;3; 1.602134, 2.721276,-1.022294;;, - 22;3; 1.602134, 2.721276,-1.022294;;, - 23;3; 1.602134, 2.721276,-1.022294;;, - 24;3; 1.602134, 2.721276,-1.022294;;, - 25;3; 1.602134, 2.721276,-1.022294;;, - 26;3; 1.602134, 2.721276,-1.022294;;, - 27;3; 1.484071, 2.762783,-1.087711;;, - 28;3; 1.177341, 2.871246,-1.258510;;, - 29;3; 0.870610, 2.979710,-1.429308;;, - 30;3; 0.752547, 3.021216,-1.494725;;, - 31;3; 0.752547, 3.021216,-1.494725;;, - 32;3; 0.752547, 3.021216,-1.494725;;, - 33;3; 0.752547, 3.021216,-1.494725;;, - 34;3; 0.752547, 3.021216,-1.494725;;, - 35;3; 0.752547, 3.021216,-1.494725;;, - 36;3; 0.752547, 3.021216,-1.494725;;, - 37;3; 0.752547, 3.021216,-1.494725;;, - 38;3; 0.752547, 3.021216,-1.494725;;, - 39;3; 0.752547, 3.021216,-1.494725;;, - 40;3; 0.752547, 3.021216,-1.494725;;, - 41;3; 0.752547, 3.021216,-1.494725;;, - 42;3; 0.752547, 3.021216,-1.494725;;, - 43;3; 0.752547, 3.021216,-1.494725;;, - 44;3; 0.752547, 3.021216,-1.494725;;, - 45;3; 0.752547, 3.021216,-1.494725;;, - 46;3; 0.752547, 3.021216,-1.494725;;, - 47;3; 0.752547, 3.021216,-1.494725;;, - 48;3; 0.752547, 3.021216,-1.494725;;, - 49;3; 0.752547, 3.021216,-1.494725;;, - 50;3; 0.752547, 3.021216,-1.494725;;, - 51;3; 0.752547, 3.021216,-1.494725;;, - 52;3; 0.752547, 3.021216,-1.494725;;, - 53;3; 0.752547, 3.021216,-1.494725;;, - 54;3; 0.752547, 3.021216,-1.494725;;, - 55;3; 0.752547, 3.021216,-1.494725;;, - 56;3; 0.752547, 3.021216,-1.494725;;, - 57;3; 0.752547, 3.021216,-1.494725;;, - 58;3; 0.752547, 3.021216,-1.494725;;, - 59;3; 0.752547, 3.021216,-1.494725;;, - 60;3; 0.752547, 3.021216,-1.494725;;, - 61;3; 0.752547, 3.021216,-1.494725;;, - 62;3; 0.752547, 3.021216,-1.494725;;, - 63;3; 0.752547, 3.021216,-1.494725;;, - 64;3; 0.752547, 3.021216,-1.494725;;, - 65;3; 0.752547, 3.021216,-1.494725;;, - 66;3; 0.752547, 3.021216,-1.494725;;, - 67;3; 0.752547, 3.021216,-1.494725;;, - 68;3; 0.752547, 3.021216,-1.494725;;, - 69;3; 0.752547, 3.021216,-1.494725;;, - 70;3; 0.752547, 3.021216,-1.494725;;, - 71;3; 0.771777, 3.022736,-1.470365;;, - 72;3; 0.828648, 3.027228,-1.398342;;, - 73;3; 0.915266, 3.034067,-1.288671;;, - 74;3; 1.013494, 3.041822,-1.164305;;, - 75;3; 1.100098, 3.048661,-1.054634;;, - 76;3; 1.156951, 3.053153,-0.982612;;, - 77;3; 1.176174, 3.054673,-0.958251;;, - 78;3; 1.169409, 3.054673,-0.958251;;, - 79;3; 1.150360, 3.054672,-0.958251;;, - 80;3; 1.125905, 3.054673,-0.958252;;, - 81;3; 1.106857, 3.054673,-0.958251;;, - 82;3; 1.100091, 3.054673,-0.958252;;, - 83;3; 1.120702, 3.052278,-0.996623;;, - 84;3; 1.180679, 3.045320,-1.108174;;, - 85;3; 1.266884, 3.035330,-1.268369;;, - 86;3; 1.353082, 3.025346,-1.428499;;, - 87;3; 1.413043, 3.018398,-1.539929;;, - 88;3; 1.433646, 3.016008,-1.578243;;, - 89;3; 1.413383, 3.017104,-1.560674;;, - 90;3; 1.352238, 3.020189,-1.511211;;, - 91;3; 1.262711, 3.024147,-1.447726;;, - 92;3; 1.171485, 3.027231,-1.398288;;, - 93;3; 1.100092, 3.028326,-1.380732;;, - 94;3; 1.037738, 3.028003,-1.385904;;, - 95;3; 0.969026, 3.027049,-1.401203;;, - 96;3; 0.899376, 3.025595,-1.424511;;, - 97;3; 0.836933, 3.023946,-1.450948;;, - 98;3; 0.789568, 3.022493,-1.474255;;, - 99;3; 0.761451, 3.021539,-1.489553;;, - 100;3; 0.752547, 3.021216,-1.494725;;, - 101;3; 0.752547, 3.021216,-1.494725;;, - 102;3; 0.752547, 3.021216,-1.494725;;, - 103;3; 0.752547, 3.021216,-1.494725;;, - 104;3; 0.752547, 3.021216,-1.494725;;, - 105;3; 0.752547, 3.021216,-1.494725;;, - 106;3; 0.752547, 3.021216,-1.494725;;, - 107;3; 0.752547, 3.021216,-1.494725;;, - 108;3; 0.752547, 3.021216,-1.494725;;, - 109;3; 0.752547, 3.021216,-1.494725;;, - 110;3; 0.752547, 3.021216,-1.494725;;, - 111;3; 0.752547, 3.021216,-1.494725;;, - 112;3; 0.752547, 3.021216,-1.494725;;, - 113;3; 0.752547, 3.021216,-1.494725;;, - 114;3; 0.752547, 3.021216,-1.494725;;, - 115;3; 0.752547, 3.021216,-1.494725;;, - 116;3; 0.752547, 3.021216,-1.494725;;, - 117;3; 0.752547, 3.021216,-1.494725;;, - 118;3; 0.752547, 3.021216,-1.494725;;, - 119;3; 0.752547, 3.021216,-1.494725;;, - 120;3; 0.752547, 3.021216,-1.494725;;, - 121;3; 0.752547, 3.021216,-1.494725;;, - 122;3; 0.752547, 3.021216,-1.494725;;, - 123;3; 0.752547, 3.021216,-1.494725;;, - 124;3; 0.752547, 3.021216,-1.494725;;, - 125;3; 0.752547, 3.021216,-1.494725;;, - 126;3; 0.752547, 3.021216,-1.494725;;, - 127;3; 0.752547, 3.021216,-1.494725;;, - 128;3; 0.752547, 3.021216,-1.494725;;, - 129;3; 0.752547, 3.021216,-1.494725;;, - 130;3; 0.752547, 3.021216,-1.494725;;, - 131;3; 0.752547, 3.021216,-1.494725;;, - 132;3; 0.752547, 3.021216,-1.494725;;, - 133;3; 0.752547, 3.021216,-1.494725;;, - 134;3; 0.752547, 3.021216,-1.494725;;, - 135;3; 0.752547, 3.021216,-1.494725;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.468256,-0.525352, 0.468256,-0.525352;;, - 3;4; -0.436840,-0.540197, 0.436840,-0.540197;;, - 4;4; -0.386442,-0.563994, 0.386442,-0.563994;;, - 5;4; -0.322387,-0.594217, 0.322387,-0.594217;;, - 6;4; -0.253322,-0.626786, 0.253322,-0.626786;;, - 7;4; -0.189327,-0.656957, 0.189327,-0.656957;;, - 8;4; -0.139018,-0.680678, 0.139018,-0.680678;;, - 9;4; -0.107674,-0.695460, 0.107674,-0.695460;;, - 10;4; -0.097223,-0.700391, 0.097223,-0.700391;;, - 11;4; -0.100880,-0.708644, 0.106407,-0.687737;;, - 12;4; -0.111179,-0.731889, 0.132270,-0.652098;;, - 13;4; -0.124401,-0.761737, 0.165474,-0.606344;;, - 14;4; -0.134698,-0.784983, 0.191333,-0.570710;;, - 15;4; -0.138354,-0.793236, 0.200514,-0.558058;;, - 16;4; -0.137601,-0.791537, 0.198624,-0.560663;;, - 17;4; -0.135333,-0.786410, 0.192924,-0.568518;;, - 18;4; -0.131616,-0.778002, 0.183582,-0.581395;;, - 19;4; -0.126665,-0.766799, 0.171134,-0.598552;;, - 20;4; -0.120867,-0.753687, 0.156563,-0.618635;;, - 21;4; -0.114765,-0.739894, 0.141229,-0.639767;;, - 22;4; -0.108958,-0.726789, 0.126649,-0.659859;;, - 23;4; -0.103992,-0.715599, 0.114187,-0.677028;;, - 24;4; -0.100259,-0.707205, 0.104828,-0.689918;;, - 25;4; -0.097980,-0.702088, 0.099118,-0.697782;;, - 26;4; -0.097223,-0.700391, 0.097223,-0.700391;;, - 27;4; -0.150057,-0.675434, 0.150057,-0.675434;;, - 28;4; -0.287956,-0.610413, 0.287956,-0.610413;;, - 29;4; -0.425879,-0.545373, 0.425879,-0.545372;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.483955,-0.513539, 0.483955,-0.513539;;, - 37;4; -0.499536,-0.493071, 0.499536,-0.493071;;, - 38;4; -0.524060,-0.460853, 0.524060,-0.460853;;, - 39;4; -0.553930,-0.421610, 0.553930,-0.421610;;, - 40;4; -0.583796,-0.382370, 0.583796,-0.382370;;, - 41;4; -0.608313,-0.350158, 0.608313,-0.350158;;, - 42;4; -0.623887,-0.329697, 0.623887,-0.329697;;, - 43;4; -0.629105,-0.322842, 0.629105,-0.322841;;, - 44;4; -0.626395,-0.325558, 0.626395,-0.325558;;, - 45;4; -0.618208,-0.333776, 0.618207,-0.333776;;, - 46;4; -0.604601,-0.347469, 0.604601,-0.347469;;, - 47;4; -0.585875,-0.366370, 0.585875,-0.366370;;, - 48;4; -0.562643,-0.389905, 0.562643,-0.389905;;, - 49;4; -0.535871,-0.417154, 0.535871,-0.417154;;, - 50;4; -0.506861,-0.446856, 0.506861,-0.446856;;, - 51;4; -0.477161,-0.477500, 0.477161,-0.477500;;, - 52;4; -0.448405,-0.507479, 0.448405,-0.507479;;, - 53;4; -0.422131,-0.535269, 0.422131,-0.535268;;, - 54;4; -0.399618,-0.559587, 0.399618,-0.559587;;, - 55;4; -0.381808,-0.579482, 0.381808,-0.579482;;, - 56;4; -0.369282,-0.594349, 0.369282,-0.594349;;, - 57;4; -0.362313,-0.603892, 0.362313,-0.603892;;, - 58;4; -0.360931,-0.608053, 0.360931,-0.608053;;, - 59;4; -0.367377,-0.605275, 0.367377,-0.605275;;, - 60;4; -0.383708,-0.594080, 0.383708,-0.594080;;, - 61;4; -0.407762,-0.576122, 0.407762,-0.576122;;, - 62;4; -0.434653,-0.555326, 0.434653,-0.555326;;, - 63;4; -0.458181,-0.536793, 0.458181,-0.536793;;, - 64;4; -0.473553,-0.524551, 0.473553,-0.524551;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.468158,-0.534493, 0.459641,-0.525831;;, - 72;4; -0.437077,-0.574798, 0.401790,-0.541962;;, - 73;4; -0.390229,-0.632687, 0.310167,-0.566695;;, - 74;4; -0.338025,-0.691630, 0.199515,-0.595078;;, - 75;4; -0.293529,-0.732401, 0.090666,-0.620690;;, - 76;4; -0.266735,-0.741515, 0.001409,-0.638452;;, - 77;4; -0.261806,-0.714532,-0.059077,-0.646074;;, - 78;4; -0.269532,-0.623920,-0.107440,-0.672363;;, - 79;4; -0.279650,-0.453185,-0.158537,-0.741816;;, - 80;4; -0.289675,-0.255234,-0.202734,-0.829796;;, - 81;4; -0.296558,-0.107670,-0.230489,-0.897959;;, - 82;4; -0.298849,-0.056385,-0.239219,-0.922109;;, - 83;4; -0.290731,-0.094092,-0.214124,-0.906352;;, - 84;4; -0.266540,-0.204341,-0.141699,-0.861062;;, - 85;4; -0.230225,-0.364240,-0.039105,-0.797363;;, - 86;4; -0.190860,-0.526943, 0.060601,-0.736327;;, - 87;4; -0.158361,-0.644837, 0.125011,-0.698421;;, - 88;4; -0.138410,-0.693428, 0.138410,-0.693428;;, - 89;4; -0.114622,-0.703206, 0.114622,-0.703206;;, - 90;4; -0.072229,-0.708109, 0.072229,-0.708109;;, - 91;4; -0.023969,-0.708730, 0.023969,-0.708729;;, - 92;4; 0.011701,-0.707450,-0.011701,-0.707450;;, - 93;4; 0.024042,-0.706698,-0.024042,-0.706698;;, - 94;4; 0.001226,-0.698239,-0.001226,-0.698239;;, - 95;4; -0.066241,-0.673240, 0.066241,-0.673240;;, - 96;4; -0.169000,-0.635182, 0.169000,-0.635182;;, - 97;4; -0.285558,-0.592014, 0.285558,-0.592014;;, - 98;4; -0.388368,-0.553918, 0.388368,-0.553918;;, - 99;4; -0.455894,-0.528875, 0.455894,-0.528875;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.486442,-0.505691, 0.486442,-0.505691;;, - 107;4; -0.509434,-0.461807, 0.509434,-0.461807;;, - 108;4; -0.545606,-0.392748, 0.545606,-0.392748;;, - 109;4; -0.589639,-0.308652, 0.589639,-0.308652;;, - 110;4; -0.633652,-0.224575, 0.633652,-0.224575;;, - 111;4; -0.669778,-0.155559, 0.669778,-0.155559;;, - 112;4; -0.692728,-0.111716, 0.692728,-0.111715;;, - 113;4; -0.700419,-0.097025, 0.700419,-0.097025;;, - 114;4; -0.694488,-0.102501, 0.694488,-0.102501;;, - 115;4; -0.676592,-0.119091, 0.676592,-0.119091;;, - 116;4; -0.646889,-0.146777, 0.646889,-0.146777;;, - 117;4; -0.606078,-0.185069, 0.606078,-0.185069;;, - 118;4; -0.555547,-0.232869, 0.555547,-0.232869;;, - 119;4; -0.497463,-0.288380, 0.497463,-0.288380;;, - 120;4; -0.434730,-0.349124, 0.434730,-0.349124;;, - 121;4; -0.370780,-0.412110, 0.370780,-0.412110;;, - 122;4; -0.309226,-0.474136, 0.309226,-0.474136;;, - 123;4; -0.253447,-0.532153, 0.253447,-0.532153;;, - 124;4; -0.206250,-0.583577, 0.206250,-0.583577;;, - 125;4; -0.169676,-0.626475, 0.169676,-0.626475;;, - 126;4; -0.144980,-0.659603, 0.144980,-0.659603;;, - 127;4; -0.132726,-0.682326, 0.132727,-0.682326;;, - 128;4; -0.132952,-0.694495, 0.132953,-0.694495;;, - 129;4; -0.153736,-0.692156, 0.153736,-0.692156;;, - 130;4; -0.202509,-0.671467, 0.202509,-0.671467;;, - 131;4; -0.272968,-0.635782, 0.272968,-0.635782;;, - 132;4; -0.351119,-0.593292, 0.351119,-0.593292;;, - 133;4; -0.419269,-0.554831, 0.419269,-0.554831;;, - 134;4; -0.463746,-0.529165, 0.463746,-0.529164;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga4} - AnimationKey { //Position - 2; - 136; - 0;3; -0.858075,-0.011159,-1.205961;;, - 1;3; -0.858075,-0.011159,-1.205961;;, - 2;3; -0.858075,-0.011159,-1.205961;;, - 3;3; -0.858075,-0.011159,-1.205961;;, - 4;3; -0.858075,-0.011159,-1.205961;;, - 5;3; -0.858075,-0.011159,-1.205961;;, - 6;3; -0.858075,-0.011159,-1.205961;;, - 7;3; -0.858075,-0.011159,-1.205961;;, - 8;3; -0.858075,-0.011159,-1.205961;;, - 9;3; -0.858075,-0.011159,-1.205961;;, - 10;3; -0.858075,-0.011159,-1.205961;;, - 11;3; -0.858075,-0.011159,-1.205961;;, - 12;3; -0.858075,-0.011159,-1.205961;;, - 13;3; -0.858075,-0.011159,-1.205961;;, - 14;3; -0.858075,-0.011159,-1.205961;;, - 15;3; -0.858075,-0.011159,-1.205961;;, - 16;3; -0.858075,-0.011159,-1.205961;;, - 17;3; -0.858075,-0.011159,-1.205961;;, - 18;3; -0.858075,-0.011159,-1.205961;;, - 19;3; -0.858075,-0.011159,-1.205961;;, - 20;3; -0.858075,-0.011159,-1.205961;;, - 21;3; -0.858075,-0.011159,-1.205961;;, - 22;3; -0.858075,-0.011159,-1.205961;;, - 23;3; -0.858075,-0.011159,-1.205961;;, - 24;3; -0.858075,-0.011159,-1.205961;;, - 25;3; -0.858075,-0.011159,-1.205961;;, - 26;3; -0.858075,-0.011159,-1.205961;;, - 27;3; -0.858075,-0.011159,-1.205961;;, - 28;3; -0.858075,-0.011159,-1.205961;;, - 29;3; -0.858075,-0.011159,-1.205961;;, - 30;3; -0.858075,-0.011159,-1.205961;;, - 31;3; -0.858075,-0.011159,-1.205961;;, - 32;3; -0.858075,-0.011159,-1.205961;;, - 33;3; -0.858075,-0.011159,-1.205961;;, - 34;3; -0.858075,-0.011159,-1.205961;;, - 35;3; -0.858075,-0.011159,-1.205961;;, - 36;3; -0.858075,-0.011159,-1.205961;;, - 37;3; -0.858075,-0.011159,-1.205961;;, - 38;3; -0.858075,-0.011159,-1.205961;;, - 39;3; -0.858075,-0.011159,-1.205961;;, - 40;3; -0.858075,-0.011159,-1.205961;;, - 41;3; -0.858075,-0.011159,-1.205961;;, - 42;3; -0.858075,-0.011159,-1.205961;;, - 43;3; -0.858075,-0.011159,-1.205961;;, - 44;3; -0.858075,-0.011159,-1.205961;;, - 45;3; -0.858075,-0.011159,-1.205961;;, - 46;3; -0.858075,-0.011159,-1.205961;;, - 47;3; -0.858075,-0.011159,-1.205961;;, - 48;3; -0.858075,-0.011159,-1.205961;;, - 49;3; -0.858075,-0.011159,-1.205961;;, - 50;3; -0.858075,-0.011159,-1.205961;;, - 51;3; -0.858075,-0.011159,-1.205961;;, - 52;3; -0.858075,-0.011159,-1.205961;;, - 53;3; -0.858075,-0.011159,-1.205961;;, - 54;3; -0.858075,-0.011159,-1.205961;;, - 55;3; -0.858075,-0.011159,-1.205961;;, - 56;3; -0.858075,-0.011159,-1.205961;;, - 57;3; -0.858075,-0.011159,-1.205961;;, - 58;3; -0.858075,-0.011159,-1.205961;;, - 59;3; -0.858075,-0.011159,-1.205961;;, - 60;3; -0.858075,-0.011159,-1.205961;;, - 61;3; -0.858075,-0.011159,-1.205961;;, - 62;3; -0.858075,-0.011159,-1.205961;;, - 63;3; -0.858075,-0.011159,-1.205961;;, - 64;3; -0.858075,-0.011159,-1.205961;;, - 65;3; -0.858075,-0.011159,-1.205961;;, - 66;3; -0.858075,-0.011159,-1.205961;;, - 67;3; -0.858075,-0.011159,-1.205961;;, - 68;3; -0.858075,-0.011159,-1.205961;;, - 69;3; -0.858075,-0.011159,-1.205961;;, - 70;3; -0.858075,-0.011159,-1.205961;;, - 71;3; -0.858075,-0.028217,-1.165600;;, - 72;3; -0.858075,-0.078671,-1.046381;;, - 73;3; -0.858075,-0.155529,-0.864996;;, - 74;3; -0.858075,-0.242697,-0.659377;;, - 75;3; -0.858075,-0.319554,-0.477991;;, - 76;3; -0.858074,-0.370009,-0.358772;;, - 77;3; -0.858075,-0.387067,-0.318411;;, - 78;3; -0.858075,-0.387067,-0.318411;;, - 79;3; -0.858075,-0.387067,-0.318411;;, - 80;3; -0.858075,-0.387067,-0.318411;;, - 81;3; -0.858074,-0.387067,-0.318411;;, - 82;3; -0.858075,-0.387067,-0.318411;;, - 83;3; -0.858075,-0.387067,-0.318411;;, - 84;3; -0.858074,-0.387067,-0.318411;;, - 85;3; -0.858075,-0.387067,-0.318411;;, - 86;3; -0.858075,-0.387067,-0.318411;;, - 87;3; -0.858075,-0.387067,-0.318411;;, - 88;3; -0.858075,-0.387067,-0.318411;;, - 89;3; -0.858075,-0.387067,-0.318411;;, - 90;3; -0.858074,-0.387067,-0.318411;;, - 91;3; -0.858075,-0.387067,-0.318411;;, - 92;3; -0.858074,-0.387067,-0.318411;;, - 93;3; -0.858075,-0.387067,-0.318411;;, - 94;3; -0.858075,-0.370008,-0.358772;;, - 95;3; -0.858075,-0.319554,-0.477991;;, - 96;3; -0.858075,-0.242697,-0.659377;;, - 97;3; -0.858075,-0.155529,-0.864996;;, - 98;3; -0.858075,-0.078672,-1.046381;;, - 99;3; -0.858075,-0.028217,-1.165600;;, - 100;3; -0.858075,-0.011159,-1.205961;;, - 101;3; -0.858075,-0.011159,-1.205961;;, - 102;3; -0.858075,-0.011159,-1.205961;;, - 103;3; -0.858075,-0.011159,-1.205961;;, - 104;3; -0.858075,-0.011159,-1.205961;;, - 105;3; -0.858075,-0.011159,-1.205961;;, - 106;3; -0.858075,-0.011159,-1.205961;;, - 107;3; -0.858075,-0.011159,-1.205961;;, - 108;3; -0.858075,-0.011159,-1.205961;;, - 109;3; -0.858075,-0.011159,-1.205961;;, - 110;3; -0.858075,-0.011159,-1.205961;;, - 111;3; -0.858075,-0.011159,-1.205961;;, - 112;3; -0.858075,-0.011159,-1.205961;;, - 113;3; -0.858075,-0.011159,-1.205961;;, - 114;3; -0.858075,-0.011159,-1.205961;;, - 115;3; -0.858075,-0.011159,-1.205961;;, - 116;3; -0.858075,-0.011159,-1.205961;;, - 117;3; -0.858075,-0.011159,-1.205961;;, - 118;3; -0.858075,-0.011159,-1.205961;;, - 119;3; -0.858075,-0.011159,-1.205961;;, - 120;3; -0.858075,-0.011159,-1.205961;;, - 121;3; -0.858075,-0.011159,-1.205961;;, - 122;3; -0.858075,-0.011159,-1.205961;;, - 123;3; -0.858075,-0.011159,-1.205961;;, - 124;3; -0.858075,-0.011159,-1.205961;;, - 125;3; -0.858075,-0.011159,-1.205961;;, - 126;3; -0.858075,-0.011159,-1.205961;;, - 127;3; -0.858075,-0.011159,-1.205961;;, - 128;3; -0.858075,-0.011159,-1.205961;;, - 129;3; -0.858075,-0.011159,-1.205961;;, - 130;3; -0.858075,-0.011159,-1.205961;;, - 131;3; -0.858075,-0.011159,-1.205961;;, - 132;3; -0.858075,-0.011159,-1.205961;;, - 133;3; -0.858075,-0.011159,-1.205961;;, - 134;3; -0.858075,-0.011159,-1.205961;;, - 135;3; -0.858075,-0.011159,-1.205961;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.478963,-0.520183, 0.478963,-0.520183;;, - 3;4; -0.479649,-0.519542, 0.479649,-0.519542;;, - 4;4; -0.480751,-0.518512, 0.480751,-0.518512;;, - 5;4; -0.482152,-0.517202, 0.482152,-0.517202;;, - 6;4; -0.483664,-0.515789, 0.483664,-0.515789;;, - 7;4; -0.485065,-0.514479, 0.485065,-0.514479;;, - 8;4; -0.486166,-0.513449, 0.486166,-0.513449;;, - 9;4; -0.486852,-0.512808, 0.486852,-0.512808;;, - 10;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 11;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 12;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 13;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 14;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 15;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 16;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 17;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 18;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 19;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 20;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 21;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 22;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 23;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 24;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 25;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 26;4; -0.487081,-0.512594, 0.487081,-0.512594;;, - 27;4; -0.485927,-0.513673, 0.485927,-0.513673;;, - 28;4; -0.482908,-0.516495, 0.482908,-0.516495;;, - 29;4; -0.479889,-0.519318, 0.479889,-0.519318;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.482184,-0.516822, 0.482185,-0.516822;;, - 37;4; -0.492450,-0.506118, 0.492450,-0.506118;;, - 38;4; -0.508534,-0.489186, 0.508534,-0.489186;;, - 39;4; -0.527984,-0.468405, 0.527984,-0.468405;;, - 40;4; -0.547196,-0.447367, 0.547196,-0.447367;;, - 41;4; -0.562604,-0.429702, 0.562604,-0.429702;;, - 42;4; -0.571844,-0.417885, 0.571844,-0.417885;;, - 43;4; -0.574016,-0.412923, 0.574016,-0.412923;;, - 44;4; -0.569663,-0.413978, 0.569663,-0.413978;;, - 45;4; -0.559287,-0.420193, 0.559287,-0.420193;;, - 46;4; -0.542949,-0.431542, 0.542949,-0.431542;;, - 47;4; -0.520977,-0.447777, 0.520977,-0.447776;;, - 48;4; -0.494044,-0.468360, 0.494044,-0.468360;;, - 49;4; -0.463210,-0.492430, 0.463210,-0.492430;;, - 50;4; -0.429904,-0.518806, 0.429904,-0.518806;;, - 51;4; -0.395827,-0.546074, 0.395827,-0.546074;;, - 52;4; -0.362775,-0.572726, 0.362775,-0.572726;;, - 53;4; -0.332436,-0.597335, 0.332436,-0.597335;;, - 54;4; -0.306220,-0.618699, 0.306220,-0.618698;;, - 55;4; -0.285160,-0.635924, 0.285160,-0.635924;;, - 56;4; -0.269898,-0.648444, 0.269898,-0.648443;;, - 57;4; -0.260736,-0.655978, 0.260736,-0.655978;;, - 58;4; -0.257707,-0.658473, 0.257707,-0.658473;;, - 59;4; -0.267733,-0.652210, 0.267733,-0.652210;;, - 60;4; -0.297392,-0.633683, 0.297392,-0.633683;;, - 61;4; -0.342579,-0.605457, 0.342579,-0.605457;;, - 62;4; -0.393836,-0.573438, 0.393836,-0.573438;;, - 63;4; -0.439033,-0.545202, 0.439033,-0.545202;;, - 64;4; -0.468704,-0.526665, 0.468704,-0.526665;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.475311,-0.523428, 0.475311,-0.523428;;, - 72;4; -0.463686,-0.533140, 0.463686,-0.533140;;, - 73;4; -0.442168,-0.549841, 0.442168,-0.549841;;, - 74;4; -0.410437,-0.572457, 0.410437,-0.572457;;, - 75;4; -0.370199,-0.598552, 0.370199,-0.598552;;, - 76;4; -0.324456,-0.625389, 0.324456,-0.625389;;, - 77;4; -0.276084,-0.650982, 0.276084,-0.650982;;, - 78;4; -0.200570,-0.671591, 0.200570,-0.671591;;, - 79;4; -0.080344,-0.683208, 0.080344,-0.683208;;, - 80;4; 0.050741,-0.686427,-0.050741,-0.686427;;, - 81;4; 0.145609,-0.685312,-0.145609,-0.685312;;, - 82;4; 0.178084,-0.684314,-0.178084,-0.684314;;, - 83;4; 0.152839,-0.683334,-0.152839,-0.683334;;, - 84;4; 0.079374,-0.680481,-0.079374,-0.680481;;, - 85;4; -0.026231,-0.676383, 0.026231,-0.676383;;, - 86;4; -0.131840,-0.672288, 0.131840,-0.672288;;, - 87;4; -0.205311,-0.669441, 0.205311,-0.669441;;, - 88;4; -0.230558,-0.668463, 0.230558,-0.668463;;, - 89;4; -0.186066,-0.667137, 0.186066,-0.667137;;, - 90;4; -0.060763,-0.663404, 0.060763,-0.663404;;, - 91;4; 0.100110,-0.658618,-0.100110,-0.658618;;, - 92;4; 0.225404,-0.654895,-0.225404,-0.654895;;, - 93;4; 0.269891,-0.653574,-0.269891,-0.653574;;, - 94;4; 0.235940,-0.647537,-0.235940,-0.647537;;, - 95;4; 0.135546,-0.629703,-0.135545,-0.629703;;, - 96;4; -0.017390,-0.602545, 0.017390,-0.602545;;, - 97;4; -0.190924,-0.571706, 0.190924,-0.571706;;, - 98;4; -0.344060,-0.544443, 0.344060,-0.544443;;, - 99;4; -0.444687,-0.526485, 0.444687,-0.526485;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.486606,-0.509250, 0.486606,-0.509250;;, - 107;4; -0.509936,-0.475816, 0.509936,-0.475816;;, - 108;4; -0.546268,-0.422784, 0.546268,-0.422784;;, - 109;4; -0.589788,-0.357419, 0.589788,-0.357419;;, - 110;4; -0.632105,-0.290770, 0.632105,-0.290770;;, - 111;4; -0.665017,-0.234075, 0.665017,-0.234075;;, - 112;4; -0.683166,-0.195061, 0.683166,-0.195060;;, - 113;4; -0.684609,-0.176946, 0.684609,-0.176946;;, - 114;4; -0.671337,-0.175330, 0.671337,-0.175330;;, - 115;4; -0.645206,-0.185654, 0.645206,-0.185654;;, - 116;4; -0.606384,-0.207896, 0.606384,-0.207896;;, - 117;4; -0.555625,-0.241531, 0.555625,-0.241531;;, - 118;4; -0.494423,-0.285381, 0.494423,-0.285381;;, - 119;4; -0.425106,-0.337516, 0.425106,-0.337516;;, - 120;4; -0.350795,-0.395276, 0.350795,-0.395276;;, - 121;4; -0.275181,-0.455447, 0.275181,-0.455447;;, - 122;4; -0.202145,-0.514593, 0.202145,-0.514593;;, - 123;4; -0.135320,-0.569439, 0.135320,-0.569439;;, - 124;4; -0.077722,-0.617208, 0.077722,-0.617208;;, - 125;4; -0.031546,-0.655826, 0.031546,-0.655826;;, - 126;4; 0.001862,-0.683953,-0.001862,-0.683953;;, - 127;4; 0.021892,-0.700910,-0.021892,-0.700910;;, - 128;4; 0.028506,-0.706532,-0.028506,-0.706532;;, - 129;4; 0.005515,-0.698106,-0.005515,-0.698106;;, - 130;4; -0.062433,-0.673230, 0.062433,-0.673230;;, - 131;4; -0.165924,-0.635352, 0.165924,-0.635352;;, - 132;4; -0.283423,-0.592294, 0.283423,-0.592294;;, - 133;4; -0.387247,-0.554146, 0.387247,-0.554146;;, - 134;4; -0.455581,-0.528956, 0.455581,-0.528956;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga2} - AnimationKey { //Position - 2; - 136; - 0;3; -0.839105, 3.022715,-1.476782;;, - 1;3; -0.839105, 3.022715,-1.476782;;, - 2;3; -0.866033, 3.013115,-1.465884;;, - 3;3; -0.946584, 2.984325,-1.433201;;, - 4;3; -1.075474, 2.938123,-1.380748;;, - 5;3; -1.238917, 2.879376,-1.314052;;, - 6;3; -1.414867, 2.816017,-1.242116;;, - 7;3; -1.577834, 2.757297,-1.175448;;, - 8;3; -1.706034, 2.711134,-1.123036;;, - 9;3; -1.786012, 2.682376,-1.090386;;, - 10;3; -1.812720, 2.672788,-1.079501;;, - 11;3; -1.812720, 2.672788,-1.079501;;, - 12;3; -1.812720, 2.672788,-1.079501;;, - 13;3; -1.812720, 2.672788,-1.079501;;, - 14;3; -1.812720, 2.672788,-1.079501;;, - 15;3; -1.812720, 2.672788,-1.079501;;, - 16;3; -1.812720, 2.672788,-1.079501;;, - 17;3; -1.812720, 2.672788,-1.079501;;, - 18;3; -1.812720, 2.672788,-1.079501;;, - 19;3; -1.812720, 2.672788,-1.079501;;, - 20;3; -1.812720, 2.672788,-1.079501;;, - 21;3; -1.812720, 2.672788,-1.079501;;, - 22;3; -1.812720, 2.672788,-1.079501;;, - 23;3; -1.812720, 2.672788,-1.079501;;, - 24;3; -1.812720, 2.672788,-1.079501;;, - 25;3; -1.812720, 2.672788,-1.079501;;, - 26;3; -1.812720, 2.672788,-1.079501;;, - 27;3; -1.677217, 2.721226,-1.134490;;, - 28;3; -1.325912, 2.847752,-1.278141;;, - 29;3; -0.974608, 2.974277,-1.421793;;, - 30;3; -0.839105, 3.022715,-1.476782;;, - 31;3; -0.839105, 3.022715,-1.476782;;, - 32;3; -0.839105, 3.022715,-1.476782;;, - 33;3; -0.839105, 3.022715,-1.476782;;, - 34;3; -0.839105, 3.022715,-1.476782;;, - 35;3; -0.839105, 3.022715,-1.476782;;, - 36;3; -0.839105, 3.022715,-1.476782;;, - 37;3; -0.839105, 3.022715,-1.476782;;, - 38;3; -0.839105, 3.022716,-1.476782;;, - 39;3; -0.839105, 3.022715,-1.476782;;, - 40;3; -0.839105, 3.022715,-1.476782;;, - 41;3; -0.839105, 3.022715,-1.476782;;, - 42;3; -0.839105, 3.022715,-1.476782;;, - 43;3; -0.839105, 3.022715,-1.476782;;, - 44;3; -0.839105, 3.022715,-1.476782;;, - 45;3; -0.839105, 3.022715,-1.476782;;, - 46;3; -0.839105, 3.022715,-1.476782;;, - 47;3; -0.839105, 3.022715,-1.476782;;, - 48;3; -0.839105, 3.022715,-1.476782;;, - 49;3; -0.839105, 3.022715,-1.476782;;, - 50;3; -0.839105, 3.022715,-1.476782;;, - 51;3; -0.839105, 3.022715,-1.476782;;, - 52;3; -0.839105, 3.022715,-1.476782;;, - 53;3; -0.839105, 3.022715,-1.476782;;, - 54;3; -0.839105, 3.022715,-1.476782;;, - 55;3; -0.839105, 3.022715,-1.476782;;, - 56;3; -0.839105, 3.022715,-1.476782;;, - 57;3; -0.839105, 3.022715,-1.476782;;, - 58;3; -0.839105, 3.022715,-1.476782;;, - 59;3; -0.839105, 3.022715,-1.476782;;, - 60;3; -0.839105, 3.022716,-1.476782;;, - 61;3; -0.839105, 3.022715,-1.476782;;, - 62;3; -0.839105, 3.022715,-1.476782;;, - 63;3; -0.839105, 3.022715,-1.476782;;, - 64;3; -0.839105, 3.022715,-1.476782;;, - 65;3; -0.839105, 3.022715,-1.476782;;, - 66;3; -0.839105, 3.022715,-1.476782;;, - 67;3; -0.839105, 3.022715,-1.476782;;, - 68;3; -0.839105, 3.022715,-1.476782;;, - 69;3; -0.839105, 3.022715,-1.476782;;, - 70;3; -0.839105, 3.022715,-1.476782;;, - 71;3; -0.865843, 3.024074,-1.454998;;, - 72;3; -0.944887, 3.028092,-1.390582;;, - 73;3; -1.065236, 3.034209,-1.292483;;, - 74;3; -1.201703, 3.041146,-1.181234;;, - 75;3; -1.322051, 3.047264,-1.083136;;, - 76;3; -1.401094, 3.051281,-1.018720;;, - 77;3; -1.427833, 3.052640,-0.996935;;, - 78;3; -1.427833, 3.052640,-0.996935;;, - 79;3; -1.427833, 3.052640,-0.996935;;, - 80;3; -1.427833, 3.052640,-0.996935;;, - 81;3; -1.427833, 3.052640,-0.996935;;, - 82;3; -1.427834, 3.052640,-0.996935;;, - 83;3; -1.427834, 3.052640,-0.996935;;, - 84;3; -1.427833, 3.052640,-0.996935;;, - 85;3; -1.427833, 3.052640,-0.996935;;, - 86;3; -1.427833, 3.052640,-0.996935;;, - 87;3; -1.427833, 3.052640,-0.996935;;, - 88;3; -1.427834, 3.052640,-0.996935;;, - 89;3; -1.427833, 3.052640,-0.996935;;, - 90;3; -1.427833, 3.052640,-0.996935;;, - 91;3; -1.427833, 3.052640,-0.996935;;, - 92;3; -1.427833, 3.052640,-0.996935;;, - 93;3; -1.427833, 3.052640,-0.996935;;, - 94;3; -1.401095, 3.051281,-1.018720;;, - 95;3; -1.322051, 3.047264,-1.083135;;, - 96;3; -1.201702, 3.041146,-1.181234;;, - 97;3; -1.065236, 3.034209,-1.292483;;, - 98;3; -0.944887, 3.028092,-1.390582;;, - 99;3; -0.865843, 3.024074,-1.454997;;, - 100;3; -0.839105, 3.022715,-1.476782;;, - 101;3; -0.839105, 3.022715,-1.476782;;, - 102;3; -0.839105, 3.022715,-1.476782;;, - 103;3; -0.839105, 3.022715,-1.476782;;, - 104;3; -0.839105, 3.022715,-1.476782;;, - 105;3; -0.839105, 3.022715,-1.476782;;, - 106;3; -0.839105, 3.022715,-1.476782;;, - 107;3; -0.839105, 3.022715,-1.476782;;, - 108;3; -0.839105, 3.022716,-1.476782;;, - 109;3; -0.839105, 3.022715,-1.476782;;, - 110;3; -0.839105, 3.022715,-1.476782;;, - 111;3; -0.839105, 3.022715,-1.476782;;, - 112;3; -0.839105, 3.022715,-1.476782;;, - 113;3; -0.839105, 3.022715,-1.476782;;, - 114;3; -0.839105, 3.022715,-1.476782;;, - 115;3; -0.839105, 3.022715,-1.476782;;, - 116;3; -0.839105, 3.022715,-1.476782;;, - 117;3; -0.839105, 3.022715,-1.476782;;, - 118;3; -0.839105, 3.022715,-1.476782;;, - 119;3; -0.839105, 3.022715,-1.476782;;, - 120;3; -0.839105, 3.022715,-1.476782;;, - 121;3; -0.839105, 3.022715,-1.476782;;, - 122;3; -0.839105, 3.022715,-1.476782;;, - 123;3; -0.839105, 3.022715,-1.476782;;, - 124;3; -0.839105, 3.022716,-1.476782;;, - 125;3; -0.839105, 3.022715,-1.476782;;, - 126;3; -0.839105, 3.022715,-1.476782;;, - 127;3; -0.839105, 3.022715,-1.476782;;, - 128;3; -0.839105, 3.022715,-1.476782;;, - 129;3; -0.839105, 3.022715,-1.476782;;, - 130;3; -0.839105, 3.022715,-1.476782;;, - 131;3; -0.839105, 3.022715,-1.476782;;, - 132;3; -0.839105, 3.022715,-1.476782;;, - 133;3; -0.839105, 3.022715,-1.476782;;, - 134;3; -0.839105, 3.022715,-1.476782;;, - 135;3; -0.839105, 3.022715,-1.476782;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.466981,-0.525492, 0.466981,-0.525492;;, - 3;4; -0.431747,-0.540754, 0.431747,-0.540754;;, - 4;4; -0.375232,-0.565208, 0.375232,-0.565208;;, - 5;4; -0.303413,-0.596254, 0.303413,-0.596254;;, - 6;4; -0.225989,-0.629698, 0.225989,-0.629698;;, - 7;4; -0.154254,-0.660673, 0.154254,-0.660673;;, - 8;4; -0.097861,-0.685025, 0.097861,-0.685025;;, - 9;4; -0.062727,-0.700201, 0.062727,-0.700201;;, - 10;4; -0.051012,-0.705264, 0.051012,-0.705264;;, - 11;4; -0.065174,-0.682927, 0.055983,-0.718949;;, - 12;4; -0.105055,-0.620024, 0.069988,-0.757488;;, - 13;4; -0.156250,-0.539272, 0.087973,-0.806962;;, - 14;4; -0.196121,-0.476381, 0.101981,-0.845494;;, - 15;4; -0.210279,-0.454050, 0.106953,-0.859175;;, - 16;4; -0.207363,-0.458649, 0.105930,-0.856357;;, - 17;4; -0.198575,-0.472514, 0.102846,-0.847857;;, - 18;4; -0.184170,-0.495241, 0.097793,-0.833919;;, - 19;4; -0.164979,-0.525523, 0.091062,-0.815347;;, - 20;4; -0.142514,-0.560969, 0.083181,-0.793609;;, - 21;4; -0.118873,-0.598265, 0.074883,-0.770745;;, - 22;4; -0.096392,-0.633725, 0.066985,-0.749022;;, - 23;4; -0.077174,-0.664028, 0.060227,-0.730473;;, - 24;4; -0.062742,-0.686778, 0.055146,-0.716559;;, - 25;4; -0.053934,-0.700660, 0.052042,-0.708076;;, - 26;4; -0.051012,-0.705264, 0.051012,-0.705264;;, - 27;4; -0.110251,-0.679623, 0.110251,-0.679622;;, - 28;4; -0.264831,-0.612867, 0.264831,-0.612867;;, - 29;4; -0.419455,-0.546073, 0.419455,-0.546073;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.473719,-0.524120, 0.473719,-0.524120;;, - 37;4; -0.458727,-0.535209, 0.458727,-0.535209;;, - 38;4; -0.435075,-0.552608, 0.435075,-0.552608;;, - 39;4; -0.406169,-0.573697, 0.406169,-0.573697;;, - 40;4; -0.377103,-0.594610, 0.377103,-0.594610;;, - 41;4; -0.352997,-0.611510, 0.352997,-0.611510;;, - 42;4; -0.337312,-0.621841, 0.337312,-0.621841;;, - 43;4; -0.331432,-0.624622, 0.331432,-0.624622;;, - 44;4; -0.333325,-0.621077, 0.333325,-0.621077;;, - 45;4; -0.340931,-0.612412, 0.340931,-0.612412;;, - 46;4; -0.354217,-0.598676, 0.354217,-0.598676;;, - 47;4; -0.372897,-0.580147, 0.372897,-0.580147;;, - 48;4; -0.396367,-0.557394, 0.396367,-0.557394;;, - 49;4; -0.423659,-0.531316, 0.423659,-0.531316;;, - 50;4; -0.453455,-0.503126, 0.453455,-0.503126;;, - 51;4; -0.484175,-0.474267, 0.484175,-0.474267;;, - 52;4; -0.514143,-0.446263, 0.514143,-0.446263;;, - 53;4; -0.541771,-0.420551, 0.541771,-0.420551;;, - 54;4; -0.565727,-0.398327, 0.565727,-0.398327;;, - 55;4; -0.585025,-0.380470, 0.585025,-0.380470;;, - 56;4; -0.599041,-0.367527, 0.599041,-0.367527;;, - 57;4; -0.607470,-0.359756, 0.607470,-0.359756;;, - 58;4; -0.610260,-0.357187, 0.610260,-0.357187;;, - 59;4; -0.604294,-0.364590, 0.604294,-0.364590;;, - 60;4; -0.586645,-0.386491, 0.586645,-0.386491;;, - 61;4; -0.559756,-0.419860, 0.559756,-0.419860;;, - 62;4; -0.529254,-0.457710, 0.529254,-0.457710;;, - 63;4; -0.502359,-0.491084, 0.502359,-0.491084;;, - 64;4; -0.484704,-0.512991, 0.484704,-0.512991;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.460656,-0.524329, 0.472480,-0.528112;;, - 72;4; -0.406055,-0.536425, 0.453056,-0.551218;;, - 73;4; -0.320015,-0.556049, 0.421106,-0.587159;;, - 74;4; -0.216913,-0.580635, 0.380308,-0.629373;;, - 75;4; -0.116775,-0.606224, 0.336693,-0.669039;;, - 76;4; -0.036494,-0.629187, 0.296020,-0.698934;;, - 77;4; 0.015396,-0.647427, 0.261789,-0.715589;;, - 78;4; 0.048143,-0.660718, 0.231695,-0.722469;;, - 79;4; 0.071154,-0.668972, 0.204615,-0.723282;;, - 80;4; 0.083889,-0.672760, 0.184854,-0.719175;;, - 81;4; 0.089557,-0.674496, 0.175118,-0.713470;;, - 82;4; 0.092776,-0.676680, 0.174551,-0.709245;;, - 83;4; 0.086438,-0.675511, 0.197871,-0.699656;;, - 84;4; 0.061786,-0.666400, 0.259528,-0.677463;;, - 85;4; 0.024588,-0.651684, 0.346396,-0.647188;;, - 86;4; -0.013328,-0.636307, 0.432537,-0.617581;;, - 87;4; -0.039961,-0.625371, 0.492200,-0.597225;;, - 88;4; -0.049161,-0.621568, 0.512652,-0.590275;;, - 89;4; -0.052544,-0.628692, 0.474833,-0.600179;;, - 90;4; -0.062064,-0.648758, 0.368318,-0.628076;;, - 91;4; -0.074285,-0.674523, 0.231554,-0.663897;;, - 92;4; -0.083812,-0.694587, 0.125026,-0.691801;;, - 93;4; -0.087199,-0.701710, 0.087199,-0.701710;;, - 94;4; -0.104959,-0.693486, 0.104959,-0.693486;;, - 95;4; -0.157490,-0.669166, 0.157490,-0.669166;;, - 96;4; -0.237518,-0.632118, 0.237518,-0.632118;;, - 97;4; -0.328304,-0.590085, 0.328304,-0.590085;;, - 98;4; -0.408375,-0.553000, 0.408375,-0.553000;;, - 99;4; -0.460954,-0.528638, 0.460954,-0.528638;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.469065,-0.526544, 0.469065,-0.526544;;, - 107;4; -0.440101,-0.544774, 0.440101,-0.544774;;, - 108;4; -0.394254,-0.573184, 0.394254,-0.573184;;, - 109;4; -0.337930,-0.607251, 0.337930,-0.607251;;, - 110;4; -0.280805,-0.640433, 0.280805,-0.640433;;, - 111;4; -0.232673,-0.666325, 0.232673,-0.666325;;, - 112;4; -0.200227,-0.680740, 0.200227,-0.680739;;, - 113;4; -0.186209,-0.682148, 0.186209,-0.682148;;, - 114;4; -0.186943,-0.672145, 0.186943,-0.672145;;, - 115;4; -0.198654,-0.652224, 0.198654,-0.652224;;, - 116;4; -0.221302,-0.622513, 0.221302,-0.622513;;, - 117;4; -0.254376,-0.583588, 0.254376,-0.583588;;, - 118;4; -0.296759,-0.536600, 0.296759,-0.536600;;, - 119;4; -0.346640,-0.483340, 0.346640,-0.483340;;, - 120;4; -0.401535,-0.426212, 0.401535,-0.426212;;, - 121;4; -0.458457,-0.368058, 0.458457,-0.368058;;, - 122;4; -0.514218,-0.311870, 0.514218,-0.311870;;, - 123;4; -0.565790,-0.260449, 0.565790,-0.260449;;, - 124;4; -0.610620,-0.216119, 0.610620,-0.216119;;, - 125;4; -0.646803,-0.180575, 0.646803,-0.180575;;, - 126;4; -0.673125,-0.154856, 0.673125,-0.154856;;, - 127;4; -0.688976,-0.139435, 0.688976,-0.139435;;, - 128;4; -0.694228,-0.134342, 0.694228,-0.134342;;, - 129;4; -0.684464,-0.151844, 0.684464,-0.151844;;, - 130;4; -0.655614,-0.203587, 0.655614,-0.203587;;, - 131;4; -0.611674,-0.282403, 0.611674,-0.282403;;, - 132;4; -0.561772,-0.371863, 0.561772,-0.371863;;, - 133;4; -0.517650,-0.450858, 0.517650,-0.450858;;, - 134;4; -0.488588,-0.502807, 0.488588,-0.502807;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_hvost} - AnimationKey { //Position - 2; - 136; - 0;3; 0.105165,-0.163946, 0.004525;;, - 1;3; 0.105165,-0.163946, 0.004525;;, - 2;3; 0.105165,-0.163946, 0.004525;;, - 3;3; 0.105165,-0.163946, 0.004525;;, - 4;3; 0.105165,-0.163946, 0.004525;;, - 5;3; 0.105165,-0.163946, 0.004525;;, - 6;3; 0.105165,-0.163946, 0.004525;;, - 7;3; 0.105165,-0.163946, 0.004525;;, - 8;3; 0.105165,-0.163946, 0.004525;;, - 9;3; 0.105165,-0.163946, 0.004525;;, - 10;3; 0.105165,-0.163946, 0.004525;;, - 11;3; 0.105165,-0.163946, 0.004525;;, - 12;3; 0.105165,-0.163946, 0.004525;;, - 13;3; 0.105165,-0.163946, 0.004525;;, - 14;3; 0.105165,-0.163946, 0.004525;;, - 15;3; 0.105165,-0.163946, 0.004525;;, - 16;3; 0.105165,-0.163946, 0.004525;;, - 17;3; 0.105165,-0.163946, 0.004525;;, - 18;3; 0.105165,-0.163946, 0.004525;;, - 19;3; 0.105165,-0.163946, 0.004525;;, - 20;3; 0.105165,-0.163946, 0.004525;;, - 21;3; 0.105165,-0.163946, 0.004525;;, - 22;3; 0.105165,-0.163946, 0.004525;;, - 23;3; 0.105165,-0.163946, 0.004525;;, - 24;3; 0.105165,-0.163946, 0.004525;;, - 25;3; 0.105165,-0.163946, 0.004525;;, - 26;3; 0.105165,-0.163946, 0.004525;;, - 27;3; 0.105165,-0.163946, 0.004525;;, - 28;3; 0.105165,-0.163946, 0.004525;;, - 29;3; 0.105165,-0.163946, 0.004525;;, - 30;3; 0.105165,-0.163946, 0.004525;;, - 31;3; 0.105165,-0.163946, 0.004525;;, - 32;3; 0.105165,-0.163946, 0.004525;;, - 33;3; 0.105165,-0.163946, 0.004525;;, - 34;3; 0.105165,-0.163946, 0.004525;;, - 35;3; 0.105165,-0.163946, 0.004525;;, - 36;3; 0.105165,-0.163946, 0.004525;;, - 37;3; 0.105165,-0.163946, 0.004525;;, - 38;3; 0.105165,-0.163946, 0.004525;;, - 39;3; 0.105165,-0.163946, 0.004525;;, - 40;3; 0.105165,-0.163946, 0.004525;;, - 41;3; 0.105165,-0.163946, 0.004525;;, - 42;3; 0.105165,-0.163946, 0.004525;;, - 43;3; 0.105165,-0.163946, 0.004525;;, - 44;3; 0.105165,-0.163946, 0.004525;;, - 45;3; 0.105165,-0.163946, 0.004525;;, - 46;3; 0.105165,-0.163946, 0.004525;;, - 47;3; 0.105165,-0.163946, 0.004525;;, - 48;3; 0.105165,-0.163946, 0.004525;;, - 49;3; 0.105165,-0.163946, 0.004525;;, - 50;3; 0.105165,-0.163946, 0.004525;;, - 51;3; 0.105165,-0.163946, 0.004525;;, - 52;3; 0.105165,-0.163946, 0.004525;;, - 53;3; 0.105165,-0.163946, 0.004525;;, - 54;3; 0.105165,-0.163946, 0.004525;;, - 55;3; 0.105165,-0.163946, 0.004525;;, - 56;3; 0.105165,-0.163946, 0.004525;;, - 57;3; 0.105165,-0.163946, 0.004525;;, - 58;3; 0.105165,-0.163946, 0.004525;;, - 59;3; 0.105165,-0.163946, 0.004525;;, - 60;3; 0.105165,-0.163946, 0.004525;;, - 61;3; 0.105165,-0.163946, 0.004525;;, - 62;3; 0.105165,-0.163946, 0.004525;;, - 63;3; 0.105165,-0.163946, 0.004525;;, - 64;3; 0.105165,-0.163946, 0.004525;;, - 65;3; 0.105165,-0.163946, 0.004525;;, - 66;3; 0.105165,-0.163946, 0.004525;;, - 67;3; 0.105165,-0.163946, 0.004525;;, - 68;3; 0.105165,-0.163946, 0.004525;;, - 69;3; 0.105165,-0.163946, 0.004525;;, - 70;3; 0.105165,-0.163946, 0.004525;;, - 71;3; 0.105165,-0.163946, 0.004525;;, - 72;3; 0.105165,-0.163946, 0.004525;;, - 73;3; 0.105165,-0.163946, 0.004525;;, - 74;3; 0.105165,-0.163946, 0.004525;;, - 75;3; 0.105165,-0.163946, 0.004525;;, - 76;3; 0.105166,-0.163946, 0.004525;;, - 77;3; 0.105165,-0.163946, 0.004525;;, - 78;3; 0.105165,-0.163946, 0.004525;;, - 79;3; 0.105165,-0.163946, 0.004525;;, - 80;3; 0.105165,-0.163946, 0.004525;;, - 81;3; 0.105166,-0.163946, 0.004525;;, - 82;3; 0.105165,-0.163946, 0.004525;;, - 83;3; 0.105165,-0.163946, 0.004525;;, - 84;3; 0.105166,-0.163946, 0.004525;;, - 85;3; 0.105165,-0.163946, 0.004525;;, - 86;3; 0.105165,-0.163946, 0.004525;;, - 87;3; 0.105165,-0.163946, 0.004525;;, - 88;3; 0.105165,-0.163946, 0.004525;;, - 89;3; 0.105165,-0.163946, 0.004525;;, - 90;3; 0.105166,-0.163946, 0.004525;;, - 91;3; 0.105165,-0.163946, 0.004525;;, - 92;3; 0.105166,-0.163946, 0.004525;;, - 93;3; 0.105165,-0.163946, 0.004525;;, - 94;3; 0.105165,-0.163946, 0.004525;;, - 95;3; 0.105165,-0.163946, 0.004525;;, - 96;3; 0.105165,-0.163946, 0.004525;;, - 97;3; 0.105165,-0.163946, 0.004525;;, - 98;3; 0.105165,-0.163946, 0.004525;;, - 99;3; 0.105165,-0.163946, 0.004525;;, - 100;3; 0.105165,-0.163946, 0.004525;;, - 101;3; 0.105165,-0.163946, 0.004525;;, - 102;3; 0.105165,-0.163946, 0.004525;;, - 103;3; 0.105165,-0.163946, 0.004525;;, - 104;3; 0.105165,-0.163946, 0.004525;;, - 105;3; 0.105165,-0.163946, 0.004525;;, - 106;3; 0.105165,-0.163946, 0.004525;;, - 107;3; 0.105165,-0.163946, 0.004525;;, - 108;3; 0.105165,-0.163946, 0.004525;;, - 109;3; 0.105165,-0.163946, 0.004525;;, - 110;3; 0.105165,-0.163946, 0.004525;;, - 111;3; 0.105165,-0.163946, 0.004525;;, - 112;3; 0.105165,-0.163946, 0.004525;;, - 113;3; 0.105165,-0.163946, 0.004525;;, - 114;3; 0.105165,-0.163946, 0.004525;;, - 115;3; 0.105165,-0.163946, 0.004525;;, - 116;3; 0.105165,-0.163946, 0.004525;;, - 117;3; 0.105165,-0.163946, 0.004525;;, - 118;3; 0.105165,-0.163946, 0.004525;;, - 119;3; 0.105165,-0.163946, 0.004525;;, - 120;3; 0.105165,-0.163946, 0.004525;;, - 121;3; 0.105165,-0.163946, 0.004525;;, - 122;3; 0.105165,-0.163946, 0.004525;;, - 123;3; 0.105165,-0.163946, 0.004525;;, - 124;3; 0.105165,-0.163946, 0.004525;;, - 125;3; 0.105165,-0.163946, 0.004525;;, - 126;3; 0.105165,-0.163946, 0.004525;;, - 127;3; 0.105165,-0.163946, 0.004525;;, - 128;3; 0.105165,-0.163946, 0.004525;;, - 129;3; 0.105165,-0.163946, 0.004525;;, - 130;3; 0.105165,-0.163946, 0.004525;;, - 131;3; 0.105165,-0.163946, 0.004525;;, - 132;3; 0.105165,-0.163946, 0.004525;;, - 133;3; 0.105165,-0.163946, 0.004525;;, - 134;3; 0.105165,-0.163946, 0.004525;;, - 135;3; 0.105165,-0.163946, 0.004525;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 1;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 2;4; -0.036986, 0.992936,-0.035773,-0.001159;;, - 3;4; -0.088718, 0.974143,-0.035107, 0.000846;;, - 4;4; -0.171892, 0.943653,-0.034046, 0.004063;;, - 5;4; -0.277985, 0.904276,-0.032710, 0.008146;;, - 6;4; -0.393048, 0.860817,-0.031294, 0.012533;;, - 7;4; -0.500743, 0.819045,-0.030017, 0.016565;;, - 8;4; -0.586998, 0.784040,-0.029066, 0.019684;;, - 9;4; -0.643081, 0.759041,-0.028550, 0.021552;;, - 10;4; -0.665677, 0.745371,-0.028507, 0.022050;;, - 11;4; -0.671234, 0.737657,-0.029475, 0.020455;;, - 12;4; -0.676301, 0.730430,-0.032014, 0.016006;;, - 13;4; -0.680831, 0.723756,-0.036114, 0.008717;;, - 14;4; -0.684784, 0.717699,-0.041711,-0.001293;;, - 15;4; -0.688133, 0.712316,-0.048662,-0.013770;;, - 16;4; -0.690864, 0.707649,-0.056737,-0.028297;;, - 17;4; -0.692990, 0.703720,-0.065620,-0.044301;;, - 18;4; -0.694549, 0.700522,-0.074918,-0.061073;;, - 19;4; -0.695605, 0.698015,-0.084200,-0.077830;;, - 20;4; -0.696242, 0.696134,-0.093033,-0.093787;;, - 21;4; -0.696556, 0.694792,-0.101028,-0.108238;;, - 22;4; -0.696645, 0.693890,-0.107871,-0.120611;;, - 23;4; -0.696598, 0.693330,-0.113336,-0.130495;;, - 24;4; -0.696494, 0.693021,-0.117283,-0.137638;;, - 25;4; -0.696397, 0.692883,-0.119651,-0.141922;;, - 26;4; -0.696356, 0.692850,-0.120433,-0.143339;;, - 27;4; -0.602499, 0.735233,-0.108758,-0.123761;;, - 28;4; -0.358072, 0.845999,-0.078215,-0.072586;;, - 29;4; -0.113627, 0.956769,-0.047672,-0.021409;;, - 30;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 31;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 32;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 33;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 34;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 35;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 36;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 37;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 38;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 39;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 40;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 41;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 42;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 43;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 44;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 45;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 46;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 47;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 48;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 49;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 50;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 51;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 52;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 53;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 54;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 55;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 56;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 57;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 58;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 59;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 60;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 61;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 62;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 63;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 64;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 65;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 66;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 67;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 68;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 69;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 70;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 71;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 72;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 73;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 74;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 75;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 76;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 77;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 78;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 79;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 80;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 81;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 82;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 83;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 84;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 85;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 86;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 87;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 88;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 89;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 90;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 91;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 92;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 93;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 94;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 95;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 96;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 97;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 98;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 99;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 100;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 101;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 102;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 103;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 104;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 105;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 106;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 107;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 108;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 109;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 110;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 111;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 112;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 113;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 114;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 115;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 116;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 117;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 118;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 119;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 120;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 121;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 122;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 123;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 124;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 125;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 126;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 127;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 128;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 129;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 130;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 131;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 132;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 133;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 134;4; -0.019755, 0.999157,-0.035996,-0.001828;;, - 135;4; -0.019755, 0.999157,-0.035996,-0.001828;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_sheya} - AnimationKey { //Position - 2; - 136; - 0;3; 0.000000, 3.190314,-0.593113;;, - 1;3; 0.000000, 3.190314,-0.593113;;, - 2;3; 0.000000, 3.190314,-0.593113;;, - 3;3; 0.000000, 3.190314,-0.593113;;, - 4;3; 0.000000, 3.190314,-0.593113;;, - 5;3; -0.000000, 3.190314,-0.593113;;, - 6;3; 0.000000, 3.190314,-0.593113;;, - 7;3; 0.000000, 3.190314,-0.593113;;, - 8;3; 0.000000, 3.190314,-0.593113;;, - 9;3; 0.000000, 3.190314,-0.593113;;, - 10;3; 0.000000, 3.190314,-0.593113;;, - 11;3; 0.000000, 3.190314,-0.593113;;, - 12;3; 0.000000, 3.190314,-0.593113;;, - 13;3; 0.000000, 3.190314,-0.593113;;, - 14;3; 0.000000, 3.190314,-0.593113;;, - 15;3; 0.000000, 3.190314,-0.593113;;, - 16;3; 0.000000, 3.190314,-0.593113;;, - 17;3; 0.000000, 3.190314,-0.593113;;, - 18;3; 0.000000, 3.190314,-0.593113;;, - 19;3; 0.000000, 3.190314,-0.593113;;, - 20;3; 0.000000, 3.190314,-0.593113;;, - 21;3; 0.000000, 3.190314,-0.593113;;, - 22;3; 0.000000, 3.190314,-0.593113;;, - 23;3; 0.000000, 3.190314,-0.593113;;, - 24;3; 0.000000, 3.190314,-0.593113;;, - 25;3; 0.000000, 3.190314,-0.593113;;, - 26;3; 0.000000, 3.190314,-0.593113;;, - 27;3; 0.000000, 3.190314,-0.593113;;, - 28;3; 0.000000, 3.190314,-0.593113;;, - 29;3; 0.000000, 3.190314,-0.593113;;, - 30;3; 0.000000, 3.190314,-0.593113;;, - 31;3; 0.000000, 3.190314,-0.593113;;, - 32;3; 0.000000, 3.190314,-0.593113;;, - 33;3; 0.000000, 3.190314,-0.593113;;, - 34;3; 0.000000, 3.190314,-0.593113;;, - 35;3; 0.000000, 3.190314,-0.593113;;, - 36;3; 0.000000, 3.190314,-0.593113;;, - 37;3; 0.000000, 3.190314,-0.593113;;, - 38;3; 0.000000, 3.190314,-0.593113;;, - 39;3; 0.000000, 3.190314,-0.593113;;, - 40;3; 0.000000, 3.190314,-0.593113;;, - 41;3; 0.000000, 3.190314,-0.593113;;, - 42;3; 0.000000, 3.190314,-0.593113;;, - 43;3; 0.000000, 3.190314,-0.593113;;, - 44;3; 0.000000, 3.190314,-0.593113;;, - 45;3; 0.000000, 3.190314,-0.593113;;, - 46;3; 0.000000, 3.190314,-0.593113;;, - 47;3; 0.000000, 3.190314,-0.593113;;, - 48;3; 0.000000, 3.190314,-0.593113;;, - 49;3; 0.000000, 3.190314,-0.593113;;, - 50;3; 0.000000, 3.190314,-0.593113;;, - 51;3; 0.000000, 3.190314,-0.593113;;, - 52;3; 0.000000, 3.190314,-0.593113;;, - 53;3; 0.000000, 3.190314,-0.593113;;, - 54;3; 0.000000, 3.190314,-0.593113;;, - 55;3; 0.000000, 3.190314,-0.593113;;, - 56;3; 0.000000, 3.190314,-0.593113;;, - 57;3; 0.000000, 3.190314,-0.593113;;, - 58;3; 0.000000, 3.190314,-0.593113;;, - 59;3; 0.000000, 3.190314,-0.593113;;, - 60;3; 0.000000, 3.190314,-0.593113;;, - 61;3; 0.000000, 3.190314,-0.593113;;, - 62;3; 0.000000, 3.190314,-0.593113;;, - 63;3; 0.000000, 3.190314,-0.593113;;, - 64;3; 0.000000, 3.190314,-0.593113;;, - 65;3; 0.000000, 3.190314,-0.593113;;, - 66;3; 0.000000, 3.190314,-0.593113;;, - 67;3; 0.000000, 3.190314,-0.593113;;, - 68;3; 0.000000, 3.190314,-0.593113;;, - 69;3; 0.000000, 3.190314,-0.593113;;, - 70;3; 0.000000, 3.190314,-0.593113;;, - 71;3; 0.000000, 3.190314,-0.593113;;, - 72;3; 0.000000, 3.190314,-0.593113;;, - 73;3; -0.000000, 3.190314,-0.593113;;, - 74;3; 0.000000, 3.190314,-0.593113;;, - 75;3; 0.000000, 3.190314,-0.593113;;, - 76;3; 0.000000, 3.190314,-0.593113;;, - 77;3; 0.000000, 3.190314,-0.593113;;, - 78;3; 0.000000, 3.190314,-0.593113;;, - 79;3; 0.000000, 3.190314,-0.593113;;, - 80;3; 0.000000, 3.190314,-0.593113;;, - 81;3; 0.000000, 3.190314,-0.593113;;, - 82;3; -0.000000, 3.190314,-0.593113;;, - 83;3; -0.000000, 3.190314,-0.593113;;, - 84;3; 0.000000, 3.190314,-0.593113;;, - 85;3; 0.000000, 3.190314,-0.593113;;, - 86;3; 0.000000, 3.190314,-0.593113;;, - 87;3; 0.000000, 3.190314,-0.593113;;, - 88;3; -0.000000, 3.190314,-0.593113;;, - 89;3; 0.000000, 3.190314,-0.593113;;, - 90;3; 0.000000, 3.190314,-0.593113;;, - 91;3; 0.000000, 3.190314,-0.593113;;, - 92;3; 0.000000, 3.190314,-0.593113;;, - 93;3; 0.000000, 3.190314,-0.593113;;, - 94;3; 0.000000, 3.190314,-0.593113;;, - 95;3; 0.000000, 3.190314,-0.593113;;, - 96;3; 0.000000, 3.190314,-0.593113;;, - 97;3; 0.000000, 3.190314,-0.593113;;, - 98;3; 0.000000, 3.190314,-0.593113;;, - 99;3; 0.000000, 3.190314,-0.593113;;, - 100;3; 0.000000, 3.190314,-0.593113;;, - 101;3; 0.000000, 3.190314,-0.593113;;, - 102;3; 0.000000, 3.190314,-0.593113;;, - 103;3; 0.000000, 3.190314,-0.593113;;, - 104;3; 0.000000, 3.190314,-0.593113;;, - 105;3; 0.000000, 3.190314,-0.593113;;, - 106;3; 0.000000, 3.190314,-0.593113;;, - 107;3; 0.000000, 3.190314,-0.593113;;, - 108;3; 0.000000, 3.190314,-0.593113;;, - 109;3; 0.000000, 3.190314,-0.593113;;, - 110;3; 0.000000, 3.190314,-0.593113;;, - 111;3; 0.000000, 3.190314,-0.593113;;, - 112;3; 0.000000, 3.190314,-0.593113;;, - 113;3; 0.000000, 3.190314,-0.593113;;, - 114;3; 0.000000, 3.190314,-0.593113;;, - 115;3; 0.000000, 3.190314,-0.593113;;, - 116;3; 0.000000, 3.190314,-0.593113;;, - 117;3; 0.000000, 3.190314,-0.593113;;, - 118;3; 0.000000, 3.190314,-0.593113;;, - 119;3; 0.000000, 3.190314,-0.593113;;, - 120;3; 0.000000, 3.190314,-0.593113;;, - 121;3; 0.000000, 3.190314,-0.593113;;, - 122;3; 0.000000, 3.190314,-0.593113;;, - 123;3; 0.000000, 3.190314,-0.593113;;, - 124;3; 0.000000, 3.190314,-0.593113;;, - 125;3; 0.000000, 3.190314,-0.593113;;, - 126;3; 0.000000, 3.190314,-0.593113;;, - 127;3; 0.000000, 3.190314,-0.593113;;, - 128;3; 0.000000, 3.190314,-0.593113;;, - 129;3; 0.000000, 3.190314,-0.593113;;, - 130;3; 0.000000, 3.190314,-0.593113;;, - 131;3; 0.000000, 3.190314,-0.593113;;, - 132;3; 0.000000, 3.190314,-0.593113;;, - 133;3; 0.000000, 3.190314,-0.593113;;, - 134;3; 0.000000, 3.190314,-0.593113;;, - 135;3; 0.000000, 3.190314,-0.593113;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 1;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 2;4; -0.978165,-0.079127, 0.014938, 0.034135;;, - 3;4; -0.963024,-0.120054, 0.016233, 0.033082;;, - 4;4; -0.938032,-0.186742, 0.018343, 0.031354;;, - 5;4; -0.904970,-0.273431, 0.021079, 0.029087;;, - 6;4; -0.867207,-0.370090, 0.024112, 0.026529;;, - 7;4; -0.829022,-0.464515, 0.027046, 0.023987;;, - 8;4; -0.794374,-0.545825, 0.029526, 0.021741;;, - 9;4; -0.765971,-0.606912, 0.031326, 0.019976;;, - 10;4; -0.745110,-0.644699, 0.032355, 0.018777;;, - 11;4; -0.729618,-0.667731, 0.032926, 0.017999;;, - 12;4; -0.717639,-0.683688, 0.033327, 0.017490;;, - 13;4; -0.709413,-0.691853, 0.033533, 0.017179;;, - 14;4; -0.703819,-0.694263, 0.033586, 0.016901;;, - 15;4; -0.699191,-0.694232, 0.033566, 0.016517;;, - 16;4; -0.695251,-0.693652, 0.026493, 0.009463;;, - 17;4; -0.692708,-0.692521, 0.005646,-0.010487;;, - 18;4; -0.691613,-0.690692,-0.026083,-0.040606;;, - 19;4; -0.691720,-0.688106,-0.062037,-0.074638;;, - 20;4; -0.692501,-0.684850,-0.093692,-0.104583;;, - 21;4; -0.693374,-0.681117,-0.114405,-0.124220;;, - 22;4; -0.693931,-0.677113,-0.121302,-0.130860;;, - 23;4; -0.694806,-0.674748,-0.100236,-0.111251;;, - 24;4; -0.700564,-0.672693,-0.045228,-0.059267;;, - 25;4; -0.717075,-0.663966, 0.010208,-0.005451;;, - 26;4; -0.745110,-0.644699, 0.032355, 0.018777;;, - 27;4; -0.799057,-0.548950, 0.030817, 0.024479;;, - 28;4; -0.883250,-0.341111, 0.024270, 0.029844;;, - 29;4; -0.956591,-0.141164, 0.017252, 0.033385;;, - 30;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 31;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 32;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 33;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 34;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 35;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 36;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 37;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 38;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 39;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 40;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 41;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 42;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 43;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 44;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 45;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 46;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 47;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 48;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 49;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 50;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 51;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 52;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 53;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 54;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 55;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 56;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 57;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 58;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 59;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 60;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 61;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 62;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 63;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 64;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 65;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 66;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 67;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 68;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 69;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 70;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 71;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 72;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 73;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 74;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 75;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 76;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 77;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 78;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 79;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 80;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 81;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 82;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 83;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 84;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 85;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 86;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 87;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 88;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 89;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 90;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 91;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 92;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 93;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 94;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 95;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 96;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 97;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 98;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 99;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 100;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 101;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 102;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 103;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 104;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 105;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 106;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 107;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 108;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 109;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 110;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 111;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 112;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 113;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 114;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 115;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 116;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 117;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 118;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 119;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 120;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 121;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 122;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 123;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 124;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 125;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 126;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 127;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 128;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 129;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 130;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 131;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 132;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 133;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 134;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 135;4; -0.983117,-0.065618, 0.014510, 0.034480;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_head} - AnimationKey { //Position - 2; - 136; - 0;3; 0.068622, 0.902305, 0.030138;;, - 1;3; 0.068622, 0.902305, 0.030138;;, - 2;3; 0.068622, 0.902305, 0.030138;;, - 3;3; 0.068622, 0.902305, 0.030138;;, - 4;3; 0.068621, 0.902305, 0.030138;;, - 5;3; 0.068621, 0.902305, 0.030138;;, - 6;3; 0.068622, 0.902305, 0.030138;;, - 7;3; 0.068622, 0.902305, 0.030138;;, - 8;3; 0.068622, 0.902305, 0.030138;;, - 9;3; 0.068621, 0.902305, 0.030138;;, - 10;3; 0.068622, 0.902305, 0.030138;;, - 11;3; 0.068622, 0.902305, 0.030138;;, - 12;3; 0.068621, 0.902305, 0.030138;;, - 13;3; 0.068621, 0.902305, 0.030138;;, - 14;3; 0.068621, 0.902305, 0.030138;;, - 15;3; 0.068622, 0.902305, 0.030138;;, - 16;3; 0.068622, 0.902305, 0.030138;;, - 17;3; 0.068621, 0.902305, 0.030138;;, - 18;3; 0.068621, 0.902305, 0.030138;;, - 19;3; 0.068621, 0.902305, 0.030138;;, - 20;3; 0.068621, 0.902305, 0.030138;;, - 21;3; 0.068621, 0.902305, 0.030138;;, - 22;3; 0.068622, 0.902305, 0.030138;;, - 23;3; 0.068622, 0.902305, 0.030138;;, - 24;3; 0.068621, 0.902305, 0.030138;;, - 25;3; 0.068622, 0.902305, 0.030138;;, - 26;3; 0.068622, 0.902305, 0.030138;;, - 27;3; 0.068622, 0.902305, 0.030138;;, - 28;3; 0.068621, 0.902305, 0.030138;;, - 29;3; 0.068621, 0.902305, 0.030138;;, - 30;3; 0.068622, 0.902305, 0.030138;;, - 31;3; 0.068622, 0.902305, 0.030138;;, - 32;3; 0.068622, 0.902305, 0.030138;;, - 33;3; 0.068622, 0.902305, 0.030138;;, - 34;3; 0.068622, 0.902305, 0.030138;;, - 35;3; 0.068622, 0.902305, 0.030138;;, - 36;3; 0.068622, 0.902305, 0.030138;;, - 37;3; 0.068622, 0.902305, 0.030138;;, - 38;3; 0.068622, 0.902305, 0.030138;;, - 39;3; 0.068622, 0.902305, 0.030138;;, - 40;3; 0.068622, 0.902305, 0.030138;;, - 41;3; 0.068622, 0.902305, 0.030138;;, - 42;3; 0.068622, 0.902305, 0.030138;;, - 43;3; 0.068622, 0.902305, 0.030138;;, - 44;3; 0.068622, 0.902305, 0.030138;;, - 45;3; 0.068622, 0.902305, 0.030138;;, - 46;3; 0.068622, 0.902305, 0.030138;;, - 47;3; 0.068622, 0.902305, 0.030138;;, - 48;3; 0.068622, 0.902305, 0.030138;;, - 49;3; 0.068622, 0.902305, 0.030138;;, - 50;3; 0.068622, 0.902305, 0.030138;;, - 51;3; 0.068622, 0.902305, 0.030138;;, - 52;3; 0.068622, 0.902305, 0.030138;;, - 53;3; 0.068622, 0.902305, 0.030138;;, - 54;3; 0.068622, 0.902305, 0.030138;;, - 55;3; 0.068622, 0.902305, 0.030138;;, - 56;3; 0.068622, 0.902305, 0.030138;;, - 57;3; 0.068621, 0.902305, 0.030138;;, - 58;3; 0.068622, 0.902305, 0.030138;;, - 59;3; 0.068621, 0.902305, 0.030138;;, - 60;3; 0.068622, 0.902305, 0.030138;;, - 61;3; 0.068622, 0.902305, 0.030138;;, - 62;3; 0.068622, 0.902305, 0.030138;;, - 63;3; 0.068622, 0.902305, 0.030138;;, - 64;3; 0.068622, 0.902305, 0.030138;;, - 65;3; 0.068622, 0.902305, 0.030138;;, - 66;3; 0.068622, 0.902305, 0.030138;;, - 67;3; 0.068622, 0.902305, 0.030138;;, - 68;3; 0.068622, 0.902305, 0.030138;;, - 69;3; 0.068622, 0.902305, 0.030138;;, - 70;3; 0.068622, 0.902305, 0.030138;;, - 71;3; 0.068622, 0.902305, 0.030138;;, - 72;3; 0.068621, 0.902305, 0.030138;;, - 73;3; 0.068621, 0.902305, 0.030138;;, - 74;3; 0.068622, 0.902305, 0.030139;;, - 75;3; 0.068621, 0.902305, 0.030138;;, - 76;3; 0.068622, 0.902305, 0.030138;;, - 77;3; 0.068621, 0.902305, 0.030138;;, - 78;3; 0.068621, 0.902305, 0.030138;;, - 79;3; 0.068621, 0.902305, 0.030138;;, - 80;3; 0.068622, 0.902305, 0.030138;;, - 81;3; 0.068621, 0.902305, 0.030138;;, - 82;3; 0.068621, 0.902305, 0.030138;;, - 83;3; 0.068833, 0.902801, 0.023051;;, - 84;3; 0.069447, 0.904247, 0.002426;;, - 85;3; 0.070331, 0.906325,-0.027223;;, - 86;3; 0.071214, 0.908403,-0.056872;;, - 87;3; 0.071829, 0.909848,-0.077496;;, - 88;3; 0.072040, 0.910345,-0.084582;;, - 89;3; 0.071736, 0.909630,-0.074385;;, - 90;3; 0.070881, 0.907618,-0.045663;;, - 91;3; 0.069782, 0.905033,-0.008784;;, - 92;3; 0.068926, 0.903020, 0.019940;;, - 93;3; 0.068621, 0.902305, 0.030138;;, - 94;3; 0.068621, 0.902305, 0.030138;;, - 95;3; 0.068621, 0.902305, 0.030138;;, - 96;3; 0.068621, 0.902305, 0.030138;;, - 97;3; 0.068621, 0.902305, 0.030138;;, - 98;3; 0.068622, 0.902305, 0.030138;;, - 99;3; 0.068621, 0.902305, 0.030138;;, - 100;3; 0.068622, 0.902305, 0.030138;;, - 101;3; 0.068622, 0.902305, 0.030138;;, - 102;3; 0.068622, 0.902305, 0.030138;;, - 103;3; 0.068622, 0.902305, 0.030138;;, - 104;3; 0.068622, 0.902305, 0.030138;;, - 105;3; 0.068622, 0.902305, 0.030138;;, - 106;3; 0.068622, 0.902305, 0.030138;;, - 107;3; 0.068622, 0.902305, 0.030138;;, - 108;3; 0.068622, 0.902305, 0.030138;;, - 109;3; 0.068622, 0.902305, 0.030138;;, - 110;3; 0.068622, 0.902305, 0.030138;;, - 111;3; 0.068622, 0.902305, 0.030138;;, - 112;3; 0.068622, 0.902305, 0.030138;;, - 113;3; 0.068622, 0.902305, 0.030138;;, - 114;3; 0.068622, 0.902305, 0.030138;;, - 115;3; 0.068622, 0.902305, 0.030138;;, - 116;3; 0.068622, 0.902305, 0.030138;;, - 117;3; 0.068622, 0.902305, 0.030138;;, - 118;3; 0.068622, 0.902305, 0.030138;;, - 119;3; 0.068622, 0.902305, 0.030138;;, - 120;3; 0.068622, 0.902305, 0.030138;;, - 121;3; 0.068622, 0.902305, 0.030138;;, - 122;3; 0.068622, 0.902305, 0.030138;;, - 123;3; 0.068622, 0.902305, 0.030138;;, - 124;3; 0.068622, 0.902305, 0.030138;;, - 125;3; 0.068622, 0.902305, 0.030138;;, - 126;3; 0.068622, 0.902305, 0.030138;;, - 127;3; 0.068621, 0.902305, 0.030138;;, - 128;3; 0.068622, 0.902305, 0.030138;;, - 129;3; 0.068622, 0.902305, 0.030138;;, - 130;3; 0.068622, 0.902305, 0.030138;;, - 131;3; 0.068622, 0.902305, 0.030138;;, - 132;3; 0.068622, 0.902305, 0.030138;;, - 133;3; 0.068622, 0.902305, 0.030138;;, - 134;3; 0.068622, 0.902305, 0.030138;;, - 135;3; 0.068622, 0.902305, 0.030138;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 1;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 2;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 3;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 4;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 5;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 6;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 7;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 8;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 9;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 10;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 11;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 12;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 13;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 14;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 15;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 16;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 17;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 18;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 19;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 20;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 21;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 22;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 23;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 24;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 25;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 26;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 27;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 28;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 29;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 30;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 31;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 32;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 33;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 34;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 35;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 36;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 37;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 38;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 39;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 40;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 41;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 42;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 43;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 44;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 45;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 46;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 47;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 48;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 49;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 50;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 51;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 52;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 53;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 54;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 55;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 56;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 57;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 58;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 59;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 60;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 61;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 62;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 63;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 64;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 65;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 66;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 67;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 68;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 69;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 70;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 71;4; -0.985908,-0.022035, 0.000815,-0.038237;;, - 72;4; -0.946520,-0.118349, 0.004046,-0.039118;;, - 73;4; -0.886518,-0.264945, 0.008963,-0.040462;;, - 74;4; -0.818464,-0.431152, 0.014538,-0.041987;;, - 75;4; -0.758461,-0.577748, 0.019456,-0.043331;;, - 76;4; -0.719074,-0.674062, 0.022687,-0.044212;;, - 77;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 78;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 79;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 80;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 81;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 82;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 83;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 84;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 85;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 86;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 87;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 88;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 89;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 90;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 91;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 92;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 93;4; -0.705757,-0.706654, 0.023780,-0.044510;;, - 94;4; -0.719074,-0.674062, 0.022687,-0.044212;;, - 95;4; -0.758461,-0.577748, 0.019456,-0.043331;;, - 96;4; -0.818464,-0.431152, 0.014538,-0.041987;;, - 97;4; -0.886518,-0.264945, 0.008963,-0.040462;;, - 98;4; -0.946520,-0.118349, 0.004046,-0.039118;;, - 99;4; -0.985908,-0.022035, 0.000815,-0.038237;;, - 100;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 101;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 102;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 103;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 104;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 105;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 106;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 107;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 108;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 109;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 110;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 111;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 112;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 113;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 114;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 115;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 116;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 117;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 118;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 119;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 120;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 121;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 122;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 123;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 124;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 125;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 126;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 127;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 128;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 129;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 130;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 131;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 132;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 133;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 134;4; -0.999224, 0.010557,-0.000279,-0.037939;;, - 135;4; -0.999224, 0.010557,-0.000279,-0.037939;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_zubi} - AnimationKey { //Position - 2; - 136; - 0;3; 0.192513, 1.798870,-0.340671;;, - 1;3; 0.192513, 1.798870,-0.340671;;, - 2;3; 0.192512, 1.798870,-0.340671;;, - 3;3; 0.192512, 1.798870,-0.340671;;, - 4;3; 0.192512, 1.798870,-0.340671;;, - 5;3; 0.192512, 1.798870,-0.340671;;, - 6;3; 0.192512, 1.798870,-0.340671;;, - 7;3; 0.192512, 1.798871,-0.340671;;, - 8;3; 0.192513, 1.798870,-0.340671;;, - 9;3; 0.192512, 1.798871,-0.340671;;, - 10;3; 0.192513, 1.798871,-0.340671;;, - 11;3; 0.192512, 1.798870,-0.340671;;, - 12;3; 0.192512, 1.798871,-0.340671;;, - 13;3; 0.192512, 1.798870,-0.340671;;, - 14;3; 0.192512, 1.798870,-0.340671;;, - 15;3; 0.192512, 1.798870,-0.340671;;, - 16;3; 0.192513, 1.798870,-0.340671;;, - 17;3; 0.192512, 1.798870,-0.340671;;, - 18;3; 0.192512, 1.798870,-0.340671;;, - 19;3; 0.192512, 1.798870,-0.340671;;, - 20;3; 0.192512, 1.798871,-0.340671;;, - 21;3; 0.192512, 1.798870,-0.340671;;, - 22;3; 0.192512, 1.798870,-0.340671;;, - 23;3; 0.192512, 1.798870,-0.340671;;, - 24;3; 0.192512, 1.798870,-0.340671;;, - 25;3; 0.192512, 1.798870,-0.340671;;, - 26;3; 0.192513, 1.798871,-0.340671;;, - 27;3; 0.192512, 1.798870,-0.340671;;, - 28;3; 0.192512, 1.798871,-0.340671;;, - 29;3; 0.192512, 1.798870,-0.340671;;, - 30;3; 0.192513, 1.798870,-0.340671;;, - 31;3; 0.192513, 1.798870,-0.340671;;, - 32;3; 0.192513, 1.798870,-0.340671;;, - 33;3; 0.192513, 1.798870,-0.340671;;, - 34;3; 0.192513, 1.798870,-0.340671;;, - 35;3; 0.192513, 1.798870,-0.340671;;, - 36;3; 0.192512, 1.798870,-0.340671;;, - 37;3; 0.192513, 1.798871,-0.340671;;, - 38;3; 0.192512, 1.798870,-0.340671;;, - 39;3; 0.192512, 1.798871,-0.340671;;, - 40;3; 0.192512, 1.798870,-0.340671;;, - 41;3; 0.192513, 1.798870,-0.340671;;, - 42;3; 0.192513, 1.798870,-0.340671;;, - 43;3; 0.192513, 1.798870,-0.340671;;, - 44;3; 0.192512, 1.798870,-0.340672;;, - 45;3; 0.192512, 1.798870,-0.340671;;, - 46;3; 0.192513, 1.798870,-0.340671;;, - 47;3; 0.192513, 1.798870,-0.340671;;, - 48;3; 0.192512, 1.798870,-0.340671;;, - 49;3; 0.192513, 1.798870,-0.340671;;, - 50;3; 0.192513, 1.798870,-0.340671;;, - 51;3; 0.192512, 1.798870,-0.340671;;, - 52;3; 0.192513, 1.798870,-0.340671;;, - 53;3; 0.192513, 1.798870,-0.340671;;, - 54;3; 0.192512, 1.798870,-0.340671;;, - 55;3; 0.192513, 1.798870,-0.340671;;, - 56;3; 0.192513, 1.798870,-0.340671;;, - 57;3; 0.192512, 1.798870,-0.340671;;, - 58;3; 0.192512, 1.798870,-0.340671;;, - 59;3; 0.192512, 1.798870,-0.340671;;, - 60;3; 0.192512, 1.798870,-0.340671;;, - 61;3; 0.192513, 1.798871,-0.340671;;, - 62;3; 0.192512, 1.798870,-0.340671;;, - 63;3; 0.192513, 1.798870,-0.340671;;, - 64;3; 0.192512, 1.798870,-0.340671;;, - 65;3; 0.192513, 1.798870,-0.340671;;, - 66;3; 0.192513, 1.798870,-0.340671;;, - 67;3; 0.192513, 1.798870,-0.340671;;, - 68;3; 0.192513, 1.798870,-0.340671;;, - 69;3; 0.192513, 1.798870,-0.340671;;, - 70;3; 0.192513, 1.798870,-0.340671;;, - 71;3; 0.188614, 1.738903,-0.357459;;, - 72;3; 0.177135, 1.562188,-0.407085;;, - 73;3; 0.159718, 1.293900,-0.482645;;, - 74;3; 0.139997, 0.990036,-0.568326;;, - 75;3; 0.122580, 0.721748,-0.643886;;, - 76;3; 0.111102, 0.545033,-0.693513;;, - 77;3; 0.107203, 0.485065,-0.710300;;, - 78;3; 0.107203, 0.485065,-0.710300;;, - 79;3; 0.107203, 0.485066,-0.710300;;, - 80;3; 0.107204, 0.485065,-0.710300;;, - 81;3; 0.107203, 0.485065,-0.710300;;, - 82;3; 0.107203, 0.485065,-0.710300;;, - 83;3; 0.107203, 0.485065,-0.710300;;, - 84;3; 0.107203, 0.485065,-0.710300;;, - 85;3; 0.107204, 0.485065,-0.710300;;, - 86;3; 0.107203, 0.485065,-0.710300;;, - 87;3; 0.107203, 0.485065,-0.710300;;, - 88;3; 0.107203, 0.485065,-0.710300;;, - 89;3; 0.107203, 0.485065,-0.710300;;, - 90;3; 0.107204, 0.485065,-0.710300;;, - 91;3; 0.107204, 0.485066,-0.710300;;, - 92;3; 0.107204, 0.485065,-0.710300;;, - 93;3; 0.107203, 0.485065,-0.710300;;, - 94;3; 0.111101, 0.545033,-0.693513;;, - 95;3; 0.122581, 0.721749,-0.643886;;, - 96;3; 0.139997, 0.990035,-0.568326;;, - 97;3; 0.159718, 1.293900,-0.482646;;, - 98;3; 0.177135, 1.562187,-0.407085;;, - 99;3; 0.188614, 1.738903,-0.357459;;, - 100;3; 0.192513, 1.798870,-0.340671;;, - 101;3; 0.192513, 1.798870,-0.340671;;, - 102;3; 0.192513, 1.798870,-0.340671;;, - 103;3; 0.192513, 1.798870,-0.340671;;, - 104;3; 0.192513, 1.798870,-0.340671;;, - 105;3; 0.192513, 1.798870,-0.340671;;, - 106;3; 0.192512, 1.798870,-0.340671;;, - 107;3; 0.192513, 1.798871,-0.340671;;, - 108;3; 0.192512, 1.798870,-0.340671;;, - 109;3; 0.192512, 1.798871,-0.340671;;, - 110;3; 0.192512, 1.798870,-0.340671;;, - 111;3; 0.192513, 1.798870,-0.340671;;, - 112;3; 0.192513, 1.798870,-0.340671;;, - 113;3; 0.192513, 1.798870,-0.340671;;, - 114;3; 0.192512, 1.798870,-0.340672;;, - 115;3; 0.192512, 1.798870,-0.340671;;, - 116;3; 0.192513, 1.798870,-0.340671;;, - 117;3; 0.192513, 1.798870,-0.340671;;, - 118;3; 0.192512, 1.798870,-0.340671;;, - 119;3; 0.192513, 1.798870,-0.340671;;, - 120;3; 0.192513, 1.798870,-0.340671;;, - 121;3; 0.192512, 1.798870,-0.340671;;, - 122;3; 0.192513, 1.798870,-0.340671;;, - 123;3; 0.192513, 1.798870,-0.340671;;, - 124;3; 0.192512, 1.798870,-0.340671;;, - 125;3; 0.192513, 1.798870,-0.340671;;, - 126;3; 0.192513, 1.798870,-0.340671;;, - 127;3; 0.192512, 1.798870,-0.340671;;, - 128;3; 0.192512, 1.798870,-0.340671;;, - 129;3; 0.192513, 1.798870,-0.340671;;, - 130;3; 0.192512, 1.798870,-0.340671;;, - 131;3; 0.192512, 1.798870,-0.340671;;, - 132;3; 0.192513, 1.798870,-0.340671;;, - 133;3; 0.192512, 1.798870,-0.340671;;, - 134;3; 0.192512, 1.798870,-0.340671;;, - 135;3; 0.192513, 1.798870,-0.340671;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 1;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 2;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 3;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 4;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 5;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 6;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 7;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 8;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 9;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 10;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 11;4; -0.986444,-0.049831, 0.001593,-0.039530;;, - 12;4; -0.960264,-0.230473, 0.007551,-0.042973;;, - 13;4; -0.948030,-0.314874, 0.010334,-0.044582;;, - 14;4; -0.953675,-0.269639, 0.008842,-0.043686;;, - 15;4; -0.968440,-0.151335, 0.004940,-0.041340;;, - 16;4; -0.983206,-0.033041, 0.001039,-0.038995;;, - 17;4; -0.988851, 0.012184,-0.000453,-0.038098;;, - 18;4; -0.985074,-0.026019, 0.000807,-0.038894;;, - 19;4; -0.975194,-0.125945, 0.004103,-0.040976;;, - 20;4; -0.965314,-0.225870, 0.007398,-0.043058;;, - 21;4; -0.961537,-0.264072, 0.008658,-0.043854;;, - 22;4; -0.964839,-0.237513, 0.007782,-0.043326;;, - 23;4; -0.974137,-0.162712, 0.005315,-0.041841;;, - 24;4; -0.986077,-0.066658, 0.002147,-0.039934;;, - 25;4; -0.995375, 0.008179,-0.000321,-0.038448;;, - 26;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 27;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 28;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 29;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 30;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 31;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 32;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 33;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 34;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 35;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 36;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 37;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 38;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 39;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 40;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 41;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 42;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 43;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 44;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 45;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 46;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 47;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 48;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 49;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 50;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 51;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 52;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 53;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 54;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 55;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 56;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 57;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 58;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 59;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 60;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 61;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 62;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 63;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 64;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 65;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 66;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 67;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 68;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 69;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 70;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 71;4; -0.978551,-0.004579, 0.000101,-0.038107;;, - 72;4; -0.919035,-0.120791, 0.003937,-0.038661;;, - 73;4; -0.828386,-0.297604, 0.009772,-0.039505;;, - 74;4; -0.725595,-0.497999, 0.016385,-0.040463;;, - 75;4; -0.634976,-0.674705, 0.022216,-0.041309;;, - 76;4; -0.575494,-0.790794, 0.026048,-0.041863;;, - 77;4; -0.555384,-0.830080, 0.027345,-0.042051;;, - 78;4; -0.569850,-0.817974, 0.026945,-0.042314;;, - 79;4; -0.610593,-0.783909, 0.025819,-0.043056;;, - 80;4; -0.662900,-0.740211, 0.024375,-0.044008;;, - 81;4; -0.703637,-0.706188, 0.023251,-0.044750;;, - 82;4; -0.718101,-0.694106, 0.022852,-0.045013;;, - 83;4; -0.703655,-0.705189, 0.023219,-0.044726;;, - 84;4; -0.661616,-0.737444, 0.024284,-0.043889;;, - 85;4; -0.601181,-0.783812, 0.025817,-0.042687;;, - 86;4; -0.540744,-0.830181, 0.027349,-0.041485;;, - 87;4; -0.498701,-0.862438, 0.028415,-0.040648;;, - 88;4; -0.484254,-0.873522, 0.028781,-0.040361;;, - 89;4; -0.484695,-0.873253, 0.028772,-0.040371;;, - 90;4; -0.488507,-0.870928, 0.028695,-0.040462;;, - 91;4; -0.500300,-0.863734, 0.028458,-0.040742;;, - 92;4; -0.522921,-0.849922, 0.028001,-0.041279;;, - 93;4; -0.555384,-0.830080, 0.027345,-0.042051;;, - 94;4; -0.604699,-0.772948, 0.025458,-0.042558;;, - 95;4; -0.678029,-0.648413, 0.021347,-0.042332;;, - 96;4; -0.767779,-0.472242, 0.015533,-0.041467;;, - 97;4; -0.859195,-0.278785, 0.009150,-0.040238;;, - 98;4; -0.934977,-0.111044, 0.003614,-0.039040;;, - 99;4; -0.982863,-0.001940, 0.000013,-0.038210;;, - 100;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 101;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 102;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 103;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 104;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 105;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 106;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 107;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 108;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 109;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 110;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 111;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 112;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 113;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 114;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 115;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 116;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 117;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 118;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 119;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 120;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 121;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 122;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 123;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 124;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 125;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 126;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 127;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 128;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 129;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 130;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 131;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 132;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 133;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 134;4; -0.998675, 0.034758,-0.001198,-0.037921;;, - 135;4; -0.998675, 0.034758,-0.001198,-0.037921;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Cube} - AnimationKey { //Position - 2; - 136; - 0;3; 0.191637,-0.316125,10.025743;;, - 1;3; 0.191637,-0.316125,10.025743;;, - 2;3; 0.191637,-0.316125,10.025743;;, - 3;3; 0.191637,-0.316125,10.025743;;, - 4;3; 0.191637,-0.316125,10.025743;;, - 5;3; 0.191637,-0.316125,10.025743;;, - 6;3; 0.191637,-0.316125,10.025743;;, - 7;3; 0.191637,-0.316125,10.025743;;, - 8;3; 0.191637,-0.316125,10.025743;;, - 9;3; 0.191637,-0.316125,10.025743;;, - 10;3; 0.191637,-0.316125,10.025743;;, - 11;3; 0.191637,-0.316125,10.025743;;, - 12;3; 0.191637,-0.316125,10.025743;;, - 13;3; 0.191637,-0.316125,10.025743;;, - 14;3; 0.191637,-0.316125,10.025743;;, - 15;3; 0.191637,-0.316125,10.025743;;, - 16;3; 0.191637,-0.316125,10.025743;;, - 17;3; 0.191637,-0.316125,10.025743;;, - 18;3; 0.191637,-0.316125,10.025743;;, - 19;3; 0.191637,-0.316125,10.025743;;, - 20;3; 0.191637,-0.316125,10.025743;;, - 21;3; 0.191637,-0.316125,10.025743;;, - 22;3; 0.191637,-0.316125,10.025743;;, - 23;3; 0.191637,-0.316125,10.025743;;, - 24;3; 0.191637,-0.316125,10.025743;;, - 25;3; 0.191637,-0.316125,10.025743;;, - 26;3; 0.191637,-0.316125,10.025743;;, - 27;3; 0.191637,-0.316125,10.025743;;, - 28;3; 0.191637,-0.316125,10.025743;;, - 29;3; 0.191637,-0.316125,10.025743;;, - 30;3; 0.191637,-0.316125,10.025743;;, - 31;3; 0.191637,-0.316125,10.025743;;, - 32;3; 0.191637,-0.316125,10.025743;;, - 33;3; 0.191637,-0.316125,10.025743;;, - 34;3; 0.191637,-0.316125,10.025743;;, - 35;3; 0.191637,-0.316125,10.025743;;, - 36;3; 0.191637,-0.316125,10.025743;;, - 37;3; 0.191637,-0.316125,10.025743;;, - 38;3; 0.191637,-0.316125,10.025743;;, - 39;3; 0.191637,-0.316125,10.025743;;, - 40;3; 0.191637,-0.316125,10.025743;;, - 41;3; 0.191637,-0.316125,10.025743;;, - 42;3; 0.191637,-0.316125,10.025743;;, - 43;3; 0.191637,-0.316125,10.025743;;, - 44;3; 0.191637,-0.316125,10.025743;;, - 45;3; 0.191637,-0.316125,10.025743;;, - 46;3; 0.191637,-0.316125,10.025743;;, - 47;3; 0.191637,-0.316125,10.025743;;, - 48;3; 0.191637,-0.316125,10.025743;;, - 49;3; 0.191637,-0.316125,10.025743;;, - 50;3; 0.191637,-0.316125,10.025743;;, - 51;3; 0.191637,-0.316125,10.025743;;, - 52;3; 0.191637,-0.316125,10.025743;;, - 53;3; 0.191637,-0.316125,10.025743;;, - 54;3; 0.191637,-0.316125,10.025743;;, - 55;3; 0.191637,-0.316125,10.025743;;, - 56;3; 0.191637,-0.316125,10.025743;;, - 57;3; 0.191637,-0.316125,10.025743;;, - 58;3; 0.191637,-0.316125,10.025743;;, - 59;3; 0.191637,-0.316125,10.025743;;, - 60;3; 0.191637,-0.316125,10.025743;;, - 61;3; 0.191637,-0.316125,10.025743;;, - 62;3; 0.191637,-0.316125,10.025743;;, - 63;3; 0.191637,-0.316125,10.025743;;, - 64;3; 0.191637,-0.316125,10.025743;;, - 65;3; 0.191637,-0.316125,10.025743;;, - 66;3; 0.191637,-0.316125,10.025743;;, - 67;3; 0.191637,-0.316125,10.025743;;, - 68;3; 0.191637,-0.316125,10.025743;;, - 69;3; 0.191637,-0.316125,10.025743;;, - 70;3; 0.191637,-0.316125,10.025743;;, - 71;3; 0.191637,-0.316125,10.025743;;, - 72;3; 0.191637,-0.316125,10.025743;;, - 73;3; 0.191637,-0.316125,10.025743;;, - 74;3; 0.191637,-0.316125,10.025743;;, - 75;3; 0.191637,-0.316125,10.025743;;, - 76;3; 0.191637,-0.316125,10.025743;;, - 77;3; 0.191637,-0.316125,10.025743;;, - 78;3; 0.191637,-0.316125,10.025743;;, - 79;3; 0.191637,-0.316125,10.025743;;, - 80;3; 0.191637,-0.316125,10.025743;;, - 81;3; 0.191637,-0.316125,10.025743;;, - 82;3; 0.191637,-0.316125,10.025743;;, - 83;3; 0.191637,-0.316125,10.025743;;, - 84;3; 0.191637,-0.316125,10.025743;;, - 85;3; 0.191637,-0.316125,10.025743;;, - 86;3; 0.191637,-0.316125,10.025743;;, - 87;3; 0.191637,-0.316125,10.025743;;, - 88;3; 0.191637,-0.316125,10.025743;;, - 89;3; 0.191637,-0.316125,10.025743;;, - 90;3; 0.191637,-0.316125,10.025743;;, - 91;3; 0.191637,-0.316125,10.025743;;, - 92;3; 0.191637,-0.316125,10.025743;;, - 93;3; 0.191637,-0.316125,10.025743;;, - 94;3; 0.191637,-0.316125,10.025743;;, - 95;3; 0.191637,-0.316125,10.025743;;, - 96;3; 0.191637,-0.316125,10.025743;;, - 97;3; 0.191637,-0.316125,10.025743;;, - 98;3; 0.191637,-0.316125,10.025743;;, - 99;3; 0.191637,-0.316125,10.025743;;, - 100;3; 0.191637,-0.316125,10.025743;;, - 101;3; 0.191637,-0.316125,10.025743;;, - 102;3; 0.191637,-0.316125,10.025743;;, - 103;3; 0.191637,-0.316125,10.025743;;, - 104;3; 0.191637,-0.316125,10.025743;;, - 105;3; 0.191637,-0.316125,10.025743;;, - 106;3; 0.191637,-0.316125,10.025743;;, - 107;3; 0.191637,-0.316125,10.025743;;, - 108;3; 0.191637,-0.316125,10.025743;;, - 109;3; 0.191637,-0.316125,10.025743;;, - 110;3; 0.191637,-0.316125,10.025743;;, - 111;3; 0.191637,-0.316125,10.025743;;, - 112;3; 0.191637,-0.316125,10.025743;;, - 113;3; 0.191637,-0.316125,10.025743;;, - 114;3; 0.191637,-0.316125,10.025743;;, - 115;3; 0.191637,-0.316125,10.025743;;, - 116;3; 0.191637,-0.316125,10.025743;;, - 117;3; 0.191637,-0.316125,10.025743;;, - 118;3; 0.191637,-0.316125,10.025743;;, - 119;3; 0.191637,-0.316125,10.025743;;, - 120;3; 0.191637,-0.316125,10.025743;;, - 121;3; 0.191637,-0.316125,10.025743;;, - 122;3; 0.191637,-0.316125,10.025743;;, - 123;3; 0.191637,-0.316125,10.025743;;, - 124;3; 0.191637,-0.316125,10.025743;;, - 125;3; 0.191637,-0.316125,10.025743;;, - 126;3; 0.191637,-0.316125,10.025743;;, - 127;3; 0.191637,-0.316125,10.025743;;, - 128;3; 0.191637,-0.316125,10.025743;;, - 129;3; 0.191637,-0.316125,10.025743;;, - 130;3; 0.191637,-0.316125,10.025743;;, - 131;3; 0.191637,-0.316125,10.025743;;, - 132;3; 0.191637,-0.316125,10.025743;;, - 133;3; 0.191637,-0.316125,10.025743;;, - 134;3; 0.191637,-0.316125,10.025743;;, - 135;3; 0.191637,-0.316125,10.025743;;; - } - AnimationKey { //Rotation - 0; - 136; - 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;;; - } - AnimationKey { //Scale - 1; - 136; - 0;3; 3.207477, 3.207477, 3.207477;;, - 1;3; 3.207477, 3.207477, 3.207477;;, - 2;3; 3.207477, 3.207477, 3.207477;;, - 3;3; 3.207477, 3.207477, 3.207477;;, - 4;3; 3.207477, 3.207477, 3.207477;;, - 5;3; 3.207477, 3.207477, 3.207477;;, - 6;3; 3.207477, 3.207477, 3.207477;;, - 7;3; 3.207477, 3.207477, 3.207477;;, - 8;3; 3.207477, 3.207477, 3.207477;;, - 9;3; 3.207477, 3.207477, 3.207477;;, - 10;3; 3.207477, 3.207477, 3.207477;;, - 11;3; 3.207477, 3.207477, 3.207477;;, - 12;3; 3.207477, 3.207477, 3.207477;;, - 13;3; 3.207477, 3.207477, 3.207477;;, - 14;3; 3.207477, 3.207477, 3.207477;;, - 15;3; 3.207477, 3.207477, 3.207477;;, - 16;3; 3.207477, 3.207477, 3.207477;;, - 17;3; 3.207477, 3.207477, 3.207477;;, - 18;3; 3.207477, 3.207477, 3.207477;;, - 19;3; 3.207477, 3.207477, 3.207477;;, - 20;3; 3.207477, 3.207477, 3.207477;;, - 21;3; 3.207477, 3.207477, 3.207477;;, - 22;3; 3.207477, 3.207477, 3.207477;;, - 23;3; 3.207477, 3.207477, 3.207477;;, - 24;3; 3.207477, 3.207477, 3.207477;;, - 25;3; 3.207477, 3.207477, 3.207477;;, - 26;3; 3.207477, 3.207477, 3.207477;;, - 27;3; 3.207477, 3.207477, 3.207477;;, - 28;3; 3.207477, 3.207477, 3.207477;;, - 29;3; 3.207477, 3.207477, 3.207477;;, - 30;3; 3.207477, 3.207477, 3.207477;;, - 31;3; 3.207477, 3.207477, 3.207477;;, - 32;3; 3.207477, 3.207477, 3.207477;;, - 33;3; 3.207477, 3.207477, 3.207477;;, - 34;3; 3.207477, 3.207477, 3.207477;;, - 35;3; 3.207477, 3.207477, 3.207477;;, - 36;3; 3.207477, 3.207477, 3.207477;;, - 37;3; 3.207477, 3.207477, 3.207477;;, - 38;3; 3.207477, 3.207477, 3.207477;;, - 39;3; 3.207477, 3.207477, 3.207477;;, - 40;3; 3.207477, 3.207477, 3.207477;;, - 41;3; 3.207477, 3.207477, 3.207477;;, - 42;3; 3.207477, 3.207477, 3.207477;;, - 43;3; 3.207477, 3.207477, 3.207477;;, - 44;3; 3.207477, 3.207477, 3.207477;;, - 45;3; 3.207477, 3.207477, 3.207477;;, - 46;3; 3.207477, 3.207477, 3.207477;;, - 47;3; 3.207477, 3.207477, 3.207477;;, - 48;3; 3.207477, 3.207477, 3.207477;;, - 49;3; 3.207477, 3.207477, 3.207477;;, - 50;3; 3.207477, 3.207477, 3.207477;;, - 51;3; 3.207477, 3.207477, 3.207477;;, - 52;3; 3.207477, 3.207477, 3.207477;;, - 53;3; 3.207477, 3.207477, 3.207477;;, - 54;3; 3.207477, 3.207477, 3.207477;;, - 55;3; 3.207477, 3.207477, 3.207477;;, - 56;3; 3.207477, 3.207477, 3.207477;;, - 57;3; 3.207477, 3.207477, 3.207477;;, - 58;3; 3.207477, 3.207477, 3.207477;;, - 59;3; 3.207477, 3.207477, 3.207477;;, - 60;3; 3.207477, 3.207477, 3.207477;;, - 61;3; 3.207477, 3.207477, 3.207477;;, - 62;3; 3.207477, 3.207477, 3.207477;;, - 63;3; 3.207477, 3.207477, 3.207477;;, - 64;3; 3.207477, 3.207477, 3.207477;;, - 65;3; 3.207477, 3.207477, 3.207477;;, - 66;3; 3.207477, 3.207477, 3.207477;;, - 67;3; 3.207477, 3.207477, 3.207477;;, - 68;3; 3.207477, 3.207477, 3.207477;;, - 69;3; 3.207477, 3.207477, 3.207477;;, - 70;3; 3.207477, 3.207477, 3.207477;;, - 71;3; 3.207477, 3.207477, 3.207477;;, - 72;3; 3.207477, 3.207477, 3.207477;;, - 73;3; 3.207477, 3.207477, 3.207477;;, - 74;3; 3.207477, 3.207477, 3.207477;;, - 75;3; 3.207477, 3.207477, 3.207477;;, - 76;3; 3.207477, 3.207477, 3.207477;;, - 77;3; 3.207477, 3.207477, 3.207477;;, - 78;3; 3.207477, 3.207477, 3.207477;;, - 79;3; 3.207477, 3.207477, 3.207477;;, - 80;3; 3.207477, 3.207477, 3.207477;;, - 81;3; 3.207477, 3.207477, 3.207477;;, - 82;3; 3.207477, 3.207477, 3.207477;;, - 83;3; 3.207477, 3.207477, 3.207477;;, - 84;3; 3.207477, 3.207477, 3.207477;;, - 85;3; 3.207477, 3.207477, 3.207477;;, - 86;3; 3.207477, 3.207477, 3.207477;;, - 87;3; 3.207477, 3.207477, 3.207477;;, - 88;3; 3.207477, 3.207477, 3.207477;;, - 89;3; 3.207477, 3.207477, 3.207477;;, - 90;3; 3.207477, 3.207477, 3.207477;;, - 91;3; 3.207477, 3.207477, 3.207477;;, - 92;3; 3.207477, 3.207477, 3.207477;;, - 93;3; 3.207477, 3.207477, 3.207477;;, - 94;3; 3.207477, 3.207477, 3.207477;;, - 95;3; 3.207477, 3.207477, 3.207477;;, - 96;3; 3.207477, 3.207477, 3.207477;;, - 97;3; 3.207477, 3.207477, 3.207477;;, - 98;3; 3.207477, 3.207477, 3.207477;;, - 99;3; 3.207477, 3.207477, 3.207477;;, - 100;3; 3.207477, 3.207477, 3.207477;;, - 101;3; 3.207477, 3.207477, 3.207477;;, - 102;3; 3.207477, 3.207477, 3.207477;;, - 103;3; 3.207477, 3.207477, 3.207477;;, - 104;3; 3.207477, 3.207477, 3.207477;;, - 105;3; 3.207477, 3.207477, 3.207477;;, - 106;3; 3.207477, 3.207477, 3.207477;;, - 107;3; 3.207477, 3.207477, 3.207477;;, - 108;3; 3.207477, 3.207477, 3.207477;;, - 109;3; 3.207477, 3.207477, 3.207477;;, - 110;3; 3.207477, 3.207477, 3.207477;;, - 111;3; 3.207477, 3.207477, 3.207477;;, - 112;3; 3.207477, 3.207477, 3.207477;;, - 113;3; 3.207477, 3.207477, 3.207477;;, - 114;3; 3.207477, 3.207477, 3.207477;;, - 115;3; 3.207477, 3.207477, 3.207477;;, - 116;3; 3.207477, 3.207477, 3.207477;;, - 117;3; 3.207477, 3.207477, 3.207477;;, - 118;3; 3.207477, 3.207477, 3.207477;;, - 119;3; 3.207477, 3.207477, 3.207477;;, - 120;3; 3.207477, 3.207477, 3.207477;;, - 121;3; 3.207477, 3.207477, 3.207477;;, - 122;3; 3.207477, 3.207477, 3.207477;;, - 123;3; 3.207477, 3.207477, 3.207477;;, - 124;3; 3.207477, 3.207477, 3.207477;;, - 125;3; 3.207477, 3.207477, 3.207477;;, - 126;3; 3.207477, 3.207477, 3.207477;;, - 127;3; 3.207477, 3.207477, 3.207477;;, - 128;3; 3.207477, 3.207477, 3.207477;;, - 129;3; 3.207477, 3.207477, 3.207477;;, - 130;3; 3.207477, 3.207477, 3.207477;;, - 131;3; 3.207477, 3.207477, 3.207477;;, - 132;3; 3.207477, 3.207477, 3.207477;;, - 133;3; 3.207477, 3.207477, 3.207477;;, - 134;3; 3.207477, 3.207477, 3.207477;;, - 135;3; 3.207477, 3.207477, 3.207477;;; - } - } -} //End of AnimationSet +} // End of Root diff --git a/games/default/files/mobs_animal/models/mobs_cow.b3d b/games/default/files/mobs_animal/models/mobs_cow.b3d new file mode 100644 index 000000000..6e574173a Binary files /dev/null and b/games/default/files/mobs_animal/models/mobs_cow.b3d differ diff --git a/games/default/files/mobs_animal/models/mobs_cow.x b/games/default/files/mobs_animal/models/mobs_cow.x index b6b348cba..f8f3fb67f 100644 --- a/games/default/files/mobs_animal/models/mobs_cow.x +++ b/games/default/files/mobs_animal/models/mobs_cow.x @@ -1,7420 +1,10 @@ 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, 1.000000, 0.000000, + 0.000000, 1.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 1.000000;; } - Frame Armature { - FrameTransformMatrix { - 3.749036, 0.000000, 0.000000, 0.000000, - 0.000000, 3.749036, 0.000000, 0.000000, - 0.000000, 0.000000, 3.749036, 0.000000, - -19.739037, 0.216398, 0.218101, 1.000000;; - } - Frame Armature_Body { - FrameTransformMatrix { - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.996529, 0.083252, 0.000000, - 0.000000,-0.083252, 0.996529, 0.000000, - 5.378092,-1.647068, 2.876912, 1.000000;; - } - Frame Armature_noga3 { - FrameTransformMatrix { - 0.000000,-0.996529, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996529, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.824256,-0.011078,-1.204985, 1.000000;; - } - } //End of Armature_noga3 - Frame Armature_noga1 { - FrameTransformMatrix { - 0.000000,-0.996529, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996529, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - 0.784448, 3.021216,-1.494725, 1.000000;; - } - } //End of Armature_noga1 - Frame Armature_noga4 { - FrameTransformMatrix { - 0.000000,-0.996528, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996528, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - -0.923299,-0.011159,-1.205961, 1.000000;; - } - } //End of Armature_noga4 - Frame Armature_noga2 { - FrameTransformMatrix { - 0.000000,-0.996529, 0.083252, 0.000000, - -0.000000,-0.083252,-0.996529, 0.000000, - 1.000000, 0.000000,-0.000000, 0.000000, - -0.921735, 3.022715,-1.476782, 1.000000;; - } - } //End of Armature_noga2 - Frame Armature_hvost { - FrameTransformMatrix { - 0.699967,-0.700526, 0.138963, 0.000000, - -0.057085,-0.248836,-0.966862, 0.000000, - 0.711890, 0.668838,-0.214166, 0.000000, - 0.105165,-0.291279, 0.358470, 1.000000;; - } - } //End of Armature_hvost - Frame Armature_sheya { - FrameTransformMatrix { - 0.997121, 0.067775,-0.033999, 0.000000, - -0.071692, 0.988697,-0.131678, 0.000000, - 0.024691, 0.133736, 0.990709, 0.000000, - 0.000000, 3.238709,-0.013816, 1.000000;; - } - Frame Armature_head { - FrameTransformMatrix { - 0.997121,-0.075824,-0.000243, 0.000000, - 0.074075, 0.974794,-0.210453, 0.000000, - 0.016195, 0.209829, 0.977604, 0.000000, - 0.067776, 0.891274, 0.002915, 1.000000;; - } - } //End of Armature_head - Frame Armature_zubi { - FrameTransformMatrix { - 0.997121,-0.075824,-0.000243, 0.000000, - 0.074236, 0.976877,-0.200501, 0.000000, - 0.015440, 0.199905, 0.979693, 0.000000, - 0.194650, 1.828288,-0.748248, 1.000000;; - } - } //End of Armature_zubi - } //End of Armature_sheya - } //End of Armature_Body - } //End of Armature - Frame Cube { - FrameTransformMatrix { - 3.749036, 0.000000, 0.000000, 0.000000, - 0.000000, 3.749036, 0.000000, 0.000000, - 0.000000, 0.000000, 3.749036, 0.000000, - 0.274003,-0.357581,11.859126, 1.000000;; - } - Mesh { //Mesh Mesh - 464; - -1.182819; 0.256475;-1.515163;, - -1.191885; 2.052689;-1.468648;, - -1.191885; 2.052689; 0.297009;, - -1.182819; 0.256475; 0.202888;, - -1.191885; 2.052689;-1.468648;, - 1.158376; 2.052689;-1.459295;, - 1.158376; 2.052689; 0.297009;, - -1.191885; 2.052689; 0.297009;, - 1.182819; 0.256475;-1.515163;, - 1.209352;-1.823040;-1.465410;, - 1.209352;-1.823040; 0.173570;, - 1.182819; 0.256475; 0.202888;, - 1.209352;-1.823040;-1.465410;, - -1.190063;-1.800769;-1.465410;, - -1.190063;-1.800769; 0.173570;, - 1.209352;-1.823040; 0.173570;, - 1.182819; 0.256475;-1.515163;, - 1.158376; 2.052689;-1.459295;, - -1.191885; 2.052689;-1.468648;, - -1.182819; 0.256475;-1.515163;, - -1.182819; 0.256475; 0.202888;, - -1.191885; 2.052689; 0.297009;, - 1.158376; 2.052689; 0.297009;, - 1.182819; 0.256475; 0.202888;, - -1.190063;-1.800769;-1.465410;, - -1.182819; 0.256475;-1.515163;, - -1.182819; 0.256475; 0.202888;, - -1.190063;-1.800769; 0.173570;, - 1.158376; 2.052689;-1.459295;, - 1.182819; 0.256475;-1.515163;, - 1.182819; 0.256475; 0.202888;, - 1.158376; 2.052689; 0.297009;, - 1.209352;-1.823040;-1.465410;, - 1.182819; 0.256475;-1.515163;, - -1.182819; 0.256475;-1.515163;, - -1.190063;-1.800769;-1.465410;, - -1.190063;-1.800769; 0.173570;, - -1.182819; 0.256475; 0.202888;, - 1.182819; 0.256475; 0.202888;, - 1.209352;-1.823040; 0.173570;, - -0.433904; 1.621176;-0.737264;, - -0.433904; 3.384479;-0.669402;, - -0.433904; 3.329543; 0.247469;, - -0.433904; 1.566239; 0.179607;, - -0.433904; 3.384479;-0.669402;, - 0.440838; 3.384479;-0.669402;, - 0.440838; 3.329543; 0.247469;, - -0.433904; 3.329543; 0.247469;, - 0.440838; 3.384479;-0.669402;, - 0.440838; 1.621176;-0.737264;, - 0.440838; 1.566239; 0.179607;, - 0.440838; 3.329543; 0.247469;, - 0.440838; 1.621176;-0.737264;, - -0.433904; 1.621176;-0.737264;, - -0.433904; 1.566239; 0.179607;, - 0.440838; 1.566239; 0.179607;, - 0.440838; 1.621176;-0.737264;, - 0.440838; 3.384479;-0.669402;, - -0.433904; 3.384479;-0.669402;, - -0.433904; 1.621176;-0.737264;, - -0.433904; 1.566239; 0.179607;, - -0.433904; 3.329543; 0.247469;, - 0.440838; 3.329543; 0.247469;, - 0.440838; 1.566239; 0.179607;, - -0.570123; 2.826026;-0.609147;, - -0.570123; 3.422311;-0.723481;, - -0.570123; 3.619422; 0.304511;, - -0.570123; 3.023137; 0.418845;, - 0.472727; 3.658540;-0.785318;, - -0.491013; 3.658540;-0.785318;, - -0.570123; 3.422311;-0.723481;, - 0.541260; 3.422311;-0.723481;, - 0.541260; 3.422311;-0.723481;, - 0.541260; 2.826026;-0.609147;, - 0.541260; 3.023137; 0.418845;, - 0.541260; 3.619422; 0.304511;, - 0.541260; 2.826026;-0.609147;, - -0.570123; 2.826026;-0.609147;, - -0.570123; 3.023137; 0.418845;, - 0.541260; 3.023137; 0.418845;, - 0.541260; 2.826026;-0.609147;, - 0.541260; 3.422311;-0.723481;, - -0.570123; 3.422311;-0.723481;, - -0.570123; 2.826026;-0.609147;, - -0.570123; 3.023137; 0.418845;, - -0.570123; 3.619422; 0.304511;, - 0.541260; 3.619422; 0.304511;, - 0.541260; 3.023137; 0.418845;, - 0.381228; 4.436496;-1.012536;, - -0.399515; 4.436496;-1.012536;, - -0.491013; 3.658540;-0.785318;, - 0.472727; 3.658540;-0.785318;, - -0.491013; 4.056458;-0.059518;, - 0.472727; 4.056458;-0.059518;, - 0.541260; 3.619422; 0.304511;, - -0.570123; 3.619422; 0.304511;, - 0.472727; 4.056458;-0.059518;, - 0.472727; 3.658540;-0.785318;, - 0.541260; 3.422311;-0.723481;, - 0.541260; 3.619422; 0.304511;, - -0.570123; 3.619422; 0.304511;, - -0.570123; 3.422311;-0.723481;, - -0.491013; 3.658540;-0.785318;, - -0.491013; 4.056458;-0.059518;, - -0.399515; 4.436496;-1.012536;, - 0.381228; 4.436496;-1.012536;, - 0.381228; 4.664130;-0.420370;, - -0.399515; 4.664130;-0.420370;, - -0.491013; 4.056458;-0.059518;, - -0.491013; 3.658540;-0.785318;, - -0.399515; 4.436496;-1.012536;, - -0.399515; 4.664130;-0.420370;, - -0.399515; 4.664130;-0.420370;, - 0.381228; 4.664130;-0.420370;, - 0.472727; 4.056458;-0.059518;, - -0.491013; 4.056458;-0.059518;, - 0.381228; 4.664130;-0.420370;, - 0.381228; 4.436496;-1.012536;, - 0.472727; 3.658540;-0.785318;, - 0.472727; 4.056458;-0.059518;, - 0.405161; 2.892449; 0.389317;, - 0.356167; 3.163855; 0.374390;, - 0.933491; 3.279887; 0.529882;, - 0.982485; 3.008481; 0.544809;, - 0.356167; 3.163855; 0.374390;, - 0.528218; 3.212470; 0.074339;, - 1.027210; 3.314350; 0.229683;, - 0.933491; 3.279887; 0.529882;, - 0.528218; 3.212470; 0.074339;, - 0.577212; 2.941064; 0.089265;, - 1.076203; 3.042944; 0.244609;, - 1.027210; 3.314350; 0.229683;, - 0.577212; 2.941064; 0.089265;, - 0.405161; 2.892449; 0.389317;, - 0.982485; 3.008481; 0.544809;, - 1.076203; 3.042944; 0.244609;, - 0.577212; 2.941064; 0.089265;, - 0.528218; 3.212470; 0.074339;, - 0.356167; 3.163855; 0.374390;, - 0.405161; 2.892449; 0.389317;, - 0.982485; 3.008481; 0.544809;, - 0.933491; 3.279887; 0.529882;, - 1.027210; 3.314350; 0.229683;, - 1.076203; 3.042944; 0.244609;, - -0.609625; 2.928426; 0.070173;, - -0.558808; 3.199832; 0.058956;, - -1.078051; 3.301528; 0.167247;, - -1.128868; 3.030122; 0.178463;, - -0.558808; 3.199832; 0.058956;, - -0.468088; 3.195864; 0.373960;, - -1.030881; 3.306796; 0.508425;, - -1.078051; 3.301528; 0.167247;, - -0.468088; 3.195864; 0.373960;, - -0.518905; 2.924458; 0.385176;, - -1.081698; 3.035390; 0.519641;, - -1.030881; 3.306796; 0.508425;, - -0.518905; 2.924458; 0.385176;, - -0.609625; 2.928426; 0.070173;, - -1.128868; 3.030122; 0.178463;, - -1.081698; 3.035390; 0.519641;, - -0.518905; 2.924458; 0.385176;, - -0.468088; 3.195864; 0.373960;, - -0.558808; 3.199832; 0.058956;, - -0.609625; 2.928426; 0.070173;, - -1.128868; 3.030122; 0.178463;, - -1.078051; 3.301528; 0.167247;, - -1.030881; 3.306796; 0.508425;, - -1.081698; 3.035390; 0.519641;, - 0.068099;-2.068482;-0.815726;, - 0.017526;-1.862952;-0.832142;, - 0.082807;-1.887635;-0.385204;, - 0.105635;-1.969985;-0.374655;, - 0.017526;-1.862952;-0.832142;, - 0.207545;-1.815554;-0.824100;, - 0.159407;-1.881011;-0.377324;, - 0.082807;-1.887635;-0.385204;, - 0.207545;-1.815554;-0.824100;, - 0.258117;-2.021084;-0.807684;, - 0.176925;-1.952203;-0.371637;, - 0.159407;-1.881011;-0.377324;, - 0.258117;-2.021084;-0.807684;, - 0.068099;-2.068482;-0.815726;, - 0.105635;-1.969985;-0.374655;, - 0.176925;-1.952203;-0.371637;, - 0.258117;-2.021084;-0.807684;, - 0.207545;-1.815554;-0.824100;, - 0.017526;-1.862952;-0.832142;, - 0.068099;-2.068482;-0.815726;, - 0.032801;-1.863856; 0.148379;, - 0.018910;-1.807401; 0.143870;, - 0.102635;-1.786517; 0.147413;, - 0.116527;-1.842972; 0.151922;, - 0.099551;-1.963196;-0.270905;, - 0.082033;-1.892004;-0.276591;, - 0.018910;-1.807401; 0.143870;, - 0.032801;-1.863856; 0.148379;, - 0.082033;-1.892004;-0.276591;, - 0.153323;-1.874221;-0.273574;, - 0.102635;-1.786517; 0.147413;, - 0.018910;-1.807401; 0.143870;, - 0.153323;-1.874221;-0.273574;, - 0.170840;-1.945413;-0.267887;, - 0.116527;-1.842972; 0.151922;, - 0.102635;-1.786517; 0.147413;, - 0.170840;-1.945413;-0.267887;, - 0.099551;-1.963196;-0.270905;, - 0.032801;-1.863856; 0.148379;, - 0.116527;-1.842972; 0.151922;, - 0.159407;-1.881011;-0.377324;, - 0.176925;-1.952203;-0.371637;, - 0.170840;-1.945413;-0.267887;, - 0.153323;-1.874221;-0.273574;, - 0.176925;-1.952203;-0.371637;, - 0.105635;-1.969985;-0.374655;, - 0.099551;-1.963196;-0.270905;, - 0.170840;-1.945413;-0.267887;, - -1.051378; 1.496758;-3.168478;, - -1.051378; 1.849385;-3.168478;, - -1.123806; 1.982406;-1.484576;, - -1.123806; 1.363736;-1.484576;, - 0.999745; 1.496758;-3.168478;, - 0.999745; 1.849385;-3.168478;, - 0.664487; 1.849385;-3.168478;, - 0.664487; 1.496758;-3.168478;, - 0.082807;-1.887635;-0.385204;, - 0.159407;-1.881011;-0.377324;, - 0.153323;-1.874221;-0.273574;, - 0.082033;-1.892004;-0.276591;, - 0.664487; 1.496758;-3.168478;, - 0.664487; 1.849385;-3.168478;, - 0.583813; 1.982406;-1.484576;, - 0.583813; 1.363736;-1.484576;, - 0.105635;-1.969985;-0.374655;, - 0.082807;-1.887635;-0.385204;, - 0.082033;-1.892004;-0.276591;, - 0.099551;-1.963196;-0.270905;, - 0.583813; 1.363736;-1.484576;, - 0.583813; 1.982406;-1.484576;, - 1.080419; 1.982406;-1.484576;, - 1.080419; 1.363736;-1.484576;, - 0.664487; 1.849385;-3.168478;, - 0.999745; 1.849385;-3.168478;, - 1.080419; 1.982406;-1.484576;, - 0.583813; 1.982406;-1.484576;, - -0.750392; 1.496758;-3.168478;, - -0.750392; 1.849385;-3.168478;, - -1.051378; 1.849385;-3.168478;, - -1.051378; 1.496758;-3.168478;, - 0.999745; 1.496758;-3.168478;, - 0.664487; 1.496758;-3.168478;, - 0.583813; 1.363736;-1.484576;, - 1.080419; 1.363736;-1.484576;, - 0.999745; 1.849385;-3.168478;, - 0.999745; 1.496758;-3.168478;, - 1.080419; 1.363736;-1.484576;, - 1.080419; 1.982406;-1.484576;, - -1.123806; 1.363736;-1.484576;, - -1.123806; 1.982406;-1.484576;, - -0.677966; 1.982406;-1.484576;, - -0.677966; 1.363736;-1.484576;, - -1.051378; 1.849385;-3.168478;, - -0.750392; 1.849385;-3.168478;, - -0.677966; 1.982406;-1.484576;, - -1.123806; 1.982406;-1.484576;, - -0.750392; 1.496758;-3.168478;, - -1.051378; 1.496758;-3.168478;, - -1.123806; 1.363736;-1.484576;, - -0.677966; 1.363736;-1.484576;, - -0.750392; 1.849385;-3.168478;, - -0.750392; 1.496758;-3.168478;, - -0.677966; 1.363736;-1.484576;, - -0.677966; 1.982406;-1.484576;, - -1.051378;-1.614760;-3.168478;, - -1.051378;-1.262132;-3.168478;, - -1.123806;-1.129111;-1.484576;, - -1.123806;-1.747781;-1.484576;, - -0.750392;-1.614760;-3.168478;, - -0.750392;-1.262132;-3.168478;, - -1.051378;-1.262132;-3.168478;, - -1.051378;-1.614760;-3.168478;, - -1.123806;-1.747781;-1.484576;, - -1.123806;-1.129111;-1.484576;, - -0.677966;-1.129111;-1.484576;, - -0.677966;-1.747781;-1.484576;, - -1.051378;-1.262132;-3.168478;, - -0.750392;-1.262132;-3.168478;, - -0.677966;-1.129111;-1.484576;, - -1.123806;-1.129111;-1.484576;, - -0.750392;-1.614760;-3.168478;, - -1.051378;-1.614760;-3.168478;, - -1.123806;-1.747781;-1.484576;, - -0.677966;-1.747781;-1.484576;, - -0.750392;-1.262132;-3.168478;, - -0.750392;-1.614760;-3.168478;, - -0.677966;-1.747781;-1.484576;, - -0.677966;-1.129111;-1.484576;, - 0.702960;-1.578270;-3.168478;, - 0.702960;-1.225643;-3.168478;, - 0.622286;-1.092621;-1.484576;, - 0.622286;-1.711292;-1.484576;, - 1.038219;-1.578270;-3.168478;, - 1.038219;-1.225643;-3.168478;, - 0.702960;-1.225643;-3.168478;, - 0.702960;-1.578270;-3.168478;, - 0.622286;-1.711292;-1.484576;, - 0.622286;-1.092621;-1.484576;, - 1.118893;-1.092621;-1.484576;, - 1.118893;-1.711292;-1.484576;, - 0.702960;-1.225643;-3.168478;, - 1.038219;-1.225643;-3.168478;, - 1.118893;-1.092621;-1.484576;, - 0.622286;-1.092621;-1.484576;, - 1.038219;-1.578270;-3.168478;, - 0.702960;-1.578270;-3.168478;, - 0.622286;-1.711292;-1.484576;, - 1.118893;-1.711292;-1.484576;, - 1.038219;-1.225643;-3.168478;, - 1.038219;-1.578270;-3.168478;, - 1.118893;-1.711292;-1.484576;, - 1.118893;-1.092621;-1.484576;, - -0.375302; 3.723651;-0.919717;, - -0.375302; 4.404733;-1.101104;, - -0.375302; 4.406694;-1.025498;, - -0.375302; 3.723651;-0.866785;, - -0.375302; 4.404733;-1.101104;, - 0.411050; 4.404733;-1.111786;, - 0.411050; 4.404733;-1.026451;, - -0.375302; 4.406694;-1.025498;, - 0.411050; 4.404733;-1.111786;, - 0.411050; 3.723651;-0.930399;, - 0.411050; 3.723651;-0.860715;, - 0.411050; 4.404733;-1.026451;, - 0.411050; 3.723651;-0.930399;, - -0.375302; 3.723651;-0.919717;, - -0.375302; 3.723651;-0.866785;, - 0.411050; 3.723651;-0.860715;, - 0.411050; 3.723651;-0.930399;, - 0.411050; 4.404733;-1.111786;, - -0.375302; 4.404733;-1.101104;, - -0.375302; 3.723651;-0.919717;, - -0.375302; 3.723651;-0.866785;, - -0.375302; 4.406694;-1.025498;, - 0.411050; 4.404733;-1.026451;, - 0.411050; 3.723651;-0.860715;, - -0.491839; 3.204797; 0.832126;, - -0.420050; 3.204797; 0.832126;, - -0.276340; 3.271977; 0.372442;, - -0.459907; 3.271977; 0.372442;, - -0.085533; 3.271977; 0.150769;, - 0.090794; 3.271977; 0.150769;, - 0.090794; 3.271977; 0.372442;, - -0.085533; 3.271977; 0.372442;, - 0.465169; 3.051323; 0.150769;, - 0.465169; 3.271977; 0.150769;, - 0.465169; 3.271977; 0.372442;, - 0.465169; 3.051323; 0.372442;, - 0.090794; 3.051323; 0.150769;, - -0.085533; 3.051323; 0.150769;, - -0.085533; 3.051323; 0.372442;, - 0.090794; 3.051323; 0.372442;, - 0.090794; 3.051323; 0.150769;, - 0.090794; 3.271977; 0.150769;, - -0.085533; 3.271977; 0.150769;, - -0.085533; 3.051323; 0.150769;, - -0.085533; 3.051323; 0.372442;, - -0.085533; 3.271977; 0.372442;, - 0.090794; 3.271977; 0.372442;, - 0.090794; 3.051323; 0.372442;, - -0.420050; 3.204797; 0.832126;, - -0.491839; 3.204797; 0.832126;, - -0.491839; 3.118504; 0.832126;, - -0.420050; 3.118504; 0.832126;, - -0.085533; 3.051323; 0.372442;, - 0.281602; 3.051323; 0.372442;, - 0.281602; 3.271977; 0.372442;, - -0.085533; 3.271977; 0.372442;, - -0.085533; 3.271977; 0.372442;, - 0.281602; 3.271977; 0.372442;, - 0.281602; 3.271977; 0.150769;, - -0.085533; 3.271977; 0.150769;, - -0.085533; 3.271977; 0.150769;, - 0.281602; 3.271977; 0.150769;, - 0.281602; 3.051323; 0.150769;, - -0.085533; 3.051323; 0.150769;, - -0.085533; 3.051323; 0.150769;, - 0.281602; 3.051323; 0.150769;, - 0.281602; 3.051323; 0.372442;, - -0.085533; 3.051323; 0.372442;, - 0.408578; 3.118362; 0.832126;, - 0.480603; 3.118362; 0.832126;, - 0.480603; 3.204938; 0.832126;, - 0.408578; 3.204938; 0.832126;, - 0.090794; 3.271977; 0.372442;, - -0.276340; 3.271977; 0.372442;, - -0.276340; 3.051323; 0.372442;, - 0.090794; 3.051323; 0.372442;, - 0.090794; 3.051323; 0.372442;, - -0.276340; 3.051323; 0.372442;, - -0.276340; 3.051323; 0.150769;, - 0.090794; 3.051323; 0.150769;, - 0.090794; 3.051323; 0.150769;, - -0.276340; 3.051323; 0.150769;, - -0.276340; 3.271977; 0.150769;, - 0.090794; 3.271977; 0.150769;, - 0.090794; 3.271977; 0.150769;, - -0.276340; 3.271977; 0.150769;, - -0.276340; 3.271977; 0.372442;, - 0.090794; 3.271977; 0.372442;, - 0.281602; 3.271977; 0.372442;, - 0.465169; 3.271977; 0.372442;, - 0.465169; 3.271977; 0.150769;, - 0.281602; 3.271977; 0.150769;, - 0.281602; 3.271977; 0.150769;, - 0.465169; 3.271977; 0.150769;, - 0.465169; 3.051323; 0.150769;, - 0.281602; 3.051323; 0.150769;, - 0.281602; 3.051323; 0.150769;, - 0.465169; 3.051323; 0.150769;, - 0.465169; 3.051323; 0.372442;, - 0.281602; 3.051323; 0.372442;, - -0.459907; 3.271977; 0.150769;, - -0.459907; 3.051323; 0.150769;, - -0.459907; 3.051323; 0.372442;, - -0.459907; 3.271977; 0.372442;, - 0.408578; 3.118362; 0.832126;, - 0.408578; 3.204938; 0.832126;, - 0.281602; 3.271977; 0.372442;, - 0.281602; 3.051323; 0.372442;, - -0.276340; 3.051323; 0.372442;, - -0.459907; 3.051323; 0.372442;, - -0.459907; 3.051323; 0.150769;, - -0.276340; 3.051323; 0.150769;, - -0.276340; 3.051323; 0.150769;, - -0.459907; 3.051323; 0.150769;, - -0.459907; 3.271977; 0.150769;, - -0.276340; 3.271977; 0.150769;, - -0.276340; 3.271977; 0.150769;, - -0.459907; 3.271977; 0.150769;, - -0.459907; 3.271977; 0.372442;, - -0.276340; 3.271977; 0.372442;, - -0.459907; 3.271977; 0.372442;, - -0.459907; 3.051323; 0.372442;, - -0.491839; 3.118504; 0.832126;, - -0.491839; 3.204797; 0.832126;, - 0.480603; 3.118362; 0.832126;, - 0.408578; 3.118362; 0.832126;, - 0.281602; 3.051323; 0.372442;, - 0.465169; 3.051323; 0.372442;, - 0.465169; 3.051323; 0.372442;, - 0.465169; 3.271977; 0.372442;, - 0.480603; 3.204938; 0.832126;, - 0.480603; 3.118362; 0.832126;, - -0.420050; 3.118504; 0.832126;, - -0.491839; 3.118504; 0.832126;, - -0.459907; 3.051323; 0.372442;, - -0.276340; 3.051323; 0.372442;, - -0.420050; 3.204797; 0.832126;, - -0.420050; 3.118504; 0.832126;, - -0.276340; 3.051323; 0.372442;, - -0.276340; 3.271977; 0.372442;, - 0.408578; 3.204938; 0.832126;, - 0.480603; 3.204938; 0.832126;, - 0.465169; 3.271977; 0.372442;, - 0.281602; 3.271977; 0.372442;; - 116; - 4;0;1;2;3;, - 4;4;5;6;7;, - 4;8;9;10;11;, - 4;12;13;14;15;, - 4;16;17;18;19;, - 4;20;21;22;23;, - 4;24;25;26;27;, - 4;28;29;30;31;, - 4;32;33;34;35;, - 4;36;37;38;39;, - 4;40;41;42;43;, - 4;44;45;46;47;, - 4;48;49;50;51;, - 4;52;53;54;55;, - 4;56;57;58;59;, - 4;60;61;62;63;, - 4;64;65;66;67;, - 4;68;69;70;71;, - 4;72;73;74;75;, - 4;76;77;78;79;, - 4;80;81;82;83;, - 4;84;85;86;87;, - 4;88;89;90;91;, - 4;92;93;94;95;, - 4;96;97;98;99;, - 4;100;101;102;103;, - 4;104;105;106;107;, - 4;108;109;110;111;, - 4;112;113;114;115;, - 4;116;117;118;119;, - 4;120;121;122;123;, - 4;124;125;126;127;, - 4;128;129;130;131;, - 4;132;133;134;135;, - 4;136;137;138;139;, - 4;140;141;142;143;, - 4;144;145;146;147;, - 4;148;149;150;151;, - 4;152;153;154;155;, - 4;156;157;158;159;, - 4;160;161;162;163;, - 4;164;165;166;167;, - 4;168;169;170;171;, - 4;172;173;174;175;, - 4;176;177;178;179;, - 4;180;181;182;183;, - 4;184;185;186;187;, - 4;188;189;190;191;, - 4;192;193;194;195;, - 4;196;197;198;199;, - 4;200;201;202;203;, - 4;204;205;206;207;, - 4;208;209;210;211;, - 4;212;213;214;215;, - 4;216;217;218;219;, - 4;220;221;222;223;, - 4;224;225;226;227;, - 4;228;229;230;231;, - 4;232;233;234;235;, - 4;236;237;238;239;, - 4;240;241;242;243;, - 4;244;245;246;247;, - 4;248;249;250;251;, - 4;252;253;254;255;, - 4;256;257;258;259;, - 4;260;261;262;263;, - 4;264;265;266;267;, - 4;268;269;270;271;, - 4;272;273;274;275;, - 4;276;277;278;279;, - 4;280;281;282;283;, - 4;284;285;286;287;, - 4;288;289;290;291;, - 4;292;293;294;295;, - 4;296;297;298;299;, - 4;300;301;302;303;, - 4;304;305;306;307;, - 4;308;309;310;311;, - 4;312;313;314;315;, - 4;316;317;318;319;, - 4;320;321;322;323;, - 4;324;325;326;327;, - 4;328;329;330;331;, - 4;332;333;334;335;, - 4;336;337;338;339;, - 4;340;341;342;343;, - 4;344;345;346;347;, - 4;348;349;350;351;, - 4;352;353;354;355;, - 4;356;357;358;359;, - 4;360;361;362;363;, - 4;364;365;366;367;, - 4;368;369;370;371;, - 4;372;373;374;375;, - 4;376;377;378;379;, - 4;380;381;382;383;, - 4;384;385;386;387;, - 4;388;389;390;391;, - 4;392;393;394;395;, - 4;396;397;398;399;, - 4;400;401;402;403;, - 4;404;405;406;407;, - 4;408;409;410;411;, - 4;412;413;414;415;, - 4;416;417;418;419;, - 4;420;421;422;423;, - 4;424;425;426;427;, - 4;428;429;430;431;, - 4;432;433;434;435;, - 4;436;437;438;439;, - 4;440;441;442;443;, - 4;444;445;446;447;, - 4;448;449;450;451;, - 4;452;453;454;455;, - 4;456;457;458;459;, - 4;460;461;462;463;; - MeshNormals { //Mesh Normals - 464; - -0.999987;-0.005047; 0.000000;, - -0.999987;-0.005047; 0.000000;, - -0.999987;-0.005047; 0.000000;, - -0.999987;-0.005047; 0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.999919; 0.012758; 0.000000;, - 0.999919; 0.012758; 0.000000;, - 0.999919; 0.012758; 0.000000;, - 0.999919; 0.012758; 0.000000;, - -0.009281;-0.999957; 0.000000;, - -0.009281;-0.999957; 0.000000;, - -0.009281;-0.999957; 0.000000;, - -0.009281;-0.999957; 0.000000;, - 0.001982; 0.028507;-0.999592;, - 0.001982; 0.028507;-0.999592;, - 0.001982; 0.028507;-0.999592;, - 0.001982; 0.028507;-0.999592;, - -0.000000;-0.052328; 0.998630;, - -0.000000;-0.052328; 0.998630;, - -0.000000;-0.052328; 0.998630;, - -0.000000;-0.052328; 0.998630;, - -0.999994; 0.003521;-0.000000;, - -0.999994; 0.003521;-0.000000;, - -0.999994; 0.003521;-0.000000;, - -0.999994; 0.003521;-0.000000;, - 0.999907; 0.013606; 0.000000;, - 0.999907; 0.013606; 0.000000;, - 0.999907; 0.013606; 0.000000;, - 0.999907; 0.013606; 0.000000;, - -0.000112;-0.024047;-0.999711;, - -0.000112;-0.024047;-0.999711;, - -0.000112;-0.024047;-0.999711;, - -0.000112;-0.024047;-0.999711;, - -0.000066;-0.014174; 0.999900;, - -0.000066;-0.014174; 0.999900;, - -0.000066;-0.014174; 0.999900;, - -0.000066;-0.014174; 0.999900;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000; 0.998210; 0.059810;, - 0.000000; 0.998210; 0.059810;, - 0.000000; 0.998210; 0.059810;, - 0.000000; 0.998210; 0.059810;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-0.998210;-0.059810;, - 0.000000;-0.998210;-0.059810;, - 0.000000;-0.998210;-0.059810;, - 0.000000;-0.998210;-0.059810;, - 0.000000; 0.038457;-0.999260;, - 0.000000; 0.038457;-0.999260;, - 0.000000; 0.038457;-0.999260;, - 0.000000; 0.038457;-0.999260;, - 0.000000;-0.038457; 0.999260;, - 0.000000;-0.038457; 0.999260;, - 0.000000;-0.038457; 0.999260;, - 0.000000;-0.038457; 0.999260;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-0.253236;-0.967405;, - 0.000000;-0.253236;-0.967405;, - 0.000000;-0.253236;-0.967405;, - 0.000000;-0.253236;-0.967405;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.000000;-0.982109; 0.188312;, - 0.000000;-0.982109; 0.188312;, - 0.000000;-0.982109; 0.188312;, - 0.000000;-0.982109; 0.188312;, - 0.000000;-0.188312;-0.982109;, - 0.000000;-0.188312;-0.982109;, - 0.000000;-0.188312;-0.982109;, - 0.000000;-0.188312;-0.982109;, - 0.000000; 0.188312; 0.982109;, - 0.000000; 0.188312; 0.982109;, - 0.000000; 0.188312; 0.982109;, - 0.000000; 0.188312; 0.982109;, - 0.000000;-0.280357;-0.959896;, - 0.000000;-0.280357;-0.959896;, - 0.000000;-0.280357;-0.959896;, - 0.000000;-0.280357;-0.959896;, - 0.000000; 0.640010; 0.768367;, - 0.000000; 0.640010; 0.768367;, - 0.000000; 0.640010; 0.768367;, - 0.000000; 0.640010; 0.768367;, - 0.984694; 0.165048;-0.055998;, - 0.984694; 0.165048;-0.055998;, - 0.984694; 0.165048;-0.055998;, - 0.984694; 0.165048;-0.055998;, - -0.979760; 0.189564;-0.064316;, - -0.979760; 0.189564;-0.064316;, - -0.979760; 0.189564;-0.064316;, - -0.979760; 0.189564;-0.064316;, - 0.000000; 0.933410;-0.358811;, - 0.000000; 0.933410;-0.358811;, - 0.000000; 0.933410;-0.358811;, - 0.000000; 0.933410;-0.358811;, - -0.992678; 0.109120;-0.051792;, - -0.992678; 0.109120;-0.051792;, - -0.992678; 0.109120;-0.051792;, - -0.992678; 0.109120;-0.051792;, - 0.000000; 0.510587; 0.859826;, - 0.000000; 0.510587; 0.859826;, - 0.000000; 0.510587; 0.859826;, - 0.000000; 0.510587; 0.859826;, - 0.992678; 0.109120;-0.051792;, - 0.992678; 0.109120;-0.051792;, - 0.992678; 0.109120;-0.051792;, - 0.992678; 0.109120;-0.051792;, - -0.261173; 0.005940; 0.965274;, - -0.261173; 0.005940; 0.965274;, - -0.261173; 0.005940; 0.965274;, - -0.261173; 0.005940; 0.965274;, - -0.209960; 0.976798; 0.042231;, - -0.209960; 0.976798; 0.042231;, - -0.209960; 0.976798; 0.042231;, - -0.209960; 0.976798; 0.042231;, - 0.297039; 0.001107;-0.954865;, - 0.297039; 0.001107;-0.954865;, - 0.297039; 0.001107;-0.954865;, - 0.297039; 0.001107;-0.954865;, - 0.209960;-0.976798;-0.042233;, - 0.209960;-0.976798;-0.042233;, - 0.209960;-0.976798;-0.042233;, - 0.209960;-0.976798;-0.042233;, - -0.840506;-0.179834;-0.511087;, - -0.840506;-0.179834;-0.511087;, - -0.840506;-0.179834;-0.511087;, - -0.840506;-0.179834;-0.511087;, - 0.931767; 0.185369; 0.312167;, - 0.931767; 0.185369; 0.312167;, - 0.931767; 0.185369; 0.312167;, - 0.931767; 0.185369; 0.312167;, - -0.204566;-0.002152;-0.978850;, - -0.204566;-0.002152;-0.978850;, - -0.204566;-0.002152;-0.978850;, - -0.204566;-0.002152;-0.978850;, - 0.183886; 0.982109;-0.040588;, - 0.183886; 0.982109;-0.040588;, - 0.183886; 0.982109;-0.040588;, - 0.183886; 0.982109;-0.040588;, - 0.231786;-0.003196; 0.972761;, - 0.231786;-0.003196; 0.972761;, - 0.231786;-0.003196; 0.972761;, - 0.231786;-0.003196; 0.972761;, - -0.183886;-0.982109; 0.040589;, - -0.183886;-0.982109; 0.040589;, - -0.183886;-0.982109; 0.040589;, - -0.183886;-0.982109; 0.040589;, - 0.943190;-0.187923;-0.274003;, - 0.943190;-0.187923;-0.274003;, - 0.943190;-0.187923;-0.274003;, - 0.943190;-0.187923;-0.274003;, - -0.973362; 0.187690; 0.131676;, - -0.973362; 0.187690; 0.131676;, - -0.973362; 0.187690; 0.131676;, - -0.973362; 0.187690; 0.131676;, - -0.963521;-0.233403; 0.130961;, - -0.963521;-0.233403; 0.130961;, - -0.963521;-0.233403; 0.130961;, - -0.963521;-0.233403; 0.130961;, - -0.203399; 0.973756; 0.102115;, - -0.203399; 0.973756; 0.102115;, - -0.203399; 0.973756; 0.102115;, - -0.203399; 0.973756; 0.102115;, - 0.958897; 0.247088; 0.139516;, - 0.958897; 0.247088; 0.139516;, - 0.958897; 0.247088; 0.139516;, - 0.958897; 0.247088; 0.139516;, - 0.229736;-0.953833; 0.193451;, - 0.229736;-0.953833; 0.193451;, - 0.229736;-0.953833; 0.193451;, - 0.229736;-0.953833; 0.193451;, - 0.058422;-0.065189;-0.996161;, - 0.058422;-0.065189;-0.996161;, - 0.058422;-0.065189;-0.996161;, - 0.058422;-0.065189;-0.996161;, - -0.058422; 0.065189; 0.996161;, - -0.058422; 0.065189; 0.996161;, - -0.058422; 0.065189; 0.996161;, - -0.058422; 0.065189; 0.996161;, - -0.964797;-0.245028;-0.095541;, - -0.964797;-0.245028;-0.095541;, - -0.964797;-0.245028;-0.095541;, - -0.964797;-0.245028;-0.095541;, - -0.226867; 0.947641;-0.224738;, - -0.226867; 0.947641;-0.224738;, - -0.226867; 0.947641;-0.224738;, - -0.226867; 0.947641;-0.224738;, - 0.967699; 0.243367; 0.065811;, - 0.967699; 0.243367; 0.065811;, - 0.967699; 0.243367; 0.065811;, - 0.967699; 0.243367; 0.065811;, - 0.223509;-0.939864; 0.258262;, - 0.223509;-0.939864; 0.258262;, - 0.223509;-0.939864; 0.258262;, - 0.223509;-0.939864; 0.258262;, - 0.969453; 0.241820; 0.041031;, - 0.969453; 0.241820; 0.041031;, - 0.969453; 0.241820; 0.041031;, - 0.969453; 0.241820; 0.041031;, - 0.238217;-0.968129; 0.077326;, - 0.238217;-0.968129; 0.077326;, - 0.238217;-0.968129; 0.077326;, - 0.238217;-0.968129; 0.077326;, - -0.999076; 0.000000;-0.042972;, - -0.999076; 0.000000;-0.042972;, - -0.999076; 0.000000;-0.042972;, - -0.999076; 0.000000;-0.042972;, - -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.161622; 0.986715;-0.016464;, - -0.161622; 0.986715;-0.016464;, - -0.161622; 0.986715;-0.016464;, - -0.161622; 0.986715;-0.016464;, - -0.998854; 0.000000;-0.047854;, - -0.998854; 0.000000;-0.047854;, - -0.998854; 0.000000;-0.047854;, - -0.998854; 0.000000;-0.047854;, - -0.966042;-0.256834;-0.028270;, - -0.966042;-0.256834;-0.028270;, - -0.966042;-0.256834;-0.028270;, - -0.966042;-0.256834;-0.028270;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.998854; 0.000000;-0.047854;, - 0.998854; 0.000000;-0.047854;, - 0.998854; 0.000000;-0.047854;, - 0.998854; 0.000000;-0.047854;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.999076; 0.000000;-0.042972;, - 0.999076; 0.000000;-0.042972;, - 0.999076; 0.000000;-0.042972;, - 0.999076; 0.000000;-0.042972;, - -0.999076; 0.000000;-0.042972;, - -0.999076; 0.000000;-0.042972;, - -0.999076; 0.000000;-0.042972;, - -0.999076; 0.000000;-0.042972;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.999076; 0.000000;-0.042972;, - 0.999076; 0.000000;-0.042972;, - 0.999076; 0.000000;-0.042972;, - 0.999076; 0.000000;-0.042972;, - -0.998854; 0.000000;-0.047854;, - -0.998854; 0.000000;-0.047854;, - -0.998854; 0.000000;-0.047854;, - -0.998854; 0.000000;-0.047854;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000; 0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.000000;-0.996894;-0.078751;, - 0.998854; 0.000000;-0.047854;, - 0.998854; 0.000000;-0.047854;, - 0.998854; 0.000000;-0.047854;, - 0.998854; 0.000000;-0.047854;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.001157; 0.999925;-0.012185;, - 0.001157; 0.999925;-0.012185;, - 0.001157; 0.999925;-0.012185;, - 0.001157; 0.999925;-0.012185;, - 1.000000;-0.000000;-0.000000;, - 1.000000;-0.000000;-0.000000;, - 1.000000;-0.000000;-0.000000;, - 1.000000;-0.000000;-0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.013126;-0.257330;-0.966235;, - -0.013126;-0.257330;-0.966235;, - -0.013126;-0.257330;-0.966235;, - -0.013126;-0.257330;-0.966235;, - -0.002877; 0.231388; 0.972857;, - -0.002877; 0.231388; 0.972857;, - -0.002877; 0.231388; 0.972857;, - -0.002877; 0.231388; 0.972857;, - 0.000000;-0.989489;-0.144609;, - 0.000000;-0.989489;-0.144609;, - 0.000000;-0.989489;-0.144609;, - 0.000000;-0.989489;-0.144609;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - -1.000000; 0.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000;-1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - -0.000000; 0.000000; 1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000; 0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000;-0.000000;-1.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000;-1.000000;-0.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 0.000000; 1.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 0.000000; 1.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 1.000000; 0.000000;-0.000000;, - 0.963903; 0.000000;-0.266253;, - 0.963903; 0.000000;-0.266253;, - 0.963903; 0.000000;-0.266253;, - 0.963903; 0.000000;-0.266253;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000; 1.000000; 0.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-0.000000; 1.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.000000;-1.000000; 0.000000;, - 0.997596; 0.000000; 0.069296;, - 0.997596; 0.000000; 0.069296;, - 0.997596; 0.000000; 0.069296;, - 0.997596; 0.000000; 0.069296;, - 0.000000; 0.989532;-0.144311;, - 0.000000; 0.989532;-0.144311;, - 0.000000; 0.989532;-0.144311;, - 0.000000; 0.989532;-0.144311;, - -0.999437; 0.000000; 0.033555;, - -0.999437; 0.000000; 0.033555;, - -0.999437; 0.000000; 0.033555;, - -0.999437; 0.000000; 0.033555;, - 0.000000; 0.989489;-0.144610;, - 0.000000; 0.989489;-0.144610;, - 0.000000; 0.989489;-0.144610;, - 0.000000; 0.989489;-0.144610;, - -0.954446; 0.000000;-0.298385;, - -0.954446; 0.000000;-0.298385;, - -0.954446; 0.000000;-0.298385;, - -0.954446; 0.000000;-0.298385;, - 0.000000;-0.989532;-0.144311;, - 0.000000;-0.989532;-0.144311;, - 0.000000;-0.989532;-0.144311;, - 0.000000;-0.989532;-0.144311;; - 116; - 4;0;1;2;3;, - 4;4;5;6;7;, - 4;8;9;10;11;, - 4;12;13;14;15;, - 4;16;17;18;19;, - 4;20;21;22;23;, - 4;24;25;26;27;, - 4;28;29;30;31;, - 4;32;33;34;35;, - 4;36;37;38;39;, - 4;40;41;42;43;, - 4;44;45;46;47;, - 4;48;49;50;51;, - 4;52;53;54;55;, - 4;56;57;58;59;, - 4;60;61;62;63;, - 4;64;65;66;67;, - 4;68;69;70;71;, - 4;72;73;74;75;, - 4;76;77;78;79;, - 4;80;81;82;83;, - 4;84;85;86;87;, - 4;88;89;90;91;, - 4;92;93;94;95;, - 4;96;97;98;99;, - 4;100;101;102;103;, - 4;104;105;106;107;, - 4;108;109;110;111;, - 4;112;113;114;115;, - 4;116;117;118;119;, - 4;120;121;122;123;, - 4;124;125;126;127;, - 4;128;129;130;131;, - 4;132;133;134;135;, - 4;136;137;138;139;, - 4;140;141;142;143;, - 4;144;145;146;147;, - 4;148;149;150;151;, - 4;152;153;154;155;, - 4;156;157;158;159;, - 4;160;161;162;163;, - 4;164;165;166;167;, - 4;168;169;170;171;, - 4;172;173;174;175;, - 4;176;177;178;179;, - 4;180;181;182;183;, - 4;184;185;186;187;, - 4;188;189;190;191;, - 4;192;193;194;195;, - 4;196;197;198;199;, - 4;200;201;202;203;, - 4;204;205;206;207;, - 4;208;209;210;211;, - 4;212;213;214;215;, - 4;216;217;218;219;, - 4;220;221;222;223;, - 4;224;225;226;227;, - 4;228;229;230;231;, - 4;232;233;234;235;, - 4;236;237;238;239;, - 4;240;241;242;243;, - 4;244;245;246;247;, - 4;248;249;250;251;, - 4;252;253;254;255;, - 4;256;257;258;259;, - 4;260;261;262;263;, - 4;264;265;266;267;, - 4;268;269;270;271;, - 4;272;273;274;275;, - 4;276;277;278;279;, - 4;280;281;282;283;, - 4;284;285;286;287;, - 4;288;289;290;291;, - 4;292;293;294;295;, - 4;296;297;298;299;, - 4;300;301;302;303;, - 4;304;305;306;307;, - 4;308;309;310;311;, - 4;312;313;314;315;, - 4;316;317;318;319;, - 4;320;321;322;323;, - 4;324;325;326;327;, - 4;328;329;330;331;, - 4;332;333;334;335;, - 4;336;337;338;339;, - 4;340;341;342;343;, - 4;344;345;346;347;, - 4;348;349;350;351;, - 4;352;353;354;355;, - 4;356;357;358;359;, - 4;360;361;362;363;, - 4;364;365;366;367;, - 4;368;369;370;371;, - 4;372;373;374;375;, - 4;376;377;378;379;, - 4;380;381;382;383;, - 4;384;385;386;387;, - 4;388;389;390;391;, - 4;392;393;394;395;, - 4;396;397;398;399;, - 4;400;401;402;403;, - 4;404;405;406;407;, - 4;408;409;410;411;, - 4;412;413;414;415;, - 4;416;417;418;419;, - 4;420;421;422;423;, - 4;424;425;426;427;, - 4;428;429;430;431;, - 4;432;433;434;435;, - 4;436;437;438;439;, - 4;440;441;442;443;, - 4;444;445;446;447;, - 4;448;449;450;451;, - 4;452;453;454;455;, - 4;456;457;458;459;, - 4;460;461;462;463;; - } //End of Mesh Normals - MeshMaterialList { //Mesh Material List - 1; - 1; - 0;; - Material Default_Material { - 0.800000; 0.800000; 0.800000; 0.800000;; - 96.078431; - 0.500000; 0.500000; 0.500000;; - 0.000000; 0.000000; 0.000000;; - } - } //End of Mesh Material List - MeshTextureCoords { //Mesh UV Coordinates - 464; - 0.444664; 0.882740;, - 0.453010; 0.994603;, - 0.352139; 0.990704;, - 0.370352; 0.882084;, - 0.699615; 0.826957;, - 0.888198; 0.826957;, - 0.888198; 0.999617;, - 0.699615; 0.999617;, - 0.566940; 0.877116;, - 0.559308; 0.768256;, - 0.664340; 0.764336;, - 0.671138; 0.868138;, - 0.999617; 0.397190;, - 0.811034; 0.397190;, - 0.811034; 0.271762;, - 0.999617; 0.271762;, - 0.566940; 0.877116;, - 0.565483; 0.991269;, - 0.453010; 0.994603;, - 0.444664; 0.882740;, - 0.370352; 0.882084;, - 0.352139; 0.990704;, - 0.243744; 0.976452;, - 0.255729; 0.872295;, - 0.447331; 0.770867;, - 0.444664; 0.882740;, - 0.370352; 0.882084;, - 0.373731; 0.773298;, - 0.565483; 0.991269;, - 0.566940; 0.877116;, - 0.671138; 0.868138;, - 0.670488; 0.977139;, - 0.559308; 0.768256;, - 0.566940; 0.877116;, - 0.444664; 0.882740;, - 0.447331; 0.770867;, - 0.373731; 0.773298;, - 0.370352; 0.882084;, - 0.255729; 0.872295;, - 0.261819; 0.766836;, - 0.694945; 0.168323;, - 0.694945; 0.057246;, - 0.784866; 0.057246;, - 0.784866; 0.168323;, - 0.978885; 0.802852;, - 0.978885; 0.908930;, - 0.888965; 0.908930;, - 0.888965; 0.802852;, - 0.980864; 0.057246;, - 0.980864; 0.168323;, - 0.890944; 0.168323;, - 0.890944; 0.057246;, - 0.995043; 0.999617;, - 0.888965; 0.999617;, - 0.888965; 0.909696;, - 0.995043; 0.909696;, - 0.588867; 0.168323;, - 0.588867; 0.057246;, - 0.694945; 0.057246;, - 0.694945; 0.168323;, - 0.784866; 0.168323;, - 0.784866; 0.057246;, - 0.890944; 0.057246;, - 0.890944; 0.168323;, - 0.581893; 0.381313;, - 0.525981; 0.490259;, - 0.379618; 0.402841;, - 0.398054; 0.301018;, - 0.815523; 0.662938;, - 0.815524; 0.728486;, - 0.769623; 0.748548;, - 0.769623; 0.642876;, - 0.048873; 0.480128;, - 0.006488; 0.386718;, - 0.167529; 0.313647;, - 0.194276; 0.403737;, - 0.988636; 0.730470;, - 0.896211; 0.730470;, - 0.896211; 0.660198;, - 0.988636; 0.660198;, - 0.723019; 0.642876;, - 0.769623; 0.642876;, - 0.769623; 0.748548;, - 0.723019; 0.748548;, - 0.398054; 0.301018;, - 0.379618; 0.402841;, - 0.194276; 0.403737;, - 0.167529; 0.313647;, - 0.877077; 0.662938;, - 0.877077; 0.728486;, - 0.815524; 0.728486;, - 0.815523; 0.662938;, - 0.357048; 0.517540;, - 0.216152; 0.507657;, - 0.194276; 0.403737;, - 0.379618; 0.402841;, - 0.216152; 0.507657;, - 0.120216; 0.568830;, - 0.048873; 0.480128;, - 0.194276; 0.403737;, - 0.379618; 0.402841;, - 0.525981; 0.490259;, - 0.444034; 0.577428;, - 0.357048; 0.517540;, - 0.362490; 0.686881;, - 0.215162; 0.682739;, - 0.251936; 0.612341;, - 0.315469; 0.601729;, - 0.357048; 0.517540;, - 0.444034; 0.577428;, - 0.362490; 0.686881;, - 0.315469; 0.601729;, - 0.315469; 0.601729;, - 0.251936; 0.612341;, - 0.216152; 0.507657;, - 0.357048; 0.517540;, - 0.251936; 0.612341;, - 0.215162; 0.682739;, - 0.120216; 0.568830;, - 0.216152; 0.507657;, - 0.882221; 0.248633;, - 0.854668; 0.246226;, - 0.860426; 0.180315;, - 0.887978; 0.182722;, - 0.854668; 0.246226;, - 0.811034; 0.225788;, - 0.836391; 0.169090;, - 0.860426; 0.180315;, - 0.955560; 0.229325;, - 0.928738; 0.236069;, - 0.913594; 0.175833;, - 0.940417; 0.169090;, - 0.928738; 0.236069;, - 0.882221; 0.248633;, - 0.887978; 0.182722;, - 0.913594; 0.175833;, - 0.568666; 0.188259;, - 0.570943; 0.215822;, - 0.522758; 0.215822;, - 0.520482; 0.188259;, - 0.557028; 0.187492;, - 0.557028; 0.159835;, - 0.583256; 0.155869;, - 0.583256; 0.183526;, - 0.831256; 0.582510;, - 0.811034; 0.563643;, - 0.853460; 0.518170;, - 0.873682; 0.537037;, - 0.941763; 0.626056;, - 0.893812; 0.623471;, - 0.917809; 0.562573;, - 0.941763; 0.563864;, - 0.893812; 0.623471;, - 0.868081; 0.613331;, - 0.892078; 0.552433;, - 0.917809; 0.562573;, - 0.868081; 0.613331;, - 0.831256; 0.582510;, - 0.873682; 0.537037;, - 0.892078; 0.552433;, - 0.680049; 0.227106;, - 0.680049; 0.254763;, - 0.632028; 0.254763;, - 0.632028; 0.227106;, - 0.631262; 0.227106;, - 0.631262; 0.254763;, - 0.607273; 0.254763;, - 0.607273; 0.227106;, - 0.151813; 0.952191;, - 0.112345; 0.947279;, - 0.113514; 0.904716;, - 0.158003; 0.906790;, - 0.112345; 0.947279;, - 0.077106; 0.948022;, - 0.069721; 0.907057;, - 0.113514; 0.904716;, - 0.077106; 0.948022;, - 0.041465; 0.957980;, - 0.021003; 0.917204;, - 0.069721; 0.907057;, - 0.189475; 0.963315;, - 0.151813; 0.952191;, - 0.158003; 0.906790;, - 0.212875; 0.914749;, - 0.563441; 0.216588;, - 0.563441; 0.263118;, - 0.520482; 0.263118;, - 0.520482; 0.216588;, - 0.758717; 0.826190;, - 0.758717; 0.792862;, - 0.808077; 0.792862;, - 0.808077; 0.826190;, - 0.160570; 0.844684;, - 0.116458; 0.842962;, - 0.117818; 0.795850;, - 0.145830; 0.795143;, - 0.116458; 0.842962;, - 0.069466; 0.841189;, - 0.076449; 0.791324;, - 0.117818; 0.795850;, - 0.069466; 0.841189;, - 0.014746; 0.837740;, - 0.047872; 0.785711;, - 0.076449; 0.791324;, - 0.209296; 0.833892;, - 0.160570; 0.844684;, - 0.145830; 0.795143;, - 0.184389; 0.782622;, - 0.069721; 0.907057;, - 0.021003; 0.917204;, - 0.014746; 0.837740;, - 0.069466; 0.841189;, - 0.212875; 0.914749;, - 0.158003; 0.906790;, - 0.160570; 0.844684;, - 0.209296; 0.833892;, - 0.696701; 0.623144;, - 0.663486; 0.624673;, - 0.640785; 0.404303;, - 0.699058; 0.401620;, - 0.556261; 0.154243;, - 0.556261; 0.187492;, - 0.520482; 0.187492;, - 0.520482; 0.154243;, - 0.113514; 0.904716;, - 0.069721; 0.907057;, - 0.069466; 0.841189;, - 0.116458; 0.842962;, - 0.696269; 0.621054;, - 0.663054; 0.622583;, - 0.640352; 0.402213;, - 0.698626; 0.399530;, - 0.158003; 0.906790;, - 0.113514; 0.904716;, - 0.116458; 0.842962;, - 0.160570; 0.844684;, - 0.621714; 0.314631;, - 0.680049; 0.314631;, - 0.680049; 0.367630;, - 0.621714; 0.367630;, - 0.663054; 0.622583;, - 0.627632; 0.627630;, - 0.587883; 0.409689;, - 0.640352; 0.402213;, - 0.844623; 0.792862;, - 0.844623; 0.826112;, - 0.808843; 0.826112;, - 0.808843; 0.792862;, - 0.732005; 0.622825;, - 0.696269; 0.621054;, - 0.698626; 0.399530;, - 0.751560; 0.402153;, - 0.764905; 0.627630;, - 0.732005; 0.622825;, - 0.751560; 0.402153;, - 0.809283; 0.410584;, - 0.699615; 0.773191;, - 0.757950; 0.773191;, - 0.757950; 0.826190;, - 0.699615; 0.826190;, - 0.663486; 0.624673;, - 0.628065; 0.629720;, - 0.588315; 0.411779;, - 0.640785; 0.404303;, - 0.732437; 0.624915;, - 0.696701; 0.623144;, - 0.699058; 0.401620;, - 0.751992; 0.404243;, - 0.765338; 0.629720;, - 0.732437; 0.624915;, - 0.751992; 0.404243;, - 0.809715; 0.412674;, - 0.697254; 0.619480;, - 0.664039; 0.621009;, - 0.641336; 0.400639;, - 0.699610; 0.397956;, - 0.680049; 0.193089;, - 0.680049; 0.226339;, - 0.644269; 0.226339;, - 0.644269; 0.193089;, - 0.680049; 0.255529;, - 0.680049; 0.313865;, - 0.627050; 0.313865;, - 0.627050; 0.255529;, - 0.664039; 0.621009;, - 0.628617; 0.626056;, - 0.588867; 0.408115;, - 0.641336; 0.400639;, - 0.732989; 0.621251;, - 0.697254; 0.619480;, - 0.699610; 0.397956;, - 0.752544; 0.400579;, - 0.765890; 0.626056;, - 0.732989; 0.621251;, - 0.752544; 0.400579;, - 0.810267; 0.409010;, - 0.697253; 0.620613;, - 0.664039; 0.622143;, - 0.641336; 0.401773;, - 0.699610; 0.399090;, - 0.643503; 0.193089;, - 0.643503; 0.226339;, - 0.607723; 0.226339;, - 0.607723; 0.193089;, - 0.573481; 0.263885;, - 0.573481; 0.322220;, - 0.520482; 0.322220;, - 0.520482; 0.263885;, - 0.664039; 0.622143;, - 0.628617; 0.627190;, - 0.588867; 0.409249;, - 0.641336; 0.401773;, - 0.732989; 0.622384;, - 0.697253; 0.620613;, - 0.699610; 0.399090;, - 0.752544; 0.401713;, - 0.765890; 0.627190;, - 0.732989; 0.622384;, - 0.752544; 0.401713;, - 0.810267; 0.410144;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;, - 0.000000; 1.000000;; - } //End of Mesh UV Coordinates - XSkinMeshHeader { - 1; - 3; - 9; - } - SkinWeights { - "Armature_noga4"; - 24; - 272, - 273, - 274, - 275, - 276, - 277, - 278, - 279, - 280, - 281, - 282, - 283, - 284, - 285, - 286, - 287, - 288, - 289, - 290, - 291, - 292, - 293, - 294, - 295; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000,-0.000000, 0.000000, 0.000000, - 0.000000,-1.000000,-0.000000, 0.000000, - -1.404690,-1.430863, 0.883390, 1.000000;; - } //End of Armature_noga4 Skin Weights - SkinWeights { - "Armature_noga2"; - 24; - 216, - 217, - 218, - 219, - 244, - 245, - 246, - 247, - 256, - 257, - 258, - 259, - 260, - 261, - 262, - 263, - 264, - 265, - 266, - 267, - 268, - 269, - 270, - 271; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - 1.641199,-1.448169, 0.881825, 1.000000;; - } //End of Armature_noga2 Skin Weights - SkinWeights { - "Armature_hvost"; - 56; - 168, - 169, - 170, - 171, - 172, - 173, - 174, - 175, - 176, - 177, - 178, - 179, - 180, - 181, - 182, - 183, - 184, - 185, - 186, - 187, - 188, - 189, - 190, - 191, - 192, - 193, - 194, - 195, - 196, - 197, - 198, - 199, - 200, - 201, - 202, - 203, - 204, - 205, - 206, - 207, - 208, - 209, - 210, - 211, - 212, - 213, - 214, - 215, - 224, - 225, - 226, - 227, - 232, - 233, - 234, - 235; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.698127,-0.052851, 0.714020, 0.000000, - -0.710717,-0.171780, 0.682183, 0.000000, - 0.086601,-0.983717,-0.157487, 0.000000, - -1.399654,-0.200846, 1.150453, 1.000000;; - } //End of Armature_hvost Skin Weights - SkinWeights { - "Armature_sheya"; - 24; - 40, - 41, - 42, - 43, - 44, - 45, - 46, - 47, - 48, - 49, - 50, - 51, - 52, - 53, - 54, - 55, - 56, - 57, - 58, - 59, - 60, - 61, - 62, - 63; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.997121,-0.075824,-0.000243, 0.000000, - 0.075644, 0.994519, 0.072177, 0.000000, - -0.005231,-0.071988, 0.997392, 0.000000, - -0.170866,-1.720121,-0.152821, 1.000000;; - } //End of Armature_sheya Skin Weights - SkinWeights { - "Armature_head"; - 224; - 64, - 65, - 66, - 67, - 68, - 69, - 70, - 71, - 72, - 73, - 74, - 75, - 76, - 77, - 78, - 79, - 80, - 81, - 82, - 83, - 84, - 85, - 86, - 87, - 88, - 89, - 90, - 91, - 92, - 93, - 94, - 95, - 96, - 97, - 98, - 99, - 100, - 101, - 102, - 103, - 104, - 105, - 106, - 107, - 108, - 109, - 110, - 111, - 112, - 113, - 114, - 115, - 116, - 117, - 118, - 119, - 120, - 121, - 122, - 123, - 124, - 125, - 126, - 127, - 128, - 129, - 130, - 131, - 132, - 133, - 134, - 135, - 136, - 137, - 138, - 139, - 140, - 141, - 142, - 143, - 144, - 145, - 146, - 147, - 148, - 149, - 150, - 151, - 152, - 153, - 154, - 155, - 156, - 157, - 158, - 159, - 160, - 161, - 162, - 163, - 164, - 165, - 166, - 167, - 344, - 345, - 346, - 347, - 348, - 349, - 350, - 351, - 352, - 353, - 354, - 355, - 356, - 357, - 358, - 359, - 360, - 361, - 362, - 363, - 364, - 365, - 366, - 367, - 368, - 369, - 370, - 371, - 372, - 373, - 374, - 375, - 376, - 377, - 378, - 379, - 380, - 381, - 382, - 383, - 384, - 385, - 386, - 387, - 388, - 389, - 390, - 391, - 392, - 393, - 394, - 395, - 396, - 397, - 398, - 399, - 400, - 401, - 402, - 403, - 404, - 405, - 406, - 407, - 408, - 409, - 410, - 411, - 412, - 413, - 414, - 415, - 416, - 417, - 418, - 419, - 420, - 421, - 422, - 423, - 424, - 425, - 426, - 427, - 428, - 429, - 430, - 431, - 432, - 433, - 434, - 435, - 436, - 437, - 438, - 439, - 440, - 441, - 442, - 443, - 444, - 445, - 446, - 447, - 448, - 449, - 450, - 451, - 452, - 453, - 454, - 455, - 456, - 457, - 458, - 459, - 460, - 461, - 462, - 463; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 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.959864, 0.280464, 0.000000, - -0.000000,-0.280465, 0.959864, 0.000000, - -0.039910,-2.530474,-0.704059, 1.000000;; - } //End of Armature_head Skin Weights - SkinWeights { - "Armature_zubi"; - 24; - 320, - 321, - 322, - 323, - 324, - 325, - 326, - 327, - 328, - 329, - 330, - 331, - 332, - 333, - 334, - 335, - 336, - 337, - 338, - 339, - 340, - 341, - 342, - 343; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000, 0.000000, 0.000000, 0.000000, - -0.000000, 0.954399, 0.298535, 0.000000, - -0.000000,-0.298535, 0.954399, 0.000000, - -0.095552,-3.607529,-0.236531, 1.000000;; - } //End of Armature_zubi Skin Weights - SkinWeights { - "Armature_Body"; - 40; - 0, - 1, - 2, - 3, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 11, - 12, - 13, - 14, - 15, - 16, - 17, - 18, - 19, - 20, - 21, - 22, - 23, - 24, - 25, - 26, - 27, - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 1.000000, 0.000000, 0.000000, 0.000000, - 0.000000, 0.996529,-0.083252, 0.000000, - 0.000000, 0.083252, 0.996529, 0.000000, - -0.039910, 1.507776, 0.102992, 1.000000;; - } //End of Armature_Body Skin Weights - SkinWeights { - "Armature_noga3"; - 24; - 296, - 297, - 298, - 299, - 300, - 301, - 302, - 303, - 304, - 305, - 306, - 307, - 308, - 309, - 310, - 311, - 312, - 313, - 314, - 315, - 316, - 317, - 318, - 319; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - -1.404690,-1.429884,-0.864167, 1.000000;; - } //End of Armature_noga3 Skin Weights - SkinWeights { - "Armature_noga1"; - 24; - 220, - 221, - 222, - 223, - 228, - 229, - 230, - 231, - 236, - 237, - 238, - 239, - 240, - 241, - 242, - 243, - 248, - 249, - 250, - 251, - 252, - 253, - 254, - 255; - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000, - 1.000000; - 0.000000,-0.000000, 1.000000, 0.000000, - -1.000000, 0.000000, 0.000000, 0.000000, - -0.000000,-1.000000,-0.000000, 0.000000, - 1.641199,-1.466174,-0.824358, 1.000000;; - } //End of Armature_noga1 Skin Weights - } //End of Mesh Mesh - } //End of Cube -} //End of Root Frame -AnimationSet { - Animation { - {Armature} - AnimationKey { //Position - 2; - 136; - 0;3; -19.739037, 0.216398, 0.218101;;, - 1;3; -19.739037, 0.216398, 0.218101;;, - 2;3; -19.739037, 0.216398, 0.218101;;, - 3;3; -19.739037, 0.216398, 0.218101;;, - 4;3; -19.739037, 0.216398, 0.218101;;, - 5;3; -19.739037, 0.216398, 0.218101;;, - 6;3; -19.739037, 0.216398, 0.218101;;, - 7;3; -19.739037, 0.216398, 0.218101;;, - 8;3; -19.739037, 0.216398, 0.218101;;, - 9;3; -19.739037, 0.216398, 0.218101;;, - 10;3; -19.739037, 0.216398, 0.218101;;, - 11;3; -19.739037, 0.216398, 0.218101;;, - 12;3; -19.739037, 0.216398, 0.218101;;, - 13;3; -19.739037, 0.216398, 0.218101;;, - 14;3; -19.739037, 0.216398, 0.218101;;, - 15;3; -19.739037, 0.216398, 0.218101;;, - 16;3; -19.739037, 0.216398, 0.218101;;, - 17;3; -19.739037, 0.216398, 0.218101;;, - 18;3; -19.739037, 0.216398, 0.218101;;, - 19;3; -19.739037, 0.216398, 0.218101;;, - 20;3; -19.739037, 0.216398, 0.218101;;, - 21;3; -19.739037, 0.216398, 0.218101;;, - 22;3; -19.739037, 0.216398, 0.218101;;, - 23;3; -19.739037, 0.216398, 0.218101;;, - 24;3; -19.739037, 0.216398, 0.218101;;, - 25;3; -19.739037, 0.216398, 0.218101;;, - 26;3; -19.739037, 0.216398, 0.218101;;, - 27;3; -19.739037, 0.216398, 0.218101;;, - 28;3; -19.739037, 0.216398, 0.218101;;, - 29;3; -19.739037, 0.216398, 0.218101;;, - 30;3; -19.739037, 0.216398, 0.218101;;, - 31;3; -19.739037, 0.216398, 0.218101;;, - 32;3; -19.739037, 0.216398, 0.218101;;, - 33;3; -19.739037, 0.216398, 0.218101;;, - 34;3; -19.739037, 0.216398, 0.218101;;, - 35;3; -19.739037, 0.216398, 0.218101;;, - 36;3; -19.739037, 0.216398, 0.218101;;, - 37;3; -19.739037, 0.216398, 0.218101;;, - 38;3; -19.739037, 0.216398, 0.218101;;, - 39;3; -19.739037, 0.216398, 0.218101;;, - 40;3; -19.739037, 0.216398, 0.218101;;, - 41;3; -19.739037, 0.216398, 0.218101;;, - 42;3; -19.739037, 0.216398, 0.218101;;, - 43;3; -19.739037, 0.216398, 0.218101;;, - 44;3; -19.739037, 0.216398, 0.218101;;, - 45;3; -19.739037, 0.216398, 0.218101;;, - 46;3; -19.739037, 0.216398, 0.218101;;, - 47;3; -19.739037, 0.216398, 0.218101;;, - 48;3; -19.739037, 0.216398, 0.218101;;, - 49;3; -19.739037, 0.216398, 0.218101;;, - 50;3; -19.739037, 0.216398, 0.218101;;, - 51;3; -19.739037, 0.216398, 0.218101;;, - 52;3; -19.739037, 0.216398, 0.218101;;, - 53;3; -19.739037, 0.216398, 0.218101;;, - 54;3; -19.739037, 0.216398, 0.218101;;, - 55;3; -19.739037, 0.216398, 0.218101;;, - 56;3; -19.739037, 0.216398, 0.218101;;, - 57;3; -19.739037, 0.216398, 0.218101;;, - 58;3; -19.739037, 0.216398, 0.218101;;, - 59;3; -19.739037, 0.216398, 0.218101;;, - 60;3; -19.739037, 0.216398, 0.218101;;, - 61;3; -19.739037, 0.216398, 0.218101;;, - 62;3; -19.739037, 0.216398, 0.218101;;, - 63;3; -19.739037, 0.216398, 0.218101;;, - 64;3; -19.739037, 0.216398, 0.218101;;, - 65;3; -19.739037, 0.216398, 0.218101;;, - 66;3; -19.739037, 0.216398, 0.218101;;, - 67;3; -19.739037, 0.216398, 0.218101;;, - 68;3; -19.739037, 0.216398, 0.218101;;, - 69;3; -19.739037, 0.216398, 0.218101;;, - 70;3; -19.739037, 0.216398, 0.218101;;, - 71;3; -19.739037, 0.216398, 0.218101;;, - 72;3; -19.739037, 0.216398, 0.218101;;, - 73;3; -19.739037, 0.216398, 0.218101;;, - 74;3; -19.739037, 0.216398, 0.218101;;, - 75;3; -19.739037, 0.216398, 0.218101;;, - 76;3; -19.739037, 0.216398, 0.218101;;, - 77;3; -19.739037, 0.216398, 0.218101;;, - 78;3; -19.739037, 0.216398, 0.218101;;, - 79;3; -19.739037, 0.216398, 0.218101;;, - 80;3; -19.739037, 0.216398, 0.218101;;, - 81;3; -19.739037, 0.216398, 0.218101;;, - 82;3; -19.739037, 0.216398, 0.218101;;, - 83;3; -19.739037, 0.216398, 0.218101;;, - 84;3; -19.739037, 0.216398, 0.218101;;, - 85;3; -19.739037, 0.216398, 0.218101;;, - 86;3; -19.739037, 0.216398, 0.218101;;, - 87;3; -19.739037, 0.216398, 0.218101;;, - 88;3; -19.739037, 0.216398, 0.218101;;, - 89;3; -19.739037, 0.216398, 0.218101;;, - 90;3; -19.739037, 0.216398, 0.218101;;, - 91;3; -19.739037, 0.216398, 0.218101;;, - 92;3; -19.739037, 0.216398, 0.218101;;, - 93;3; -19.739037, 0.216398, 0.218101;;, - 94;3; -19.739037, 0.216398, 0.218101;;, - 95;3; -19.739037, 0.216398, 0.218101;;, - 96;3; -19.739037, 0.216398, 0.218101;;, - 97;3; -19.739037, 0.216398, 0.218101;;, - 98;3; -19.739037, 0.216398, 0.218101;;, - 99;3; -19.739037, 0.216398, 0.218101;;, - 100;3; -19.739037, 0.216398, 0.218101;;, - 101;3; -19.739037, 0.216398, 0.218101;;, - 102;3; -19.739037, 0.216398, 0.218101;;, - 103;3; -19.739037, 0.216398, 0.218101;;, - 104;3; -19.739037, 0.216398, 0.218101;;, - 105;3; -19.739037, 0.216398, 0.218101;;, - 106;3; -19.739037, 0.216398, 0.218101;;, - 107;3; -19.739037, 0.216398, 0.218101;;, - 108;3; -19.739037, 0.216398, 0.218101;;, - 109;3; -19.739037, 0.216398, 0.218101;;, - 110;3; -19.739037, 0.216398, 0.218101;;, - 111;3; -19.739037, 0.216398, 0.218101;;, - 112;3; -19.739037, 0.216398, 0.218101;;, - 113;3; -19.739037, 0.216398, 0.218101;;, - 114;3; -19.739037, 0.216398, 0.218101;;, - 115;3; -19.739037, 0.216398, 0.218101;;, - 116;3; -19.739037, 0.216398, 0.218101;;, - 117;3; -19.739037, 0.216398, 0.218101;;, - 118;3; -19.739037, 0.216398, 0.218101;;, - 119;3; -19.739037, 0.216398, 0.218101;;, - 120;3; -19.739037, 0.216398, 0.218101;;, - 121;3; -19.739037, 0.216398, 0.218101;;, - 122;3; -19.739037, 0.216398, 0.218101;;, - 123;3; -19.739037, 0.216398, 0.218101;;, - 124;3; -19.739037, 0.216398, 0.218101;;, - 125;3; -19.739037, 0.216398, 0.218101;;, - 126;3; -19.739037, 0.216398, 0.218101;;, - 127;3; -19.739037, 0.216398, 0.218101;;, - 128;3; -19.739037, 0.216398, 0.218101;;, - 129;3; -19.739037, 0.216398, 0.218101;;, - 130;3; -19.739037, 0.216398, 0.218101;;, - 131;3; -19.739037, 0.216398, 0.218101;;, - 132;3; -19.739037, 0.216398, 0.218101;;, - 133;3; -19.739037, 0.216398, 0.218101;;, - 134;3; -19.739037, 0.216398, 0.218101;;, - 135;3; -19.739037, 0.216398, 0.218101;;; - } - AnimationKey { //Rotation - 0; - 136; - 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;;; - } - AnimationKey { //Scale - 1; - 136; - 0;3; 3.749036, 3.749036, 3.749036;;, - 1;3; 3.749036, 3.749036, 3.749036;;, - 2;3; 3.749036, 3.749036, 3.749036;;, - 3;3; 3.749036, 3.749036, 3.749036;;, - 4;3; 3.749036, 3.749036, 3.749036;;, - 5;3; 3.749036, 3.749036, 3.749036;;, - 6;3; 3.749036, 3.749036, 3.749036;;, - 7;3; 3.749036, 3.749036, 3.749036;;, - 8;3; 3.749036, 3.749036, 3.749036;;, - 9;3; 3.749036, 3.749036, 3.749036;;, - 10;3; 3.749036, 3.749036, 3.749036;;, - 11;3; 3.749036, 3.749036, 3.749036;;, - 12;3; 3.749036, 3.749036, 3.749036;;, - 13;3; 3.749036, 3.749036, 3.749036;;, - 14;3; 3.749036, 3.749036, 3.749036;;, - 15;3; 3.749036, 3.749036, 3.749036;;, - 16;3; 3.749036, 3.749036, 3.749036;;, - 17;3; 3.749036, 3.749036, 3.749036;;, - 18;3; 3.749036, 3.749036, 3.749036;;, - 19;3; 3.749036, 3.749036, 3.749036;;, - 20;3; 3.749036, 3.749036, 3.749036;;, - 21;3; 3.749036, 3.749036, 3.749036;;, - 22;3; 3.749036, 3.749036, 3.749036;;, - 23;3; 3.749036, 3.749036, 3.749036;;, - 24;3; 3.749036, 3.749036, 3.749036;;, - 25;3; 3.749036, 3.749036, 3.749036;;, - 26;3; 3.749036, 3.749036, 3.749036;;, - 27;3; 3.749036, 3.749036, 3.749036;;, - 28;3; 3.749036, 3.749036, 3.749036;;, - 29;3; 3.749036, 3.749036, 3.749036;;, - 30;3; 3.749036, 3.749036, 3.749036;;, - 31;3; 3.749036, 3.749036, 3.749036;;, - 32;3; 3.749036, 3.749036, 3.749036;;, - 33;3; 3.749036, 3.749036, 3.749036;;, - 34;3; 3.749036, 3.749036, 3.749036;;, - 35;3; 3.749036, 3.749036, 3.749036;;, - 36;3; 3.749036, 3.749036, 3.749036;;, - 37;3; 3.749036, 3.749036, 3.749036;;, - 38;3; 3.749036, 3.749036, 3.749036;;, - 39;3; 3.749036, 3.749036, 3.749036;;, - 40;3; 3.749036, 3.749036, 3.749036;;, - 41;3; 3.749036, 3.749036, 3.749036;;, - 42;3; 3.749036, 3.749036, 3.749036;;, - 43;3; 3.749036, 3.749036, 3.749036;;, - 44;3; 3.749036, 3.749036, 3.749036;;, - 45;3; 3.749036, 3.749036, 3.749036;;, - 46;3; 3.749036, 3.749036, 3.749036;;, - 47;3; 3.749036, 3.749036, 3.749036;;, - 48;3; 3.749036, 3.749036, 3.749036;;, - 49;3; 3.749036, 3.749036, 3.749036;;, - 50;3; 3.749036, 3.749036, 3.749036;;, - 51;3; 3.749036, 3.749036, 3.749036;;, - 52;3; 3.749036, 3.749036, 3.749036;;, - 53;3; 3.749036, 3.749036, 3.749036;;, - 54;3; 3.749036, 3.749036, 3.749036;;, - 55;3; 3.749036, 3.749036, 3.749036;;, - 56;3; 3.749036, 3.749036, 3.749036;;, - 57;3; 3.749036, 3.749036, 3.749036;;, - 58;3; 3.749036, 3.749036, 3.749036;;, - 59;3; 3.749036, 3.749036, 3.749036;;, - 60;3; 3.749036, 3.749036, 3.749036;;, - 61;3; 3.749036, 3.749036, 3.749036;;, - 62;3; 3.749036, 3.749036, 3.749036;;, - 63;3; 3.749036, 3.749036, 3.749036;;, - 64;3; 3.749036, 3.749036, 3.749036;;, - 65;3; 3.749036, 3.749036, 3.749036;;, - 66;3; 3.749036, 3.749036, 3.749036;;, - 67;3; 3.749036, 3.749036, 3.749036;;, - 68;3; 3.749036, 3.749036, 3.749036;;, - 69;3; 3.749036, 3.749036, 3.749036;;, - 70;3; 3.749036, 3.749036, 3.749036;;, - 71;3; 3.749036, 3.749036, 3.749036;;, - 72;3; 3.749036, 3.749036, 3.749036;;, - 73;3; 3.749036, 3.749036, 3.749036;;, - 74;3; 3.749036, 3.749036, 3.749036;;, - 75;3; 3.749036, 3.749036, 3.749036;;, - 76;3; 3.749036, 3.749036, 3.749036;;, - 77;3; 3.749036, 3.749036, 3.749036;;, - 78;3; 3.749036, 3.749036, 3.749036;;, - 79;3; 3.749036, 3.749036, 3.749036;;, - 80;3; 3.749036, 3.749036, 3.749036;;, - 81;3; 3.749036, 3.749036, 3.749036;;, - 82;3; 3.749036, 3.749036, 3.749036;;, - 83;3; 3.749036, 3.749036, 3.749036;;, - 84;3; 3.749036, 3.749036, 3.749036;;, - 85;3; 3.749036, 3.749036, 3.749036;;, - 86;3; 3.749036, 3.749036, 3.749036;;, - 87;3; 3.749036, 3.749036, 3.749036;;, - 88;3; 3.749036, 3.749036, 3.749036;;, - 89;3; 3.749036, 3.749036, 3.749036;;, - 90;3; 3.749036, 3.749036, 3.749036;;, - 91;3; 3.749036, 3.749036, 3.749036;;, - 92;3; 3.749036, 3.749036, 3.749036;;, - 93;3; 3.749036, 3.749036, 3.749036;;, - 94;3; 3.749036, 3.749036, 3.749036;;, - 95;3; 3.749036, 3.749036, 3.749036;;, - 96;3; 3.749036, 3.749036, 3.749036;;, - 97;3; 3.749036, 3.749036, 3.749036;;, - 98;3; 3.749036, 3.749036, 3.749036;;, - 99;3; 3.749036, 3.749036, 3.749036;;, - 100;3; 3.749036, 3.749036, 3.749036;;, - 101;3; 3.749036, 3.749036, 3.749036;;, - 102;3; 3.749036, 3.749036, 3.749036;;, - 103;3; 3.749036, 3.749036, 3.749036;;, - 104;3; 3.749036, 3.749036, 3.749036;;, - 105;3; 3.749036, 3.749036, 3.749036;;, - 106;3; 3.749036, 3.749036, 3.749036;;, - 107;3; 3.749036, 3.749036, 3.749036;;, - 108;3; 3.749036, 3.749036, 3.749036;;, - 109;3; 3.749036, 3.749036, 3.749036;;, - 110;3; 3.749036, 3.749036, 3.749036;;, - 111;3; 3.749036, 3.749036, 3.749036;;, - 112;3; 3.749036, 3.749036, 3.749036;;, - 113;3; 3.749036, 3.749036, 3.749036;;, - 114;3; 3.749036, 3.749036, 3.749036;;, - 115;3; 3.749036, 3.749036, 3.749036;;, - 116;3; 3.749036, 3.749036, 3.749036;;, - 117;3; 3.749036, 3.749036, 3.749036;;, - 118;3; 3.749036, 3.749036, 3.749036;;, - 119;3; 3.749036, 3.749036, 3.749036;;, - 120;3; 3.749036, 3.749036, 3.749036;;, - 121;3; 3.749036, 3.749036, 3.749036;;, - 122;3; 3.749036, 3.749036, 3.749036;;, - 123;3; 3.749036, 3.749036, 3.749036;;, - 124;3; 3.749036, 3.749036, 3.749036;;, - 125;3; 3.749036, 3.749036, 3.749036;;, - 126;3; 3.749036, 3.749036, 3.749036;;, - 127;3; 3.749036, 3.749036, 3.749036;;, - 128;3; 3.749036, 3.749036, 3.749036;;, - 129;3; 3.749036, 3.749036, 3.749036;;, - 130;3; 3.749036, 3.749036, 3.749036;;, - 131;3; 3.749036, 3.749036, 3.749036;;, - 132;3; 3.749036, 3.749036, 3.749036;;, - 133;3; 3.749036, 3.749036, 3.749036;;, - 134;3; 3.749036, 3.749036, 3.749036;;, - 135;3; 3.749036, 3.749036, 3.749036;;; - } - } - Animation { - {Armature_Body} - AnimationKey { //Position - 2; - 136; - 0;3; 5.378092,-1.647068, 2.876912;;, - 1;3; 5.378092,-1.647068, 2.876912;;, - 2;3; 5.378092,-1.647068, 2.876912;;, - 3;3; 5.378092,-1.647068, 2.876912;;, - 4;3; 5.378092,-1.647068, 2.876912;;, - 5;3; 5.378092,-1.647068, 2.876912;;, - 6;3; 5.378092,-1.647068, 2.876912;;, - 7;3; 5.378092,-1.647068, 2.876912;;, - 8;3; 5.378092,-1.647068, 2.876912;;, - 9;3; 5.378092,-1.647068, 2.876912;;, - 10;3; 5.378092,-1.647068, 2.876912;;, - 11;3; 5.378092,-1.647068, 2.876912;;, - 12;3; 5.378092,-1.647068, 2.876912;;, - 13;3; 5.378092,-1.647068, 2.876912;;, - 14;3; 5.378092,-1.647068, 2.876912;;, - 15;3; 5.378092,-1.647068, 2.876912;;, - 16;3; 5.378092,-1.647068, 2.876912;;, - 17;3; 5.378092,-1.647068, 2.876912;;, - 18;3; 5.378092,-1.647068, 2.876912;;, - 19;3; 5.378092,-1.647068, 2.876912;;, - 20;3; 5.378092,-1.647068, 2.876912;;, - 21;3; 5.378092,-1.647068, 2.876912;;, - 22;3; 5.378092,-1.647068, 2.876912;;, - 23;3; 5.378092,-1.647068, 2.876912;;, - 24;3; 5.378092,-1.647068, 2.876912;;, - 25;3; 5.378092,-1.647068, 2.876912;;, - 26;3; 5.378092,-1.647068, 2.876912;;, - 27;3; 5.378092,-1.647068, 2.876912;;, - 28;3; 5.378092,-1.647068, 2.876912;;, - 29;3; 5.378092,-1.647068, 2.876912;;, - 30;3; 5.378092,-1.647068, 2.876912;;, - 31;3; 5.378092,-1.647068, 2.876912;;, - 32;3; 5.378092,-1.647068, 2.876912;;, - 33;3; 5.378092,-1.647068, 2.876912;;, - 34;3; 5.378092,-1.647068, 2.876912;;, - 35;3; 5.378092,-1.647068, 2.876912;;, - 36;3; 5.378092,-1.647068, 2.882412;;, - 37;3; 5.378092,-1.647068, 2.898830;;, - 38;3; 5.378092,-1.647068, 2.924675;;, - 39;3; 5.378092,-1.647068, 2.956158;;, - 40;3; 5.378092,-1.647068, 2.987640;;, - 41;3; 5.378092,-1.647068, 3.013484;;, - 42;3; 5.378092,-1.647068, 3.029901;;, - 43;3; 5.378092,-1.647068, 3.035401;;, - 44;3; 5.378092,-1.647068, 3.031038;;, - 45;3; 5.378092,-1.647068, 3.017950;;, - 46;3; 5.378092,-1.647068, 2.996935;;, - 47;3; 5.378092,-1.647068, 2.970201;;, - 48;3; 5.378092,-1.647068, 2.941358;;, - 49;3; 5.378092,-1.647068, 2.914623;;, - 50;3; 5.378092,-1.647068, 2.893608;;, - 51;3; 5.378092,-1.647068, 2.880520;;, - 52;3; 5.378092,-1.647068, 2.876157;;, - 53;3; 5.378092,-1.647068, 2.886195;;, - 54;3; 5.378092,-1.647068, 2.915410;;, - 55;3; 5.378092,-1.647068, 2.957406;;, - 56;3; 5.378092,-1.647068, 2.999403;;, - 57;3; 5.378092,-1.647068, 3.028617;;, - 58;3; 5.378092,-1.647068, 3.038655;;, - 59;3; 5.378092,-1.647068, 3.031317;;, - 60;3; 5.378092,-1.647068, 3.009612;;, - 61;3; 5.378092,-1.647068, 2.976541;;, - 62;3; 5.378092,-1.647069, 2.939030;;, - 63;3; 5.378092,-1.647069, 2.905957;;, - 64;3; 5.378092,-1.647068, 2.884250;;, - 65;3; 5.378092,-1.647068, 2.876912;;, - 66;3; 5.378092,-1.647068, 2.876912;;, - 67;3; 5.378092,-1.647068, 2.876912;;, - 68;3; 5.378092,-1.647068, 2.876912;;, - 69;3; 5.378092,-1.647068, 2.876912;;, - 70;3; 5.378092,-1.647068, 2.876912;;, - 71;3; 5.378092,-1.647068, 2.876912;;, - 72;3; 5.378092,-1.647068, 2.876912;;, - 73;3; 5.378092,-1.647068, 2.876912;;, - 74;3; 5.378092,-1.647068, 2.876912;;, - 75;3; 5.378092,-1.647068, 2.876912;;, - 76;3; 5.378092,-1.647068, 2.876912;;, - 77;3; 5.378092,-1.647068, 2.876912;;, - 78;3; 5.378092,-1.647068, 2.876912;;, - 79;3; 5.378092,-1.647068, 2.876912;;, - 80;3; 5.378092,-1.647068, 2.876912;;, - 81;3; 5.378092,-1.647068, 2.876912;;, - 82;3; 5.378092,-1.647068, 2.876912;;, - 83;3; 5.378092,-1.647068, 2.876912;;, - 84;3; 5.378092,-1.647068, 2.876912;;, - 85;3; 5.378092,-1.647068, 2.876912;;, - 86;3; 5.378092,-1.647068, 2.876912;;, - 87;3; 5.378092,-1.647068, 2.876912;;, - 88;3; 5.378092,-1.647068, 2.876912;;, - 89;3; 5.378092,-1.647068, 2.876912;;, - 90;3; 5.378092,-1.647068, 2.876912;;, - 91;3; 5.378092,-1.647068, 2.876912;;, - 92;3; 5.378092,-1.647068, 2.876912;;, - 93;3; 5.378092,-1.647068, 2.876912;;, - 94;3; 5.378092,-1.647068, 2.876912;;, - 95;3; 5.378092,-1.647068, 2.876912;;, - 96;3; 5.378092,-1.647068, 2.876912;;, - 97;3; 5.378092,-1.647068, 2.876912;;, - 98;3; 5.378092,-1.647068, 2.876912;;, - 99;3; 5.378092,-1.647068, 2.876912;;, - 100;3; 5.378092,-1.647068, 2.876912;;, - 101;3; 5.378092,-1.647068, 2.876912;;, - 102;3; 5.378092,-1.647068, 2.876912;;, - 103;3; 5.378092,-1.647068, 2.876912;;, - 104;3; 5.378092,-1.647068, 2.876912;;, - 105;3; 5.378092,-1.647068, 2.876912;;, - 106;3; 5.378092,-1.647068, 2.882412;;, - 107;3; 5.378092,-1.647068, 2.898830;;, - 108;3; 5.378092,-1.647068, 2.924675;;, - 109;3; 5.378092,-1.647068, 2.956157;;, - 110;3; 5.378092,-1.647068, 2.987640;;, - 111;3; 5.378092,-1.647068, 3.013484;;, - 112;3; 5.378092,-1.647068, 3.029901;;, - 113;3; 5.378092,-1.647068, 3.035401;;, - 114;3; 5.378092,-1.647068, 3.030918;;, - 115;3; 5.378092,-1.647068, 3.017950;;, - 116;3; 5.378092,-1.647068, 2.999916;;, - 117;3; 5.378092,-1.647068, 2.975391;;, - 118;3; 5.378092,-1.647068, 2.946747;;, - 119;3; 5.378092,-1.647068, 2.918379;;, - 120;3; 5.378092,-1.647068, 2.895288;;, - 121;3; 5.378092,-1.647068, 2.880877;;, - 122;3; 5.378092,-1.647068, 2.876157;;, - 123;3; 5.378092,-1.647068, 2.886195;;, - 124;3; 5.378092,-1.647068, 2.915409;;, - 125;3; 5.378092,-1.647068, 2.957406;;, - 126;3; 5.378092,-1.647068, 2.999403;;, - 127;3; 5.378092,-1.647068, 3.028617;;, - 128;3; 5.378092,-1.647068, 3.038655;;, - 129;3; 5.378092,-1.647068, 3.031318;;, - 130;3; 5.378092,-1.647069, 3.009614;;, - 131;3; 5.378092,-1.647069, 2.976547;;, - 132;3; 5.378092,-1.647069, 2.939038;;, - 133;3; 5.378092,-1.647069, 2.905964;;, - 134;3; 5.378092,-1.647069, 2.884252;;, - 135;3; 5.378092,-1.647068, 2.876912;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 1;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 2;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 3;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 4;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 5;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 6;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 7;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 8;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 9;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 10;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 11;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 12;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 13;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 14;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 15;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 16;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 17;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 18;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 19;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 20;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 21;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 22;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 23;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 24;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 25;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 26;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 27;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 28;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 29;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 30;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 31;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 32;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 33;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 34;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 35;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 36;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 37;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 38;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 39;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 40;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 41;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 42;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 43;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 44;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 45;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 46;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 47;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 48;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 49;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 50;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 51;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 52;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 53;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 54;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 55;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 56;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 57;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 58;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 59;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 60;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 61;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 62;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 63;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 64;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 65;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 66;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 67;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 68;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 69;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 70;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 71;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 72;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 73;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 74;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 75;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 76;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 77;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 78;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 79;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 80;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 81;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 82;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 83;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 84;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 85;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 86;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 87;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 88;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 89;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 90;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 91;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 92;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 93;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 94;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 95;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 96;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 97;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 98;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 99;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 100;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 101;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 102;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 103;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 104;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 105;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 106;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 107;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 108;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 109;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 110;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 111;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 112;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 113;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 114;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 115;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 116;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 117;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 118;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 119;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 120;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 121;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 122;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 123;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 124;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 125;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 126;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 127;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 128;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 129;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 130;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 131;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 132;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 133;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 134;4; -0.999132, 0.041662, 0.000000, 0.000000;;, - 135;4; -0.999132, 0.041662, 0.000000, 0.000000;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga3} - AnimationKey { //Position - 2; - 136; - 0;3; 0.824256,-0.011078,-1.204985;;, - 1;3; 0.824256,-0.011078,-1.204985;;, - 2;3; 0.824256,-0.011078,-1.204985;;, - 3;3; 0.824256,-0.011078,-1.204985;;, - 4;3; 0.824256,-0.011078,-1.204985;;, - 5;3; 0.824256,-0.011078,-1.204985;;, - 6;3; 0.824256,-0.011078,-1.204985;;, - 7;3; 0.824256,-0.011078,-1.204985;;, - 8;3; 0.824256,-0.011078,-1.204985;;, - 9;3; 0.824256,-0.011078,-1.204985;;, - 10;3; 0.824256,-0.011078,-1.204985;;, - 11;3; 0.824256,-0.011078,-1.204985;;, - 12;3; 0.824256,-0.011078,-1.204985;;, - 13;3; 0.824256,-0.011078,-1.204985;;, - 14;3; 0.824256,-0.011078,-1.204985;;, - 15;3; 0.824256,-0.011078,-1.204985;;, - 16;3; 0.824256,-0.011078,-1.204985;;, - 17;3; 0.824256,-0.011078,-1.204985;;, - 18;3; 0.824256,-0.011078,-1.204985;;, - 19;3; 0.824256,-0.011078,-1.204985;;, - 20;3; 0.824256,-0.011078,-1.204985;;, - 21;3; 0.824256,-0.011078,-1.204985;;, - 22;3; 0.824256,-0.011078,-1.204985;;, - 23;3; 0.824256,-0.011078,-1.204985;;, - 24;3; 0.824256,-0.011078,-1.204985;;, - 25;3; 0.824256,-0.011078,-1.204985;;, - 26;3; 0.824256,-0.011078,-1.204985;;, - 27;3; 0.824256,-0.011078,-1.204985;;, - 28;3; 0.824256,-0.011078,-1.204985;;, - 29;3; 0.824256,-0.011078,-1.204985;;, - 30;3; 0.824256,-0.011078,-1.204985;;, - 31;3; 0.824256,-0.011078,-1.204985;;, - 32;3; 0.824256,-0.011078,-1.204985;;, - 33;3; 0.824256,-0.011078,-1.204985;;, - 34;3; 0.824256,-0.011078,-1.204985;;, - 35;3; 0.824256,-0.011078,-1.204985;;, - 36;3; 0.824256,-0.011078,-1.204985;;, - 37;3; 0.824256,-0.011078,-1.204985;;, - 38;3; 0.824256,-0.011078,-1.204985;;, - 39;3; 0.824256,-0.011078,-1.204985;;, - 40;3; 0.824256,-0.011078,-1.204985;;, - 41;3; 0.824256,-0.011078,-1.204985;;, - 42;3; 0.824256,-0.011078,-1.204985;;, - 43;3; 0.824256,-0.011078,-1.204985;;, - 44;3; 0.824256,-0.011078,-1.204985;;, - 45;3; 0.824256,-0.011078,-1.204985;;, - 46;3; 0.824256,-0.011078,-1.204985;;, - 47;3; 0.824256,-0.011078,-1.204985;;, - 48;3; 0.824256,-0.011078,-1.204985;;, - 49;3; 0.824256,-0.011078,-1.204985;;, - 50;3; 0.824256,-0.011078,-1.204985;;, - 51;3; 0.824256,-0.011078,-1.204985;;, - 52;3; 0.824256,-0.011078,-1.204985;;, - 53;3; 0.824256,-0.011078,-1.204985;;, - 54;3; 0.824256,-0.011078,-1.204985;;, - 55;3; 0.824256,-0.011078,-1.204985;;, - 56;3; 0.824256,-0.011078,-1.204985;;, - 57;3; 0.824256,-0.011078,-1.204985;;, - 58;3; 0.824256,-0.011078,-1.204985;;, - 59;3; 0.824256,-0.011078,-1.204985;;, - 60;3; 0.824256,-0.011078,-1.204985;;, - 61;3; 0.824256,-0.011078,-1.204985;;, - 62;3; 0.824256,-0.011078,-1.204985;;, - 63;3; 0.824256,-0.011078,-1.204985;;, - 64;3; 0.824256,-0.011078,-1.204985;;, - 65;3; 0.824256,-0.011078,-1.204985;;, - 66;3; 0.824256,-0.011078,-1.204985;;, - 67;3; 0.824256,-0.011078,-1.204985;;, - 68;3; 0.824256,-0.011078,-1.204985;;, - 69;3; 0.824256,-0.011078,-1.204985;;, - 70;3; 0.824256,-0.011078,-1.204985;;, - 71;3; 0.824256,-0.011078,-1.204985;;, - 72;3; 0.824256,-0.011078,-1.204985;;, - 73;3; 0.824256,-0.011078,-1.204985;;, - 74;3; 0.824256,-0.011078,-1.204985;;, - 75;3; 0.824256,-0.011078,-1.204985;;, - 76;3; 0.824256,-0.011078,-1.204985;;, - 77;3; 0.824256,-0.011078,-1.204985;;, - 78;3; 0.824256,-0.011078,-1.204985;;, - 79;3; 0.824256,-0.011078,-1.204985;;, - 80;3; 0.824256,-0.011078,-1.204985;;, - 81;3; 0.824256,-0.011078,-1.204985;;, - 82;3; 0.824256,-0.011078,-1.204985;;, - 83;3; 0.824256,-0.011078,-1.204985;;, - 84;3; 0.824256,-0.011078,-1.204985;;, - 85;3; 0.824256,-0.011078,-1.204985;;, - 86;3; 0.824256,-0.011078,-1.204985;;, - 87;3; 0.824256,-0.011078,-1.204985;;, - 88;3; 0.824256,-0.011078,-1.204985;;, - 89;3; 0.824256,-0.011078,-1.204985;;, - 90;3; 0.824256,-0.011078,-1.204985;;, - 91;3; 0.824256,-0.011078,-1.204985;;, - 92;3; 0.824256,-0.011078,-1.204985;;, - 93;3; 0.824256,-0.011078,-1.204985;;, - 94;3; 0.824256,-0.011078,-1.204985;;, - 95;3; 0.824256,-0.011078,-1.204985;;, - 96;3; 0.824256,-0.011078,-1.204985;;, - 97;3; 0.824256,-0.011078,-1.204985;;, - 98;3; 0.824256,-0.011078,-1.204985;;, - 99;3; 0.824256,-0.011078,-1.204985;;, - 100;3; 0.824256,-0.011078,-1.204985;;, - 101;3; 0.824256,-0.011078,-1.204985;;, - 102;3; 0.824256,-0.011078,-1.204985;;, - 103;3; 0.824256,-0.011078,-1.204985;;, - 104;3; 0.824256,-0.011078,-1.204985;;, - 105;3; 0.824256,-0.011078,-1.204985;;, - 106;3; 0.824256,-0.011078,-1.204985;;, - 107;3; 0.824256,-0.011078,-1.204985;;, - 108;3; 0.824256,-0.011078,-1.204985;;, - 109;3; 0.824256,-0.011078,-1.204985;;, - 110;3; 0.824256,-0.011078,-1.204985;;, - 111;3; 0.824256,-0.011078,-1.204985;;, - 112;3; 0.824256,-0.011078,-1.204985;;, - 113;3; 0.824256,-0.011078,-1.204985;;, - 114;3; 0.824256,-0.011078,-1.204985;;, - 115;3; 0.824256,-0.011078,-1.204985;;, - 116;3; 0.824256,-0.011078,-1.204985;;, - 117;3; 0.824256,-0.011078,-1.204985;;, - 118;3; 0.824256,-0.011078,-1.204985;;, - 119;3; 0.824256,-0.011078,-1.204985;;, - 120;3; 0.824256,-0.011078,-1.204985;;, - 121;3; 0.824256,-0.011078,-1.204985;;, - 122;3; 0.824256,-0.011078,-1.204985;;, - 123;3; 0.824256,-0.011078,-1.204985;;, - 124;3; 0.824256,-0.011078,-1.204985;;, - 125;3; 0.824256,-0.011078,-1.204985;;, - 126;3; 0.824256,-0.011078,-1.204985;;, - 127;3; 0.824256,-0.011078,-1.204985;;, - 128;3; 0.824256,-0.011078,-1.204985;;, - 129;3; 0.824256,-0.011078,-1.204985;;, - 130;3; 0.824256,-0.011078,-1.204985;;, - 131;3; 0.824256,-0.011078,-1.204985;;, - 132;3; 0.824256,-0.011078,-1.204985;;, - 133;3; 0.824256,-0.011078,-1.204985;;, - 134;3; 0.824256,-0.011078,-1.204985;;, - 135;3; 0.824256,-0.011078,-1.204985;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.471419,-0.525048, 0.471419,-0.525048;;, - 37;4; -0.449585,-0.538928, 0.449585,-0.538928;;, - 38;4; -0.415216,-0.560776, 0.415216,-0.560775;;, - 39;4; -0.373354,-0.587385, 0.373354,-0.587385;;, - 40;4; -0.331496,-0.613991, 0.331496,-0.613991;;, - 41;4; -0.297134,-0.635832, 0.297134,-0.635832;;, - 42;4; -0.275307,-0.649706, 0.275307,-0.649706;;, - 43;4; -0.267994,-0.654354, 0.267994,-0.654354;;, - 44;4; -0.271164,-0.651497, 0.271164,-0.651497;;, - 45;4; -0.280754,-0.642868, 0.280754,-0.642868;;, - 46;4; -0.296731,-0.628532, 0.296731,-0.628532;;, - 47;4; -0.318782,-0.608809, 0.318782,-0.608809;;, - 48;4; -0.346239,-0.584351, 0.346239,-0.584351;;, - 49;4; -0.378024,-0.556181, 0.378024,-0.556181;;, - 50;4; -0.412665,-0.525678, 0.412665,-0.525678;;, - 51;4; -0.448397,-0.494478, 0.448398,-0.494477;;, - 52;4; -0.483345,-0.464307, 0.483345,-0.464307;;, - 53;4; -0.515728,-0.436788, 0.515728,-0.436788;;, - 54;4; -0.544052,-0.413272, 0.544052,-0.413272;;, - 55;4; -0.567204,-0.394746, 0.567204,-0.394746;;, - 56;4; -0.584482,-0.381824, 0.584482,-0.381824;;, - 57;4; -0.595539,-0.374790, 0.595539,-0.374790;;, - 58;4; -0.600308,-0.373672, 0.600308,-0.373671;;, - 59;4; -0.596120,-0.381769, 0.596120,-0.381769;;, - 60;4; -0.580435,-0.402142, 0.580435,-0.402142;;, - 61;4; -0.555540,-0.432097, 0.555540,-0.432097;;, - 62;4; -0.526829,-0.465563, 0.526829,-0.465563;;, - 63;4; -0.501294,-0.494832, 0.501294,-0.494832;;, - 64;4; -0.484447,-0.513952, 0.484447,-0.513952;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.463301,-0.526860, 0.463301,-0.526859;;, - 107;4; -0.417252,-0.546134, 0.417252,-0.546134;;, - 108;4; -0.344789,-0.576451, 0.344789,-0.576451;;, - 109;4; -0.256546,-0.613358, 0.256546,-0.613358;;, - 110;4; -0.168312,-0.650257, 0.168312,-0.650257;;, - 111;4; -0.095870,-0.680556, 0.095870,-0.680556;;, - 112;4; -0.049840,-0.699813, 0.049840,-0.699813;;, - 113;4; -0.034414,-0.706269, 0.034414,-0.706269;;, - 114;4; -0.037872,-0.703537, 0.037872,-0.703537;;, - 115;4; -0.057302,-0.688805, 0.057302,-0.688805;;, - 116;4; -0.091541,-0.663016, 0.091541,-0.663016;;, - 117;4; -0.137489,-0.628455, 0.137490,-0.628455;;, - 118;4; -0.191915,-0.587762, 0.191915,-0.587762;;, - 119;4; -0.251696,-0.543478, 0.251696,-0.543478;;, - 120;4; -0.313906,-0.497971, 0.313906,-0.497971;;, - 121;4; -0.375876,-0.453394, 0.375877,-0.453394;;, - 122;4; -0.435236,-0.411649, 0.435236,-0.411649;;, - 123;4; -0.489928,-0.374380, 0.489928,-0.374380;;, - 124;4; -0.538212,-0.342968, 0.538212,-0.342968;;, - 125;4; -0.578647,-0.318547, 0.578647,-0.318547;;, - 126;4; -0.610074,-0.302025, 0.610074,-0.302024;;, - 127;4; -0.631585,-0.294102, 0.631585,-0.294102;;, - 128;4; -0.642492,-0.295303, 0.642492,-0.295303;;, - 129;4; -0.639410,-0.310234, 0.639410,-0.310233;;, - 130;4; -0.619509,-0.342661, 0.619509,-0.342661;;, - 131;4; -0.585929,-0.388513, 0.585929,-0.388513;;, - 132;4; -0.546281,-0.438858, 0.546281,-0.438858;;, - 133;4; -0.510571,-0.482497, 0.510571,-0.482497;;, - 134;4; -0.486826,-0.510862, 0.486826,-0.510862;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga1} - AnimationKey { //Position - 2; - 136; - 0;3; 0.784448, 3.021216,-1.494725;;, - 1;3; 0.784448, 3.021216,-1.494725;;, - 2;3; 0.784448, 3.021216,-1.494725;;, - 3;3; 0.784448, 3.021216,-1.494725;;, - 4;3; 0.784448, 3.021216,-1.494725;;, - 5;3; 0.784448, 3.021216,-1.494725;;, - 6;3; 0.784448, 3.021216,-1.494725;;, - 7;3; 0.784448, 3.021216,-1.494725;;, - 8;3; 0.784448, 3.021216,-1.494725;;, - 9;3; 0.784448, 3.021216,-1.494725;;, - 10;3; 0.784448, 3.021216,-1.494725;;, - 11;3; 0.784448, 3.021216,-1.494725;;, - 12;3; 0.784448, 3.021216,-1.494725;;, - 13;3; 0.784448, 3.021216,-1.494725;;, - 14;3; 0.784448, 3.021216,-1.494725;;, - 15;3; 0.784448, 3.021216,-1.494725;;, - 16;3; 0.784448, 3.021216,-1.494725;;, - 17;3; 0.784448, 3.021216,-1.494725;;, - 18;3; 0.784448, 3.021216,-1.494725;;, - 19;3; 0.784448, 3.021216,-1.494725;;, - 20;3; 0.784448, 3.021216,-1.494725;;, - 21;3; 0.784448, 3.021216,-1.494725;;, - 22;3; 0.784448, 3.021216,-1.494725;;, - 23;3; 0.784448, 3.021216,-1.494725;;, - 24;3; 0.784448, 3.021216,-1.494725;;, - 25;3; 0.784448, 3.021216,-1.494725;;, - 26;3; 0.784448, 3.021216,-1.494725;;, - 27;3; 0.784448, 3.021216,-1.494725;;, - 28;3; 0.784448, 3.021216,-1.494725;;, - 29;3; 0.784448, 3.021216,-1.494725;;, - 30;3; 0.784448, 3.021216,-1.494725;;, - 31;3; 0.784448, 3.021216,-1.494725;;, - 32;3; 0.784448, 3.021216,-1.494725;;, - 33;3; 0.784448, 3.021216,-1.494725;;, - 34;3; 0.784448, 3.021216,-1.494725;;, - 35;3; 0.784448, 3.021216,-1.494725;;, - 36;3; 0.784448, 3.021216,-1.494725;;, - 37;3; 0.784448, 3.021216,-1.494725;;, - 38;3; 0.784448, 3.021216,-1.494725;;, - 39;3; 0.784448, 3.021216,-1.494725;;, - 40;3; 0.784448, 3.021216,-1.494725;;, - 41;3; 0.784448, 3.021216,-1.494725;;, - 42;3; 0.784448, 3.021216,-1.494725;;, - 43;3; 0.784448, 3.021216,-1.494725;;, - 44;3; 0.784448, 3.021216,-1.494725;;, - 45;3; 0.784448, 3.021216,-1.494725;;, - 46;3; 0.784448, 3.021216,-1.494725;;, - 47;3; 0.784448, 3.021216,-1.494725;;, - 48;3; 0.784448, 3.021216,-1.494725;;, - 49;3; 0.784448, 3.021216,-1.494725;;, - 50;3; 0.784448, 3.021216,-1.494725;;, - 51;3; 0.784448, 3.021216,-1.494725;;, - 52;3; 0.784448, 3.021216,-1.494725;;, - 53;3; 0.784448, 3.021216,-1.494725;;, - 54;3; 0.784448, 3.021216,-1.494725;;, - 55;3; 0.784448, 3.021216,-1.494725;;, - 56;3; 0.784448, 3.021216,-1.494725;;, - 57;3; 0.784448, 3.021216,-1.494725;;, - 58;3; 0.784448, 3.021216,-1.494725;;, - 59;3; 0.784448, 3.021216,-1.494725;;, - 60;3; 0.784448, 3.021216,-1.494725;;, - 61;3; 0.784448, 3.021216,-1.494725;;, - 62;3; 0.784448, 3.021216,-1.494725;;, - 63;3; 0.784448, 3.021216,-1.494725;;, - 64;3; 0.784448, 3.021216,-1.494725;;, - 65;3; 0.784448, 3.021216,-1.494725;;, - 66;3; 0.784448, 3.021216,-1.494725;;, - 67;3; 0.784448, 3.021216,-1.494725;;, - 68;3; 0.784448, 3.021216,-1.494725;;, - 69;3; 0.784448, 3.021216,-1.494725;;, - 70;3; 0.784448, 3.021216,-1.494725;;, - 71;3; 0.784448, 3.021216,-1.494725;;, - 72;3; 0.784448, 3.021216,-1.494725;;, - 73;3; 0.784448, 3.021216,-1.494725;;, - 74;3; 0.784448, 3.021216,-1.494725;;, - 75;3; 0.784448, 3.021216,-1.494725;;, - 76;3; 0.784448, 3.021216,-1.494725;;, - 77;3; 0.784448, 3.021216,-1.494725;;, - 78;3; 0.784448, 3.021216,-1.494725;;, - 79;3; 0.784448, 3.021216,-1.494725;;, - 80;3; 0.784448, 3.021216,-1.494725;;, - 81;3; 0.784448, 3.021216,-1.494725;;, - 82;3; 0.784448, 3.021216,-1.494725;;, - 83;3; 0.784448, 3.021216,-1.494725;;, - 84;3; 0.784448, 3.021216,-1.494725;;, - 85;3; 0.784448, 3.021216,-1.494725;;, - 86;3; 0.784448, 3.021216,-1.494725;;, - 87;3; 0.784448, 3.021216,-1.494725;;, - 88;3; 0.784448, 3.021216,-1.494725;;, - 89;3; 0.784448, 3.021216,-1.494725;;, - 90;3; 0.784448, 3.021216,-1.494725;;, - 91;3; 0.784448, 3.021216,-1.494725;;, - 92;3; 0.784448, 3.021216,-1.494725;;, - 93;3; 0.784448, 3.021216,-1.494725;;, - 94;3; 0.784448, 3.021216,-1.494725;;, - 95;3; 0.784448, 3.021216,-1.494725;;, - 96;3; 0.784448, 3.021216,-1.494725;;, - 97;3; 0.784448, 3.021216,-1.494725;;, - 98;3; 0.784448, 3.021216,-1.494725;;, - 99;3; 0.784448, 3.021216,-1.494725;;, - 100;3; 0.784448, 3.021216,-1.494725;;, - 101;3; 0.784448, 3.021216,-1.494725;;, - 102;3; 0.784448, 3.021216,-1.494725;;, - 103;3; 0.784448, 3.021216,-1.494725;;, - 104;3; 0.784448, 3.021216,-1.494725;;, - 105;3; 0.784448, 3.021216,-1.494725;;, - 106;3; 0.784448, 3.021216,-1.494725;;, - 107;3; 0.784448, 3.021216,-1.494725;;, - 108;3; 0.784448, 3.021216,-1.494725;;, - 109;3; 0.784448, 3.021216,-1.494725;;, - 110;3; 0.784448, 3.021216,-1.494725;;, - 111;3; 0.784448, 3.021216,-1.494725;;, - 112;3; 0.784448, 3.021216,-1.494725;;, - 113;3; 0.784448, 3.021216,-1.494725;;, - 114;3; 0.784448, 3.021216,-1.494725;;, - 115;3; 0.784448, 3.021216,-1.494725;;, - 116;3; 0.784448, 3.021216,-1.494725;;, - 117;3; 0.784448, 3.021216,-1.494725;;, - 118;3; 0.784448, 3.021216,-1.494725;;, - 119;3; 0.784448, 3.021216,-1.494725;;, - 120;3; 0.784448, 3.021216,-1.494725;;, - 121;3; 0.784448, 3.021216,-1.494725;;, - 122;3; 0.784448, 3.021216,-1.494725;;, - 123;3; 0.784448, 3.021216,-1.494725;;, - 124;3; 0.784448, 3.021216,-1.494725;;, - 125;3; 0.784448, 3.021216,-1.494725;;, - 126;3; 0.784448, 3.021216,-1.494725;;, - 127;3; 0.784448, 3.021216,-1.494725;;, - 128;3; 0.784448, 3.021216,-1.494725;;, - 129;3; 0.784448, 3.021216,-1.494725;;, - 130;3; 0.784448, 3.021216,-1.494725;;, - 131;3; 0.784448, 3.021216,-1.494725;;, - 132;3; 0.784448, 3.021216,-1.494725;;, - 133;3; 0.784448, 3.021216,-1.494725;;, - 134;3; 0.784448, 3.021216,-1.494725;;, - 135;3; 0.784448, 3.021216,-1.494725;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.483955,-0.513539, 0.483955,-0.513539;;, - 37;4; -0.499536,-0.493071, 0.499536,-0.493071;;, - 38;4; -0.524060,-0.460853, 0.524060,-0.460853;;, - 39;4; -0.553930,-0.421610, 0.553930,-0.421610;;, - 40;4; -0.583796,-0.382370, 0.583796,-0.382370;;, - 41;4; -0.608313,-0.350158, 0.608313,-0.350158;;, - 42;4; -0.623887,-0.329697, 0.623887,-0.329697;;, - 43;4; -0.629105,-0.322842, 0.629105,-0.322841;;, - 44;4; -0.626395,-0.325558, 0.626395,-0.325558;;, - 45;4; -0.618208,-0.333776, 0.618207,-0.333776;;, - 46;4; -0.604601,-0.347469, 0.604601,-0.347469;;, - 47;4; -0.585875,-0.366370, 0.585875,-0.366370;;, - 48;4; -0.562643,-0.389905, 0.562643,-0.389905;;, - 49;4; -0.535871,-0.417154, 0.535871,-0.417154;;, - 50;4; -0.506861,-0.446856, 0.506861,-0.446856;;, - 51;4; -0.477161,-0.477500, 0.477161,-0.477500;;, - 52;4; -0.448405,-0.507479, 0.448405,-0.507479;;, - 53;4; -0.422131,-0.535269, 0.422131,-0.535268;;, - 54;4; -0.399618,-0.559587, 0.399618,-0.559587;;, - 55;4; -0.381808,-0.579482, 0.381808,-0.579482;;, - 56;4; -0.369282,-0.594349, 0.369282,-0.594349;;, - 57;4; -0.362313,-0.603892, 0.362313,-0.603892;;, - 58;4; -0.360931,-0.608053, 0.360931,-0.608053;;, - 59;4; -0.367377,-0.605275, 0.367377,-0.605275;;, - 60;4; -0.383708,-0.594080, 0.383708,-0.594080;;, - 61;4; -0.407762,-0.576122, 0.407762,-0.576122;;, - 62;4; -0.434653,-0.555326, 0.434653,-0.555326;;, - 63;4; -0.458181,-0.536793, 0.458181,-0.536793;;, - 64;4; -0.473553,-0.524551, 0.473553,-0.524551;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.486441,-0.505692, 0.486441,-0.505691;;, - 107;4; -0.509428,-0.461814, 0.509428,-0.461814;;, - 108;4; -0.545587,-0.392767, 0.545587,-0.392767;;, - 109;4; -0.589608,-0.308682, 0.589608,-0.308682;;, - 110;4; -0.633619,-0.224607, 0.633619,-0.224607;;, - 111;4; -0.669755,-0.155581, 0.669755,-0.155581;;, - 112;4; -0.692721,-0.111723, 0.692721,-0.111723;;, - 113;4; -0.700419,-0.097025, 0.700419,-0.097025;;, - 114;4; -0.696763,-0.100406, 0.696763,-0.100406;;, - 115;4; -0.676592,-0.119091, 0.676592,-0.119091;;, - 116;4; -0.641210,-0.152012, 0.641210,-0.152012;;, - 117;4; -0.593929,-0.196363, 0.593929,-0.196363;;, - 118;4; -0.538312,-0.249035, 0.538312,-0.249035;;, - 119;4; -0.477783,-0.307026, 0.477783,-0.307026;;, - 120;4; -0.415539,-0.367521, 0.415539,-0.367521;;, - 121;4; -0.354482,-0.427953, 0.354482,-0.427953;;, - 122;4; -0.297180,-0.486038, 0.297180,-0.486038;;, - 123;4; -0.245847,-0.539794, 0.245847,-0.539794;;, - 124;4; -0.202350,-0.587542, 0.202350,-0.587542;;, - 125;4; -0.168222,-0.627892, 0.168222,-0.627892;;, - 126;4; -0.144686,-0.659719, 0.144686,-0.659719;;, - 127;4; -0.132693,-0.682144, 0.132693,-0.682144;;, - 128;4; -0.132952,-0.694495, 0.132953,-0.694495;;, - 129;4; -0.153888,-0.692321, 0.153888,-0.692321;;, - 130;4; -0.202733,-0.671710, 0.202733,-0.671710;;, - 131;4; -0.273188,-0.636020, 0.273188,-0.636020;;, - 132;4; -0.351280,-0.593466, 0.351280,-0.593466;;, - 133;4; -0.419352,-0.554921, 0.419352,-0.554921;;, - 134;4; -0.463768,-0.529189, 0.463768,-0.529189;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga4} - AnimationKey { //Position - 2; - 136; - 0;3; -0.923299,-0.011159,-1.205961;;, - 1;3; -0.923299,-0.011159,-1.205961;;, - 2;3; -0.923299,-0.011159,-1.205961;;, - 3;3; -0.923299,-0.011159,-1.205961;;, - 4;3; -0.923299,-0.011159,-1.205961;;, - 5;3; -0.923299,-0.011159,-1.205961;;, - 6;3; -0.923299,-0.011159,-1.205961;;, - 7;3; -0.923299,-0.011159,-1.205961;;, - 8;3; -0.923299,-0.011159,-1.205961;;, - 9;3; -0.923299,-0.011159,-1.205961;;, - 10;3; -0.923299,-0.011159,-1.205961;;, - 11;3; -0.923299,-0.011159,-1.205961;;, - 12;3; -0.923299,-0.011159,-1.205961;;, - 13;3; -0.923299,-0.011159,-1.205961;;, - 14;3; -0.923299,-0.011159,-1.205961;;, - 15;3; -0.923299,-0.011159,-1.205961;;, - 16;3; -0.923299,-0.011159,-1.205961;;, - 17;3; -0.923299,-0.011159,-1.205961;;, - 18;3; -0.923299,-0.011159,-1.205961;;, - 19;3; -0.923299,-0.011159,-1.205961;;, - 20;3; -0.923299,-0.011159,-1.205961;;, - 21;3; -0.923299,-0.011159,-1.205961;;, - 22;3; -0.923299,-0.011159,-1.205961;;, - 23;3; -0.923299,-0.011159,-1.205961;;, - 24;3; -0.923299,-0.011159,-1.205961;;, - 25;3; -0.923299,-0.011159,-1.205961;;, - 26;3; -0.923299,-0.011159,-1.205961;;, - 27;3; -0.923299,-0.011159,-1.205961;;, - 28;3; -0.923299,-0.011159,-1.205961;;, - 29;3; -0.923299,-0.011159,-1.205961;;, - 30;3; -0.923299,-0.011159,-1.205961;;, - 31;3; -0.923299,-0.011159,-1.205961;;, - 32;3; -0.923299,-0.011159,-1.205961;;, - 33;3; -0.923299,-0.011159,-1.205961;;, - 34;3; -0.923299,-0.011159,-1.205961;;, - 35;3; -0.923299,-0.011159,-1.205961;;, - 36;3; -0.923299,-0.011159,-1.205961;;, - 37;3; -0.923299,-0.011159,-1.205961;;, - 38;3; -0.923299,-0.011159,-1.205961;;, - 39;3; -0.923299,-0.011159,-1.205961;;, - 40;3; -0.923299,-0.011159,-1.205961;;, - 41;3; -0.923299,-0.011159,-1.205961;;, - 42;3; -0.923299,-0.011159,-1.205961;;, - 43;3; -0.923299,-0.011159,-1.205961;;, - 44;3; -0.923299,-0.011159,-1.205961;;, - 45;3; -0.923299,-0.011159,-1.205961;;, - 46;3; -0.923299,-0.011159,-1.205961;;, - 47;3; -0.923299,-0.011159,-1.205961;;, - 48;3; -0.923299,-0.011159,-1.205961;;, - 49;3; -0.923299,-0.011159,-1.205961;;, - 50;3; -0.923299,-0.011159,-1.205961;;, - 51;3; -0.923299,-0.011159,-1.205961;;, - 52;3; -0.923299,-0.011159,-1.205961;;, - 53;3; -0.923299,-0.011159,-1.205961;;, - 54;3; -0.923299,-0.011159,-1.205961;;, - 55;3; -0.923299,-0.011159,-1.205961;;, - 56;3; -0.923299,-0.011159,-1.205961;;, - 57;3; -0.923299,-0.011159,-1.205961;;, - 58;3; -0.923299,-0.011159,-1.205961;;, - 59;3; -0.923299,-0.011159,-1.205961;;, - 60;3; -0.923299,-0.011159,-1.205961;;, - 61;3; -0.923299,-0.011159,-1.205961;;, - 62;3; -0.923299,-0.011159,-1.205961;;, - 63;3; -0.923299,-0.011159,-1.205961;;, - 64;3; -0.923299,-0.011159,-1.205961;;, - 65;3; -0.923299,-0.011159,-1.205961;;, - 66;3; -0.923299,-0.011159,-1.205961;;, - 67;3; -0.923299,-0.011159,-1.205961;;, - 68;3; -0.923299,-0.011159,-1.205961;;, - 69;3; -0.923299,-0.011159,-1.205961;;, - 70;3; -0.923299,-0.011159,-1.205961;;, - 71;3; -0.923299,-0.011159,-1.205961;;, - 72;3; -0.923299,-0.011159,-1.205961;;, - 73;3; -0.923299,-0.011159,-1.205961;;, - 74;3; -0.923299,-0.011159,-1.205961;;, - 75;3; -0.923299,-0.011159,-1.205961;;, - 76;3; -0.923299,-0.011159,-1.205961;;, - 77;3; -0.923299,-0.011159,-1.205961;;, - 78;3; -0.923299,-0.011159,-1.205961;;, - 79;3; -0.923299,-0.011159,-1.205961;;, - 80;3; -0.923299,-0.011159,-1.205961;;, - 81;3; -0.923299,-0.011159,-1.205961;;, - 82;3; -0.923299,-0.011159,-1.205961;;, - 83;3; -0.923299,-0.011159,-1.205961;;, - 84;3; -0.923299,-0.011159,-1.205961;;, - 85;3; -0.923299,-0.011159,-1.205961;;, - 86;3; -0.923299,-0.011159,-1.205961;;, - 87;3; -0.923299,-0.011159,-1.205961;;, - 88;3; -0.923299,-0.011159,-1.205961;;, - 89;3; -0.923299,-0.011159,-1.205961;;, - 90;3; -0.923299,-0.011159,-1.205961;;, - 91;3; -0.923299,-0.011159,-1.205961;;, - 92;3; -0.923299,-0.011159,-1.205961;;, - 93;3; -0.923299,-0.011159,-1.205961;;, - 94;3; -0.923299,-0.011159,-1.205961;;, - 95;3; -0.923299,-0.011159,-1.205961;;, - 96;3; -0.923299,-0.011159,-1.205961;;, - 97;3; -0.923299,-0.011159,-1.205961;;, - 98;3; -0.923299,-0.011159,-1.205961;;, - 99;3; -0.923299,-0.011159,-1.205961;;, - 100;3; -0.923299,-0.011159,-1.205961;;, - 101;3; -0.923299,-0.011159,-1.205961;;, - 102;3; -0.923299,-0.011159,-1.205961;;, - 103;3; -0.923299,-0.011159,-1.205961;;, - 104;3; -0.923299,-0.011159,-1.205961;;, - 105;3; -0.923299,-0.011159,-1.205961;;, - 106;3; -0.923299,-0.011159,-1.205961;;, - 107;3; -0.923299,-0.011159,-1.205961;;, - 108;3; -0.923299,-0.011159,-1.205961;;, - 109;3; -0.923299,-0.011159,-1.205961;;, - 110;3; -0.923299,-0.011159,-1.205961;;, - 111;3; -0.923299,-0.011159,-1.205961;;, - 112;3; -0.923299,-0.011159,-1.205961;;, - 113;3; -0.923299,-0.011159,-1.205961;;, - 114;3; -0.923299,-0.011159,-1.205961;;, - 115;3; -0.923299,-0.011159,-1.205961;;, - 116;3; -0.923299,-0.011159,-1.205961;;, - 117;3; -0.923299,-0.011159,-1.205961;;, - 118;3; -0.923299,-0.011159,-1.205961;;, - 119;3; -0.923299,-0.011159,-1.205961;;, - 120;3; -0.923299,-0.011159,-1.205961;;, - 121;3; -0.923299,-0.011159,-1.205961;;, - 122;3; -0.923299,-0.011159,-1.205961;;, - 123;3; -0.923299,-0.011159,-1.205961;;, - 124;3; -0.923299,-0.011159,-1.205961;;, - 125;3; -0.923299,-0.011159,-1.205961;;, - 126;3; -0.923299,-0.011159,-1.205961;;, - 127;3; -0.923299,-0.011159,-1.205961;;, - 128;3; -0.923299,-0.011159,-1.205961;;, - 129;3; -0.923299,-0.011159,-1.205961;;, - 130;3; -0.923299,-0.011159,-1.205961;;, - 131;3; -0.923299,-0.011159,-1.205961;;, - 132;3; -0.923299,-0.011159,-1.205961;;, - 133;3; -0.923299,-0.011159,-1.205961;;, - 134;3; -0.923299,-0.011159,-1.205961;;, - 135;3; -0.923299,-0.011159,-1.205961;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.482184,-0.516822, 0.482185,-0.516822;;, - 37;4; -0.492450,-0.506118, 0.492450,-0.506118;;, - 38;4; -0.508534,-0.489186, 0.508534,-0.489186;;, - 39;4; -0.527984,-0.468405, 0.527984,-0.468405;;, - 40;4; -0.547196,-0.447367, 0.547196,-0.447367;;, - 41;4; -0.562604,-0.429702, 0.562604,-0.429702;;, - 42;4; -0.571844,-0.417885, 0.571844,-0.417885;;, - 43;4; -0.574016,-0.412923, 0.574016,-0.412923;;, - 44;4; -0.569663,-0.413978, 0.569663,-0.413978;;, - 45;4; -0.559287,-0.420193, 0.559287,-0.420193;;, - 46;4; -0.542949,-0.431542, 0.542949,-0.431542;;, - 47;4; -0.520977,-0.447777, 0.520977,-0.447776;;, - 48;4; -0.494044,-0.468360, 0.494044,-0.468360;;, - 49;4; -0.463210,-0.492430, 0.463210,-0.492430;;, - 50;4; -0.429904,-0.518806, 0.429904,-0.518806;;, - 51;4; -0.395827,-0.546074, 0.395827,-0.546074;;, - 52;4; -0.362775,-0.572726, 0.362775,-0.572726;;, - 53;4; -0.332436,-0.597335, 0.332436,-0.597335;;, - 54;4; -0.306220,-0.618699, 0.306220,-0.618698;;, - 55;4; -0.285160,-0.635924, 0.285160,-0.635924;;, - 56;4; -0.269898,-0.648444, 0.269898,-0.648443;;, - 57;4; -0.260736,-0.655978, 0.260736,-0.655978;;, - 58;4; -0.257707,-0.658473, 0.257707,-0.658473;;, - 59;4; -0.267733,-0.652210, 0.267733,-0.652210;;, - 60;4; -0.297392,-0.633683, 0.297392,-0.633683;;, - 61;4; -0.342579,-0.605457, 0.342579,-0.605457;;, - 62;4; -0.393836,-0.573438, 0.393836,-0.573438;;, - 63;4; -0.439033,-0.545202, 0.439033,-0.545202;;, - 64;4; -0.468704,-0.526665, 0.468704,-0.526665;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.486744,-0.509400, 0.486744,-0.509400;;, - 107;4; -0.510455,-0.476386, 0.510455,-0.476386;;, - 108;4; -0.547311,-0.423935, 0.547311,-0.423935;;, - 109;4; -0.591333,-0.359126, 0.591333,-0.359126;;, - 110;4; -0.633927,-0.292779, 0.633927,-0.292779;;, - 111;4; -0.666718,-0.235944, 0.666718,-0.235944;;, - 112;4; -0.684263,-0.196259, 0.684263,-0.196259;;, - 113;4; -0.684609,-0.176946, 0.684609,-0.176946;;, - 114;4; -0.672960,-0.172187, 0.672960,-0.172187;;, - 115;4; -0.645206,-0.185654, 0.645206,-0.185654;;, - 116;4; -0.601532,-0.214884, 0.601532,-0.214884;;, - 117;4; -0.544660,-0.255951, 0.544660,-0.255951;;, - 118;4; -0.478481,-0.305578, 0.478481,-0.305578;;, - 119;4; -0.406739,-0.360603, 0.406739,-0.360603;;, - 120;4; -0.332928,-0.418069, 0.332928,-0.418069;;, - 121;4; -0.260224,-0.475279, 0.260224,-0.475279;;, - 122;4; -0.191436,-0.529837, 0.191436,-0.529837;;, - 123;4; -0.128993,-0.579668, 0.128993,-0.579668;;, - 124;4; -0.074942,-0.623014, 0.074942,-0.623014;;, - 125;4; -0.030964,-0.658422, 0.030964,-0.658422;;, - 126;4; 0.001591,-0.684719,-0.001591,-0.684719;;, - 127;4; 0.021676,-0.700988,-0.021675,-0.700988;;, - 128;4; 0.028506,-0.706532,-0.028506,-0.706532;;, - 129;4; 0.005515,-0.698107,-0.005515,-0.698107;;, - 130;4; -0.062432,-0.673232, 0.062432,-0.673232;;, - 131;4; -0.165922,-0.635355, 0.165922,-0.635355;;, - 132;4; -0.283421,-0.592296, 0.283422,-0.592296;;, - 133;4; -0.387246,-0.554146, 0.387246,-0.554146;;, - 134;4; -0.455581,-0.528956, 0.455581,-0.528956;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_noga2} - AnimationKey { //Position - 2; - 136; - 0;3; -0.921735, 3.022715,-1.476782;;, - 1;3; -0.921735, 3.022715,-1.476782;;, - 2;3; -0.921735, 3.022715,-1.476782;;, - 3;3; -0.921735, 3.022715,-1.476782;;, - 4;3; -0.921735, 3.022715,-1.476782;;, - 5;3; -0.921735, 3.022715,-1.476782;;, - 6;3; -0.921735, 3.022715,-1.476782;;, - 7;3; -0.921735, 3.022715,-1.476782;;, - 8;3; -0.921735, 3.022715,-1.476782;;, - 9;3; -0.921735, 3.022715,-1.476782;;, - 10;3; -0.921735, 3.022715,-1.476782;;, - 11;3; -0.921735, 3.022715,-1.476782;;, - 12;3; -0.921735, 3.022715,-1.476782;;, - 13;3; -0.921735, 3.022715,-1.476782;;, - 14;3; -0.921735, 3.022715,-1.476782;;, - 15;3; -0.921735, 3.022715,-1.476782;;, - 16;3; -0.921735, 3.022715,-1.476782;;, - 17;3; -0.921735, 3.022715,-1.476782;;, - 18;3; -0.921735, 3.022715,-1.476782;;, - 19;3; -0.921735, 3.022715,-1.476782;;, - 20;3; -0.921735, 3.022715,-1.476782;;, - 21;3; -0.921735, 3.022715,-1.476782;;, - 22;3; -0.921735, 3.022715,-1.476782;;, - 23;3; -0.921735, 3.022715,-1.476782;;, - 24;3; -0.921735, 3.022715,-1.476782;;, - 25;3; -0.921735, 3.022715,-1.476782;;, - 26;3; -0.921735, 3.022715,-1.476782;;, - 27;3; -0.921735, 3.022715,-1.476782;;, - 28;3; -0.921735, 3.022715,-1.476782;;, - 29;3; -0.921735, 3.022715,-1.476782;;, - 30;3; -0.921735, 3.022715,-1.476782;;, - 31;3; -0.921735, 3.022715,-1.476782;;, - 32;3; -0.921735, 3.022715,-1.476782;;, - 33;3; -0.921735, 3.022715,-1.476782;;, - 34;3; -0.921735, 3.022715,-1.476782;;, - 35;3; -0.921735, 3.022715,-1.476782;;, - 36;3; -0.921735, 3.022715,-1.476782;;, - 37;3; -0.921735, 3.022715,-1.476782;;, - 38;3; -0.921735, 3.022716,-1.476782;;, - 39;3; -0.921735, 3.022715,-1.476782;;, - 40;3; -0.921735, 3.022715,-1.476782;;, - 41;3; -0.921735, 3.022715,-1.476782;;, - 42;3; -0.921735, 3.022715,-1.476782;;, - 43;3; -0.921735, 3.022715,-1.476782;;, - 44;3; -0.921735, 3.022715,-1.476782;;, - 45;3; -0.921735, 3.022715,-1.476782;;, - 46;3; -0.921735, 3.022715,-1.476782;;, - 47;3; -0.921735, 3.022715,-1.476782;;, - 48;3; -0.921735, 3.022715,-1.476782;;, - 49;3; -0.921735, 3.022715,-1.476782;;, - 50;3; -0.921735, 3.022715,-1.476782;;, - 51;3; -0.921735, 3.022715,-1.476782;;, - 52;3; -0.921735, 3.022715,-1.476782;;, - 53;3; -0.921735, 3.022715,-1.476782;;, - 54;3; -0.921735, 3.022715,-1.476782;;, - 55;3; -0.921735, 3.022715,-1.476782;;, - 56;3; -0.921735, 3.022715,-1.476782;;, - 57;3; -0.921735, 3.022715,-1.476782;;, - 58;3; -0.921735, 3.022715,-1.476782;;, - 59;3; -0.921735, 3.022715,-1.476782;;, - 60;3; -0.921735, 3.022716,-1.476782;;, - 61;3; -0.921735, 3.022715,-1.476782;;, - 62;3; -0.921735, 3.022715,-1.476782;;, - 63;3; -0.921735, 3.022715,-1.476782;;, - 64;3; -0.921735, 3.022715,-1.476782;;, - 65;3; -0.921735, 3.022715,-1.476782;;, - 66;3; -0.921735, 3.022715,-1.476782;;, - 67;3; -0.921735, 3.022715,-1.476782;;, - 68;3; -0.921735, 3.022715,-1.476782;;, - 69;3; -0.921735, 3.022715,-1.476782;;, - 70;3; -0.921735, 3.022715,-1.476782;;, - 71;3; -0.921735, 3.022715,-1.476782;;, - 72;3; -0.921735, 3.022715,-1.476782;;, - 73;3; -0.921735, 3.022715,-1.476782;;, - 74;3; -0.921735, 3.022715,-1.476782;;, - 75;3; -0.921735, 3.022715,-1.476782;;, - 76;3; -0.921735, 3.022715,-1.476782;;, - 77;3; -0.921735, 3.022715,-1.476782;;, - 78;3; -0.921735, 3.022715,-1.476782;;, - 79;3; -0.921735, 3.022715,-1.476782;;, - 80;3; -0.921735, 3.022715,-1.476782;;, - 81;3; -0.921735, 3.022715,-1.476782;;, - 82;3; -0.921735, 3.022715,-1.476782;;, - 83;3; -0.921735, 3.022715,-1.476782;;, - 84;3; -0.921735, 3.022715,-1.476782;;, - 85;3; -0.921735, 3.022715,-1.476782;;, - 86;3; -0.921735, 3.022715,-1.476782;;, - 87;3; -0.921735, 3.022715,-1.476782;;, - 88;3; -0.921735, 3.022715,-1.476782;;, - 89;3; -0.921735, 3.022715,-1.476782;;, - 90;3; -0.921735, 3.022715,-1.476782;;, - 91;3; -0.921735, 3.022715,-1.476782;;, - 92;3; -0.921735, 3.022715,-1.476782;;, - 93;3; -0.921735, 3.022715,-1.476782;;, - 94;3; -0.921735, 3.022715,-1.476782;;, - 95;3; -0.921735, 3.022715,-1.476782;;, - 96;3; -0.921735, 3.022715,-1.476782;;, - 97;3; -0.921735, 3.022715,-1.476782;;, - 98;3; -0.921735, 3.022715,-1.476782;;, - 99;3; -0.921735, 3.022715,-1.476782;;, - 100;3; -0.921735, 3.022715,-1.476782;;, - 101;3; -0.921735, 3.022715,-1.476782;;, - 102;3; -0.921735, 3.022715,-1.476782;;, - 103;3; -0.921735, 3.022715,-1.476782;;, - 104;3; -0.921735, 3.022715,-1.476782;;, - 105;3; -0.921735, 3.022715,-1.476782;;, - 106;3; -0.921735, 3.022715,-1.476782;;, - 107;3; -0.921735, 3.022715,-1.476782;;, - 108;3; -0.921735, 3.022715,-1.476782;;, - 109;3; -0.921735, 3.022715,-1.476782;;, - 110;3; -0.921735, 3.022715,-1.476782;;, - 111;3; -0.921735, 3.022716,-1.476782;;, - 112;3; -0.921735, 3.022715,-1.476782;;, - 113;3; -0.921735, 3.022715,-1.476782;;, - 114;3; -0.921735, 3.022715,-1.476782;;, - 115;3; -0.921735, 3.022715,-1.476782;;, - 116;3; -0.921735, 3.022715,-1.476782;;, - 117;3; -0.921735, 3.022715,-1.476782;;, - 118;3; -0.921735, 3.022715,-1.476782;;, - 119;3; -0.921735, 3.022715,-1.476782;;, - 120;3; -0.921735, 3.022715,-1.476782;;, - 121;3; -0.921735, 3.022716,-1.476782;;, - 122;3; -0.921735, 3.022715,-1.476782;;, - 123;3; -0.921735, 3.022715,-1.476782;;, - 124;3; -0.921735, 3.022716,-1.476782;;, - 125;3; -0.921735, 3.022715,-1.476782;;, - 126;3; -0.921735, 3.022715,-1.476782;;, - 127;3; -0.921735, 3.022715,-1.476782;;, - 128;3; -0.921735, 3.022715,-1.476782;;, - 129;3; -0.921735, 3.022715,-1.476782;;, - 130;3; -0.921735, 3.022715,-1.476782;;, - 131;3; -0.921735, 3.022715,-1.476782;;, - 132;3; -0.921735, 3.022715,-1.476782;;, - 133;3; -0.921735, 3.022715,-1.476782;;, - 134;3; -0.921735, 3.022715,-1.476782;;, - 135;3; -0.921735, 3.022715,-1.476782;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 1;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 2;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 3;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 4;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 5;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 6;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 7;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 8;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 9;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 10;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 11;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 12;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 13;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 14;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 15;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 16;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 17;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 18;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 19;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 20;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 21;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 22;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 23;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 24;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 25;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 26;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 27;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 28;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 29;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 30;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 31;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 32;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 33;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 34;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 35;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 36;4; -0.473719,-0.524120, 0.473719,-0.524120;;, - 37;4; -0.458727,-0.535209, 0.458727,-0.535209;;, - 38;4; -0.435075,-0.552608, 0.435075,-0.552608;;, - 39;4; -0.406169,-0.573697, 0.406169,-0.573697;;, - 40;4; -0.377103,-0.594610, 0.377103,-0.594610;;, - 41;4; -0.352997,-0.611510, 0.352997,-0.611510;;, - 42;4; -0.337312,-0.621841, 0.337312,-0.621841;;, - 43;4; -0.331432,-0.624622, 0.331432,-0.624622;;, - 44;4; -0.333325,-0.621077, 0.333325,-0.621077;;, - 45;4; -0.340931,-0.612412, 0.340931,-0.612412;;, - 46;4; -0.354217,-0.598676, 0.354217,-0.598676;;, - 47;4; -0.372897,-0.580147, 0.372897,-0.580147;;, - 48;4; -0.396367,-0.557394, 0.396367,-0.557394;;, - 49;4; -0.423659,-0.531316, 0.423659,-0.531316;;, - 50;4; -0.453455,-0.503126, 0.453455,-0.503126;;, - 51;4; -0.484175,-0.474267, 0.484175,-0.474267;;, - 52;4; -0.514143,-0.446263, 0.514143,-0.446263;;, - 53;4; -0.541771,-0.420551, 0.541771,-0.420551;;, - 54;4; -0.565727,-0.398327, 0.565727,-0.398327;;, - 55;4; -0.585025,-0.380470, 0.585025,-0.380470;;, - 56;4; -0.599041,-0.367527, 0.599041,-0.367527;;, - 57;4; -0.607470,-0.359756, 0.607470,-0.359756;;, - 58;4; -0.610260,-0.357187, 0.610260,-0.357187;;, - 59;4; -0.604294,-0.364590, 0.604294,-0.364590;;, - 60;4; -0.586645,-0.386491, 0.586645,-0.386491;;, - 61;4; -0.559756,-0.419860, 0.559756,-0.419860;;, - 62;4; -0.529254,-0.457710, 0.529254,-0.457710;;, - 63;4; -0.502359,-0.491084, 0.502359,-0.491084;;, - 64;4; -0.484704,-0.512991, 0.484704,-0.512991;;, - 65;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 66;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 67;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 68;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 69;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 70;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 71;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 72;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 73;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 74;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 75;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 76;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 77;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 78;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 79;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 80;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 81;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 82;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 83;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 84;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 85;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 86;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 87;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 88;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 89;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 90;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 91;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 92;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 93;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 94;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 95;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 96;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 97;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 98;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 99;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 100;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 101;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 102;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 103;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 104;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 105;4; -0.478735,-0.520397, 0.478735,-0.520397;;, - 106;4; -0.469165,-0.526653, 0.469165,-0.526653;;, - 107;4; -0.440481,-0.545184, 0.440481,-0.545184;;, - 108;4; -0.395022,-0.574008, 0.395022,-0.574008;;, - 109;4; -0.339069,-0.608472, 0.339069,-0.608472;;, - 110;4; -0.282145,-0.641872, 0.282145,-0.641872;;, - 111;4; -0.233920,-0.667669, 0.233920,-0.667669;;, - 112;4; -0.201026,-0.681605, 0.201026,-0.681605;;, - 113;4; -0.186209,-0.682148, 0.186209,-0.682148;;, - 114;4; -0.184293,-0.673407, 0.184293,-0.673407;;, - 115;4; -0.198654,-0.652224, 0.198654,-0.652224;;, - 116;4; -0.227327,-0.618733, 0.227327,-0.618733;;, - 117;4; -0.266944,-0.575073, 0.266944,-0.575073;;, - 118;4; -0.314446,-0.524234, 0.314446,-0.524234;;, - 119;4; -0.366879,-0.469097, 0.366879,-0.469097;;, - 120;4; -0.421477,-0.412351, 0.421477,-0.412351;;, - 121;4; -0.475720,-0.356442, 0.475720,-0.356442;;, - 122;4; -0.527372,-0.303537, 0.527372,-0.303537;;, - 123;4; -0.574491,-0.255505, 0.574491,-0.255505;;, - 124;4; -0.615439,-0.213925, 0.615439,-0.213925;;, - 125;4; -0.648861,-0.180093, 0.648861,-0.180093;;, - 126;4; -0.673667,-0.155048, 0.673667,-0.155048;;, - 127;4; -0.689003,-0.139597, 0.689003,-0.139597;;, - 128;4; -0.694228,-0.134342, 0.694228,-0.134342;;, - 129;4; -0.684464,-0.151844, 0.684464,-0.151844;;, - 130;4; -0.655615,-0.203585, 0.655615,-0.203585;;, - 131;4; -0.611676,-0.282402, 0.611676,-0.282402;;, - 132;4; -0.561774,-0.371862, 0.561774,-0.371861;;, - 133;4; -0.517651,-0.450858, 0.517651,-0.450858;;, - 134;4; -0.488588,-0.502807, 0.488588,-0.502807;;, - 135;4; -0.478735,-0.520397, 0.478735,-0.520397;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_hvost} - AnimationKey { //Position - 2; - 136; - 0;3; 0.105165,-0.291279, 0.358470;;, - 1;3; 0.105165,-0.291279, 0.358470;;, - 2;3; 0.105165,-0.291279, 0.358470;;, - 3;3; 0.105165,-0.291279, 0.358470;;, - 4;3; 0.105165,-0.291279, 0.358470;;, - 5;3; 0.105165,-0.291279, 0.358470;;, - 6;3; 0.105165,-0.291279, 0.358470;;, - 7;3; 0.105165,-0.291279, 0.358470;;, - 8;3; 0.105165,-0.291279, 0.358470;;, - 9;3; 0.105165,-0.291279, 0.358470;;, - 10;3; 0.105165,-0.291279, 0.358470;;, - 11;3; 0.105165,-0.291279, 0.358470;;, - 12;3; 0.105165,-0.291279, 0.358470;;, - 13;3; 0.105165,-0.291279, 0.358470;;, - 14;3; 0.105165,-0.291279, 0.358470;;, - 15;3; 0.105165,-0.291279, 0.358470;;, - 16;3; 0.105165,-0.291279, 0.358470;;, - 17;3; 0.105165,-0.291279, 0.358470;;, - 18;3; 0.105165,-0.291279, 0.358470;;, - 19;3; 0.105165,-0.291279, 0.358470;;, - 20;3; 0.105165,-0.291279, 0.358470;;, - 21;3; 0.105165,-0.291279, 0.358470;;, - 22;3; 0.105165,-0.291279, 0.358470;;, - 23;3; 0.105165,-0.291279, 0.358470;;, - 24;3; 0.105165,-0.291279, 0.358470;;, - 25;3; 0.105165,-0.291279, 0.358470;;, - 26;3; 0.105165,-0.291279, 0.358470;;, - 27;3; 0.105165,-0.291279, 0.358470;;, - 28;3; 0.105165,-0.291279, 0.358470;;, - 29;3; 0.105165,-0.291279, 0.358470;;, - 30;3; 0.105165,-0.291279, 0.358470;;, - 31;3; 0.105165,-0.291279, 0.358470;;, - 32;3; 0.105165,-0.291279, 0.358470;;, - 33;3; 0.105165,-0.291279, 0.358470;;, - 34;3; 0.105165,-0.291279, 0.358470;;, - 35;3; 0.105165,-0.291279, 0.358470;;, - 36;3; 0.105165,-0.291279, 0.358470;;, - 37;3; 0.105165,-0.291279, 0.358470;;, - 38;3; 0.105165,-0.291279, 0.358470;;, - 39;3; 0.105165,-0.291279, 0.358470;;, - 40;3; 0.105165,-0.291279, 0.358470;;, - 41;3; 0.105165,-0.291279, 0.358470;;, - 42;3; 0.105165,-0.291279, 0.358470;;, - 43;3; 0.105165,-0.291279, 0.358470;;, - 44;3; 0.105165,-0.291279, 0.358470;;, - 45;3; 0.105165,-0.291279, 0.358470;;, - 46;3; 0.105165,-0.291279, 0.358470;;, - 47;3; 0.105165,-0.291279, 0.358470;;, - 48;3; 0.105165,-0.291279, 0.358470;;, - 49;3; 0.105165,-0.291279, 0.358470;;, - 50;3; 0.105165,-0.291279, 0.358470;;, - 51;3; 0.105165,-0.291279, 0.358470;;, - 52;3; 0.105165,-0.291279, 0.358470;;, - 53;3; 0.105165,-0.291279, 0.358470;;, - 54;3; 0.105165,-0.291279, 0.358470;;, - 55;3; 0.105165,-0.291279, 0.358470;;, - 56;3; 0.105165,-0.291279, 0.358470;;, - 57;3; 0.105165,-0.291279, 0.358470;;, - 58;3; 0.105165,-0.291279, 0.358470;;, - 59;3; 0.105165,-0.291279, 0.358470;;, - 60;3; 0.105165,-0.291279, 0.358470;;, - 61;3; 0.105165,-0.291279, 0.358470;;, - 62;3; 0.105165,-0.291279, 0.358470;;, - 63;3; 0.105165,-0.291279, 0.358470;;, - 64;3; 0.105165,-0.291279, 0.358470;;, - 65;3; 0.105165,-0.291279, 0.358470;;, - 66;3; 0.105165,-0.291279, 0.358470;;, - 67;3; 0.105165,-0.291279, 0.358470;;, - 68;3; 0.105165,-0.291279, 0.358470;;, - 69;3; 0.105165,-0.291279, 0.358470;;, - 70;3; 0.105165,-0.291279, 0.358470;;, - 71;3; 0.105165,-0.291279, 0.358470;;, - 72;3; 0.105165,-0.291279, 0.358470;;, - 73;3; 0.105165,-0.291279, 0.358470;;, - 74;3; 0.105165,-0.291279, 0.358470;;, - 75;3; 0.105165,-0.291279, 0.358470;;, - 76;3; 0.105165,-0.291279, 0.358470;;, - 77;3; 0.105165,-0.291279, 0.358470;;, - 78;3; 0.105165,-0.291279, 0.358470;;, - 79;3; 0.105165,-0.291279, 0.358470;;, - 80;3; 0.105165,-0.291279, 0.358470;;, - 81;3; 0.105165,-0.291279, 0.358470;;, - 82;3; 0.105165,-0.291279, 0.358470;;, - 83;3; 0.105165,-0.291279, 0.358470;;, - 84;3; 0.105165,-0.291279, 0.358470;;, - 85;3; 0.105165,-0.291279, 0.358470;;, - 86;3; 0.105165,-0.291279, 0.358470;;, - 87;3; 0.105165,-0.291279, 0.358470;;, - 88;3; 0.105165,-0.291279, 0.358470;;, - 89;3; 0.105165,-0.291279, 0.358470;;, - 90;3; 0.105165,-0.291279, 0.358470;;, - 91;3; 0.105165,-0.291279, 0.358470;;, - 92;3; 0.105165,-0.291279, 0.358470;;, - 93;3; 0.105165,-0.291279, 0.358470;;, - 94;3; 0.105165,-0.291279, 0.358470;;, - 95;3; 0.105165,-0.291279, 0.358470;;, - 96;3; 0.105165,-0.291279, 0.358470;;, - 97;3; 0.105165,-0.291279, 0.358470;;, - 98;3; 0.105165,-0.291279, 0.358470;;, - 99;3; 0.105165,-0.291279, 0.358470;;, - 100;3; 0.105165,-0.291279, 0.358470;;, - 101;3; 0.105165,-0.291279, 0.358470;;, - 102;3; 0.105165,-0.291279, 0.358470;;, - 103;3; 0.105165,-0.291279, 0.358470;;, - 104;3; 0.105165,-0.291279, 0.358470;;, - 105;3; 0.105165,-0.291279, 0.358470;;, - 106;3; 0.105165,-0.291279, 0.358470;;, - 107;3; 0.105165,-0.291279, 0.358470;;, - 108;3; 0.105165,-0.291279, 0.358470;;, - 109;3; 0.105165,-0.291279, 0.358470;;, - 110;3; 0.105165,-0.291279, 0.358470;;, - 111;3; 0.105165,-0.291279, 0.358470;;, - 112;3; 0.105165,-0.291279, 0.358470;;, - 113;3; 0.105165,-0.291279, 0.358470;;, - 114;3; 0.105165,-0.291279, 0.358470;;, - 115;3; 0.105165,-0.291279, 0.358470;;, - 116;3; 0.105165,-0.291279, 0.358470;;, - 117;3; 0.105165,-0.291279, 0.358470;;, - 118;3; 0.105165,-0.291279, 0.358470;;, - 119;3; 0.105165,-0.291279, 0.358470;;, - 120;3; 0.105165,-0.291279, 0.358470;;, - 121;3; 0.105165,-0.291279, 0.358470;;, - 122;3; 0.105165,-0.291279, 0.358470;;, - 123;3; 0.105165,-0.291279, 0.358470;;, - 124;3; 0.105165,-0.291279, 0.358470;;, - 125;3; 0.105165,-0.291279, 0.358470;;, - 126;3; 0.105165,-0.291279, 0.358470;;, - 127;3; 0.105165,-0.291279, 0.358470;;, - 128;3; 0.105165,-0.291279, 0.358470;;, - 129;3; 0.105165,-0.291279, 0.358470;;, - 130;3; 0.105165,-0.291279, 0.358470;;, - 131;3; 0.105165,-0.291279, 0.358470;;, - 132;3; 0.105165,-0.291279, 0.358470;;, - 133;3; 0.105165,-0.291279, 0.358470;;, - 134;3; 0.105165,-0.291279, 0.358470;;, - 135;3; 0.105165,-0.291279, 0.358470;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 1;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 2;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 3;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 4;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 5;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 6;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 7;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 8;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 9;4; -0.561014,-0.723949, 0.238921,-0.306999;;, - 10;4; -0.575060,-0.690426, 0.184552,-0.358451;;, - 11;4; -0.594567,-0.641346, 0.106104,-0.432044;;, - 12;4; -0.612765,-0.590529, 0.027051,-0.504947;;, - 13;4; -0.623212,-0.552233,-0.028979,-0.554504;;, - 14;4; -0.622945,-0.533953,-0.050020,-0.569504;;, - 15;4; -0.602096,-0.542017,-0.018023,-0.528442;;, - 16;4; -0.552670,-0.580372, 0.080254,-0.414877;;, - 17;4; -0.484828,-0.639724, 0.222965,-0.253333;;, - 18;4; -0.418300,-0.700808, 0.366270,-0.092486;;, - 19;4; -0.372482,-0.743929, 0.466192, 0.019170;;, - 20;4; -0.356823,-0.758866, 0.500575, 0.057496;;, - 21;4; -0.374538,-0.756775, 0.478970, 0.026669;;, - 22;4; -0.424425,-0.750892, 0.418140,-0.060142;;, - 23;4; -0.488475,-0.743339, 0.340039,-0.171601;;, - 24;4; -0.538373,-0.737448, 0.279186,-0.258430;;, - 25;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 26;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 27;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 28;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 29;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 30;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 31;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 32;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 33;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 34;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 35;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 36;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 37;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 38;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 39;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 40;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 41;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 42;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 43;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 44;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 45;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 46;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 47;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 48;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 49;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 50;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 51;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 52;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 53;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 54;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 55;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 56;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 57;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 58;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 59;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 60;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 61;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 62;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 63;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 64;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 65;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 66;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 67;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 68;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 69;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 70;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 71;4; -0.535274,-0.734089, 0.278584,-0.256249;;, - 72;4; -0.472375,-0.728553, 0.340072,-0.157917;;, - 73;4; -0.373158,-0.715527, 0.432069,-0.006370;;, - 74;4; -0.253969,-0.691881, 0.533281, 0.168995;;, - 75;4; -0.137653,-0.656171, 0.617367, 0.329535;;, - 76;4; -0.043608,-0.609320, 0.664455, 0.444255;;, - 77;4; 0.018224,-0.553672, 0.666527, 0.498859;;, - 78;4; 0.072989,-0.480623, 0.641269, 0.526461;;, - 79;4; 0.126603,-0.405510, 0.612225, 0.550007;;, - 80;4; 0.142409,-0.374454, 0.591492, 0.550778;;, - 81;4; 0.010358,-0.333466, 0.444038, 0.568002;;, - 82;4; -0.259884,-0.256623, 0.141437, 0.613428;;, - 83;4; -0.379890,-0.232545,-0.020516, 0.616913;;, - 84;4; -0.372974,-0.253638,-0.048164, 0.581873;;, - 85;4; -0.371218,-0.280405,-0.063925, 0.535909;;, - 86;4; -0.374319,-0.312239,-0.068399, 0.480151;;, - 87;4; -0.381838,-0.348358,-0.062484, 0.416061;;, - 88;4; -0.393205,-0.387811,-0.047375, 0.345415;;, - 89;4; -0.407725,-0.429513,-0.024540, 0.270246;;, - 90;4; -0.424611,-0.472281, 0.004336, 0.192764;;, - 91;4; -0.443016,-0.514898, 0.037430, 0.115252;;, - 92;4; -0.462079,-0.556169, 0.072865, 0.039947;;, - 93;4; -0.480964,-0.594981, 0.108810,-0.031057;;, - 94;4; -0.498900,-0.630348, 0.143556,-0.095902;;, - 95;4; -0.515206,-0.661438, 0.175579,-0.153017;;, - 96;4; -0.529309,-0.687595, 0.203581,-0.201149;;, - 97;4; -0.540751,-0.708328, 0.226500,-0.239360;;, - 98;4; -0.549181,-0.723307, 0.243510,-0.267005;;, - 99;4; -0.554349,-0.732341, 0.254005,-0.283697;;, - 100;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 101;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 102;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 103;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 104;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 105;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 106;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 107;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 108;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 109;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 110;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 111;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 112;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 113;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 114;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 115;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 116;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 117;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 118;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 119;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 120;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 121;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 122;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 123;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 124;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 125;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 126;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 127;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 128;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 129;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 130;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 131;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 132;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 133;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 134;4; -0.556095,-0.735353, 0.257568,-0.289268;;, - 135;4; -0.556095,-0.735353, 0.257568,-0.289268;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_sheya} - AnimationKey { //Position - 2; - 136; - 0;3; 0.000000, 3.238709,-0.013816;;, - 1;3; 0.000000, 3.238709,-0.013816;;, - 2;3; 0.000000, 3.236990,-0.034342;;, - 3;3; 0.000000, 3.231916,-0.094984;;, - 4;3; 0.000000, 3.224207,-0.187240;;, - 5;3; 0.000000, 3.215480,-0.291771;;, - 6;3; 0.000000, 3.207790,-0.383908;;, - 7;3; 0.000000, 3.202737,-0.444412;;, - 8;3; 0.000000, 3.201027,-0.464880;;, - 9;3; 0.000000, 3.201027,-0.464880;;, - 10;3; 0.000000, 3.201027,-0.464880;;, - 11;3; 0.000000, 3.201027,-0.464880;;, - 12;3; 0.000000, 3.201027,-0.464880;;, - 13;3; 0.000000, 3.201027,-0.464880;;, - 14;3; 0.000000, 3.201027,-0.464880;;, - 15;3; 0.000000, 3.201027,-0.464880;;, - 16;3; 0.000000, 3.201027,-0.464880;;, - 17;3; 0.000000, 3.201027,-0.464880;;, - 18;3; 0.000000, 3.201027,-0.464880;;, - 19;3; 0.000000, 3.201027,-0.464880;;, - 20;3; 0.000000, 3.201027,-0.464880;;, - 21;3; 0.000000, 3.201027,-0.464880;;, - 22;3; 0.000000, 3.201027,-0.464880;;, - 23;3; 0.000000, 3.201027,-0.464880;;, - 24;3; 0.000000, 3.201027,-0.464880;;, - 25;3; 0.000000, 3.201027,-0.464880;;, - 26;3; 0.000000, 3.203358,-0.436993;;, - 27;3; 0.000000, 3.210135,-0.355884;;, - 28;3; 0.000000, 3.219868,-0.239348;;, - 29;3; 0.000000, 3.229601,-0.122812;;, - 30;3; 0.000000, 3.236378,-0.041703;;, - 31;3; 0.000000, 3.238709,-0.013816;;, - 32;3; 0.000000, 3.238709,-0.013816;;, - 33;3; 0.000000, 3.238709,-0.013816;;, - 34;3; 0.000000, 3.238709,-0.013816;;, - 35;3; 0.000000, 3.238709,-0.013816;;, - 36;3; 0.000000, 3.238709,-0.013816;;, - 37;3; 0.000000, 3.238709,-0.013816;;, - 38;3; 0.000000, 3.238709,-0.013816;;, - 39;3; 0.000000, 3.238709,-0.013816;;, - 40;3; 0.000000, 3.238709,-0.013816;;, - 41;3; 0.000000, 3.238709,-0.013816;;, - 42;3; 0.000000, 3.238709,-0.013816;;, - 43;3; 0.000000, 3.238709,-0.013816;;, - 44;3; 0.000000, 3.238709,-0.013816;;, - 45;3; 0.000000, 3.238709,-0.013816;;, - 46;3; 0.000000, 3.238709,-0.013816;;, - 47;3; 0.000000, 3.238709,-0.013816;;, - 48;3; 0.000000, 3.238709,-0.013816;;, - 49;3; 0.000000, 3.238709,-0.013816;;, - 50;3; 0.000000, 3.238709,-0.013816;;, - 51;3; 0.000000, 3.238709,-0.013816;;, - 52;3; 0.000000, 3.238709,-0.013816;;, - 53;3; 0.000000, 3.238709,-0.013816;;, - 54;3; 0.000000, 3.238709,-0.013816;;, - 55;3; 0.000000, 3.238709,-0.013816;;, - 56;3; 0.000000, 3.238709,-0.013816;;, - 57;3; 0.000000, 3.238709,-0.013816;;, - 58;3; 0.000000, 3.238709,-0.013816;;, - 59;3; 0.000000, 3.238709,-0.013816;;, - 60;3; 0.000000, 3.238709,-0.013816;;, - 61;3; 0.000000, 3.238709,-0.013816;;, - 62;3; 0.000000, 3.238709,-0.013816;;, - 63;3; 0.000000, 3.238709,-0.013816;;, - 64;3; 0.000000, 3.238709,-0.013816;;, - 65;3; 0.000000, 3.238709,-0.013816;;, - 66;3; 0.000000, 3.238709,-0.013816;;, - 67;3; 0.000000, 3.238709,-0.013816;;, - 68;3; 0.000000, 3.238709,-0.013816;;, - 69;3; 0.000000, 3.238709,-0.013816;;, - 70;3; 0.000000, 3.238709,-0.013816;;, - 71;3; 0.000000, 3.238709,-0.013816;;, - 72;3; 0.000000, 3.238709,-0.013816;;, - 73;3; 0.000000, 3.238709,-0.013816;;, - 74;3; 0.000000, 3.238709,-0.013816;;, - 75;3; 0.000000, 3.238709,-0.013816;;, - 76;3; 0.000000, 3.238709,-0.013816;;, - 77;3; 0.000000, 3.238709,-0.013816;;, - 78;3; 0.000000, 3.238709,-0.013816;;, - 79;3; 0.000000, 3.238709,-0.013816;;, - 80;3; 0.000000, 3.238709,-0.013816;;, - 81;3; 0.000000, 3.238709,-0.013816;;, - 82;3; 0.000000, 3.238709,-0.013816;;, - 83;3; 0.000000, 3.238709,-0.013816;;, - 84;3; 0.000000, 3.238709,-0.013816;;, - 85;3; 0.000000, 3.238709,-0.013816;;, - 86;3; 0.000000, 3.238709,-0.013816;;, - 87;3; 0.000000, 3.238709,-0.013816;;, - 88;3; 0.000000, 3.238709,-0.013816;;, - 89;3; 0.000000, 3.238709,-0.013816;;, - 90;3; 0.000000, 3.238709,-0.013816;;, - 91;3; 0.000000, 3.238709,-0.013816;;, - 92;3; 0.000000, 3.238709,-0.013816;;, - 93;3; 0.000000, 3.238709,-0.013816;;, - 94;3; 0.000000, 3.238709,-0.013816;;, - 95;3; 0.000000, 3.238709,-0.013816;;, - 96;3; 0.000000, 3.238709,-0.013816;;, - 97;3; 0.000000, 3.238709,-0.013816;;, - 98;3; 0.000000, 3.238709,-0.013816;;, - 99;3; 0.000000, 3.238709,-0.013816;;, - 100;3; 0.000000, 3.238709,-0.013816;;, - 101;3; 0.000000, 3.238709,-0.013816;;, - 102;3; 0.000000, 3.238709,-0.013816;;, - 103;3; 0.000000, 3.238709,-0.013816;;, - 104;3; 0.000000, 3.238709,-0.013816;;, - 105;3; 0.000000, 3.238709,-0.013816;;, - 106;3; 0.000000, 3.238709,-0.013816;;, - 107;3; 0.000000, 3.238709,-0.013816;;, - 108;3; 0.000000, 3.238709,-0.013816;;, - 109;3; 0.000000, 3.238709,-0.013816;;, - 110;3; 0.000000, 3.238709,-0.013816;;, - 111;3; 0.000000, 3.238709,-0.013816;;, - 112;3; 0.000000, 3.238709,-0.013816;;, - 113;3; 0.000000, 3.238709,-0.013816;;, - 114;3; 0.000000, 3.238709,-0.013816;;, - 115;3; 0.000000, 3.238709,-0.013816;;, - 116;3; 0.000000, 3.238709,-0.013816;;, - 117;3; 0.000000, 3.238709,-0.013816;;, - 118;3; 0.000000, 3.238709,-0.013816;;, - 119;3; 0.000000, 3.238709,-0.013816;;, - 120;3; 0.000000, 3.238709,-0.013816;;, - 121;3; 0.000000, 3.238709,-0.013816;;, - 122;3; 0.000000, 3.238709,-0.013816;;, - 123;3; 0.000000, 3.238709,-0.013816;;, - 124;3; 0.000000, 3.238709,-0.013816;;, - 125;3; 0.000000, 3.238709,-0.013816;;, - 126;3; 0.000000, 3.238709,-0.013816;;, - 127;3; 0.000000, 3.238709,-0.013816;;, - 128;3; 0.000000, 3.238709,-0.013816;;, - 129;3; 0.000000, 3.238709,-0.013816;;, - 130;3; 0.000000, 3.238709,-0.013816;;, - 131;3; 0.000000, 3.238709,-0.013816;;, - 132;3; 0.000000, 3.238709,-0.013816;;, - 133;3; 0.000000, 3.238709,-0.013816;;, - 134;3; 0.000000, 3.238709,-0.013816;;, - 135;3; 0.000000, 3.238709,-0.013816;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 1;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 2;4; -0.976686,-0.085962, 0.015156, 0.033999;;, - 3;4; -0.957666,-0.146060, 0.017070, 0.032575;;, - 4;4; -0.928699,-0.237482, 0.019992, 0.030406;;, - 5;4; -0.895855,-0.341063, 0.023310, 0.027945;;, - 6;4; -0.866900,-0.432362, 0.026237, 0.025775;;, - 7;4; -0.847893,-0.492318, 0.028156, 0.024351;;, - 8;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 9;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 10;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 11;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 12;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 13;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 14;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 15;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 16;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 17;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 18;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 19;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 20;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 21;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 22;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 23;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 24;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 25;4; -0.841466,-0.512601, 0.028804, 0.023869;;, - 26;4; -0.850219,-0.484965, 0.027922, 0.024525;;, - 27;4; -0.875686,-0.404590, 0.025353, 0.026432;;, - 28;4; -0.912292,-0.289110, 0.021657, 0.029175;;, - 29;4; -0.948897,-0.173630, 0.017961, 0.031917;;, - 30;4; -0.974365,-0.093255, 0.015392, 0.033825;;, - 31;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 32;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 33;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 34;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 35;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 36;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 37;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 38;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 39;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 40;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 41;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 42;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 43;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 44;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 45;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 46;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 47;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 48;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 49;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 50;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 51;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 52;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 53;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 54;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 55;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 56;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 57;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 58;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 59;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 60;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 61;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 62;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 63;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 64;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 65;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 66;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 67;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 68;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 69;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 70;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 71;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 72;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 73;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 74;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 75;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 76;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 77;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 78;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 79;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 80;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 81;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 82;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 83;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 84;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 85;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 86;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 87;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 88;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 89;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 90;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 91;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 92;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 93;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 94;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 95;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 96;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 97;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 98;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 99;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 100;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 101;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 102;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 103;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 104;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 105;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 106;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 107;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 108;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 109;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 110;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 111;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 112;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 113;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 114;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 115;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 116;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 117;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 118;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 119;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 120;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 121;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 122;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 123;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 124;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 125;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 126;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 127;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 128;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 129;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 130;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 131;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 132;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 133;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 134;4; -0.983117,-0.065618, 0.014510, 0.034480;;, - 135;4; -0.983117,-0.065618, 0.014510, 0.034480;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_head} - AnimationKey { //Position - 2; - 136; - 0;3; 0.067776, 0.891274, 0.002915;;, - 1;3; 0.067776, 0.891274, 0.002915;;, - 2;3; 0.067776, 0.891274, 0.002915;;, - 3;3; 0.067776, 0.891274, 0.002916;;, - 4;3; 0.067776, 0.891274, 0.002916;;, - 5;3; 0.067776, 0.891274, 0.002916;;, - 6;3; 0.067776, 0.891274, 0.002916;;, - 7;3; 0.067776, 0.891274, 0.002916;;, - 8;3; 0.067776, 0.891274, 0.002915;;, - 9;3; 0.067776, 0.891274, 0.002915;;, - 10;3; 0.067776, 0.891274, 0.002915;;, - 11;3; 0.067776, 0.891274, 0.002915;;, - 12;3; 0.067776, 0.891274, 0.002915;;, - 13;3; 0.067776, 0.891274, 0.002915;;, - 14;3; 0.067776, 0.891274, 0.002915;;, - 15;3; 0.067776, 0.891274, 0.002915;;, - 16;3; 0.067776, 0.891274, 0.002915;;, - 17;3; 0.067776, 0.891274, 0.002915;;, - 18;3; 0.067776, 0.891274, 0.002915;;, - 19;3; 0.067776, 0.891274, 0.002915;;, - 20;3; 0.067776, 0.891274, 0.002915;;, - 21;3; 0.067776, 0.891274, 0.002915;;, - 22;3; 0.067776, 0.891274, 0.002915;;, - 23;3; 0.067776, 0.891274, 0.002915;;, - 24;3; 0.067776, 0.891274, 0.002915;;, - 25;3; 0.067776, 0.891274, 0.002915;;, - 26;3; 0.067776, 0.891274, 0.002915;;, - 27;3; 0.067777, 0.891274, 0.002915;;, - 28;3; 0.067776, 0.891274, 0.002916;;, - 29;3; 0.067776, 0.891274, 0.002915;;, - 30;3; 0.067776, 0.891274, 0.002916;;, - 31;3; 0.067776, 0.891274, 0.002915;;, - 32;3; 0.067776, 0.891274, 0.002915;;, - 33;3; 0.067776, 0.891274, 0.002915;;, - 34;3; 0.067776, 0.891274, 0.002915;;, - 35;3; 0.067776, 0.891274, 0.002915;;, - 36;3; 0.067776, 0.891274, 0.002915;;, - 37;3; 0.067776, 0.891274, 0.002916;;, - 38;3; 0.067777, 0.891274, 0.002916;;, - 39;3; 0.067776, 0.891274, 0.002915;;, - 40;3; 0.067776, 0.891274, 0.002915;;, - 41;3; 0.067776, 0.891274, 0.002915;;, - 42;3; 0.067776, 0.891274, 0.002915;;, - 43;3; 0.067776, 0.891274, 0.002915;;, - 44;3; 0.067776, 0.891274, 0.002915;;, - 45;3; 0.067777, 0.891274, 0.002915;;, - 46;3; 0.067776, 0.891274, 0.002915;;, - 47;3; 0.067777, 0.891274, 0.002915;;, - 48;3; 0.067777, 0.891274, 0.002915;;, - 49;3; 0.067776, 0.891274, 0.002915;;, - 50;3; 0.067777, 0.891274, 0.002915;;, - 51;3; 0.067776, 0.891274, 0.002915;;, - 52;3; 0.067776, 0.891274, 0.002915;;, - 53;3; 0.067776, 0.891274, 0.002915;;, - 54;3; 0.067776, 0.891274, 0.002915;;, - 55;3; 0.067776, 0.891274, 0.002916;;, - 56;3; 0.067776, 0.891274, 0.002915;;, - 57;3; 0.067776, 0.891274, 0.002915;;, - 58;3; 0.067777, 0.891274, 0.002916;;, - 59;3; 0.067776, 0.891274, 0.002915;;, - 60;3; 0.067777, 0.891274, 0.002915;;, - 61;3; 0.067776, 0.891274, 0.002915;;, - 62;3; 0.067777, 0.891274, 0.002915;;, - 63;3; 0.067777, 0.891274, 0.002915;;, - 64;3; 0.067777, 0.891274, 0.002915;;, - 65;3; 0.067776, 0.891274, 0.002915;;, - 66;3; 0.067776, 0.891274, 0.002915;;, - 67;3; 0.067776, 0.891274, 0.002915;;, - 68;3; 0.067776, 0.891274, 0.002915;;, - 69;3; 0.067776, 0.891274, 0.002915;;, - 70;3; 0.067776, 0.891274, 0.002915;;, - 71;3; 0.067776, 0.891274, 0.002915;;, - 72;3; 0.067776, 0.891274, 0.002915;;, - 73;3; 0.067776, 0.891274, 0.002915;;, - 74;3; 0.067776, 0.891274, 0.002915;;, - 75;3; 0.067776, 0.891274, 0.002915;;, - 76;3; 0.067776, 0.891274, 0.002915;;, - 77;3; 0.067776, 0.891274, 0.002915;;, - 78;3; 0.067776, 0.891274, 0.002915;;, - 79;3; 0.067776, 0.891274, 0.002915;;, - 80;3; 0.067776, 0.891274, 0.002915;;, - 81;3; 0.067776, 0.891274, 0.002915;;, - 82;3; 0.067776, 0.891274, 0.002915;;, - 83;3; 0.067776, 0.891274, 0.002915;;, - 84;3; 0.067776, 0.891274, 0.002915;;, - 85;3; 0.067776, 0.891274, 0.002915;;, - 86;3; 0.067776, 0.891274, 0.002915;;, - 87;3; 0.067776, 0.891274, 0.002915;;, - 88;3; 0.067776, 0.891274, 0.002915;;, - 89;3; 0.067776, 0.891274, 0.002915;;, - 90;3; 0.067776, 0.891274, 0.002915;;, - 91;3; 0.067776, 0.891274, 0.002915;;, - 92;3; 0.067776, 0.891274, 0.002915;;, - 93;3; 0.067776, 0.891274, 0.002915;;, - 94;3; 0.067776, 0.891274, 0.002915;;, - 95;3; 0.067776, 0.891274, 0.002915;;, - 96;3; 0.067776, 0.891274, 0.002915;;, - 97;3; 0.067776, 0.891274, 0.002915;;, - 98;3; 0.067776, 0.891274, 0.002915;;, - 99;3; 0.067776, 0.891274, 0.002915;;, - 100;3; 0.067776, 0.891274, 0.002915;;, - 101;3; 0.067776, 0.891274, 0.002915;;, - 102;3; 0.067776, 0.891274, 0.002915;;, - 103;3; 0.067776, 0.891274, 0.002915;;, - 104;3; 0.067776, 0.891274, 0.002915;;, - 105;3; 0.067776, 0.891274, 0.002915;;, - 106;3; 0.067776, 0.891274, 0.002915;;, - 107;3; 0.067776, 0.891274, 0.002916;;, - 108;3; 0.067777, 0.891274, 0.002916;;, - 109;3; 0.067776, 0.891274, 0.002915;;, - 110;3; 0.067776, 0.891274, 0.002915;;, - 111;3; 0.067776, 0.891274, 0.002915;;, - 112;3; 0.067776, 0.891274, 0.002915;;, - 113;3; 0.067776, 0.891274, 0.002915;;, - 114;3; 0.067776, 0.891274, 0.002915;;, - 115;3; 0.067777, 0.891274, 0.002915;;, - 116;3; 0.067777, 0.891274, 0.002915;;, - 117;3; 0.067776, 0.891274, 0.002915;;, - 118;3; 0.067777, 0.891274, 0.002915;;, - 119;3; 0.067777, 0.891274, 0.002915;;, - 120;3; 0.067776, 0.891274, 0.002915;;, - 121;3; 0.067777, 0.891274, 0.002915;;, - 122;3; 0.067776, 0.891274, 0.002915;;, - 123;3; 0.067776, 0.891274, 0.002915;;, - 124;3; 0.067776, 0.891274, 0.002915;;, - 125;3; 0.067776, 0.891274, 0.002916;;, - 126;3; 0.067776, 0.891274, 0.002915;;, - 127;3; 0.067776, 0.891274, 0.002915;;, - 128;3; 0.067777, 0.891274, 0.002916;;, - 129;3; 0.067776, 0.891274, 0.002915;;, - 130;3; 0.067776, 0.891274, 0.002915;;, - 131;3; 0.067777, 0.891274, 0.002915;;, - 132;3; 0.067776, 0.891274, 0.002915;;, - 133;3; 0.067777, 0.891274, 0.002915;;, - 134;3; 0.067777, 0.891274, 0.002915;;, - 135;3; 0.067776, 0.891274, 0.002915;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 1;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 2;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 3;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 4;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 5;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 6;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 7;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 8;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 9;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 10;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 11;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 12;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 13;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 14;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 15;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 16;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 17;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 18;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 19;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 20;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 21;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 22;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 23;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 24;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 25;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 26;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 27;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 28;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 29;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 30;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 31;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 32;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 33;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 34;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 35;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 36;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 37;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 38;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 39;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 40;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 41;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 42;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 43;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 44;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 45;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 46;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 47;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 48;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 49;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 50;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 51;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 52;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 53;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 54;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 55;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 56;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 57;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 58;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 59;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 60;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 61;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 62;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 63;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 64;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 65;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 66;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 67;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 68;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 69;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 70;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 71;4; -0.993396,-0.093970, 0.003706,-0.037410;;, - 72;4; -0.992585,-0.059156, 0.002434,-0.036511;;, - 73;4; -0.991349,-0.006118, 0.000497,-0.035141;;, - 74;4; -0.989946, 0.054035,-0.001699,-0.033587;;, - 75;4; -0.988710, 0.107069,-0.003636,-0.032217;;, - 76;4; -0.987899, 0.141879,-0.004908,-0.031318;;, - 77;4; -0.987625, 0.153647,-0.005337,-0.031014;;, - 78;4; -0.987650, 0.152567,-0.005298,-0.031042;;, - 79;4; -0.987726, 0.149304,-0.005179,-0.031126;;, - 80;4; -0.987853, 0.143842,-0.004979,-0.031267;;, - 81;4; -0.988031, 0.136199,-0.004700,-0.031464;;, - 82;4; -0.988258, 0.126432,-0.004343,-0.031717;;, - 83;4; -0.988533, 0.114647,-0.003913,-0.032021;;, - 84;4; -0.988851, 0.101005,-0.003415,-0.032373;;, - 85;4; -0.989207, 0.085729,-0.002857,-0.032768;;, - 86;4; -0.989594, 0.069101,-0.002250,-0.033197;;, - 87;4; -0.990005, 0.051460,-0.001605,-0.033653;;, - 88;4; -0.990431, 0.033191,-0.000938,-0.034125;;, - 89;4; -0.990862, 0.014709,-0.000263,-0.034602;;, - 90;4; -0.991288,-0.003560, 0.000404,-0.035074;;, - 91;4; -0.991699,-0.021201, 0.001048,-0.035530;;, - 92;4; -0.992087,-0.037828, 0.001656,-0.035959;;, - 93;4; -0.992443,-0.053103, 0.002213,-0.036354;;, - 94;4; -0.992761,-0.066744, 0.002712,-0.036706;;, - 95;4; -0.993036,-0.078528, 0.003142,-0.037011;;, - 96;4; -0.993263,-0.088294, 0.003499,-0.037263;;, - 97;4; -0.993441,-0.095936, 0.003778,-0.037460;;, - 98;4; -0.993569,-0.101397, 0.003977,-0.037601;;, - 99;4; -0.993645,-0.104660, 0.004096,-0.037686;;, - 100;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 101;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 102;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 103;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 104;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 105;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 106;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 107;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 108;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 109;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 110;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 111;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 112;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 113;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 114;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 115;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 116;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 117;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 118;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 119;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 120;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 121;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 122;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 123;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 124;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 125;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 126;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 127;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 128;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 129;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 130;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 131;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 132;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 133;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 134;4; -0.993670,-0.105740, 0.004136,-0.037714;;, - 135;4; -0.993670,-0.105740, 0.004136,-0.037714;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Armature_zubi} - AnimationKey { //Position - 2; - 136; - 0;3; 0.194650, 1.828288,-0.748248;;, - 1;3; 0.194650, 1.828288,-0.748248;;, - 2;3; 0.194650, 1.828288,-0.748248;;, - 3;3; 0.194649, 1.828288,-0.748248;;, - 4;3; 0.194650, 1.828288,-0.748248;;, - 5;3; 0.194650, 1.828288,-0.748248;;, - 6;3; 0.194649, 1.828288,-0.748248;;, - 7;3; 0.194650, 1.828288,-0.748248;;, - 8;3; 0.194650, 1.828288,-0.748248;;, - 9;3; 0.194650, 1.828288,-0.748248;;, - 10;3; 0.194650, 1.828288,-0.748248;;, - 11;3; 0.194650, 1.828288,-0.748248;;, - 12;3; 0.194650, 1.828288,-0.748248;;, - 13;3; 0.194650, 1.828288,-0.748248;;, - 14;3; 0.194650, 1.828288,-0.748248;;, - 15;3; 0.194650, 1.828288,-0.748248;;, - 16;3; 0.194650, 1.828288,-0.748248;;, - 17;3; 0.194650, 1.828288,-0.748248;;, - 18;3; 0.194650, 1.828288,-0.748248;;, - 19;3; 0.194650, 1.828288,-0.748248;;, - 20;3; 0.194650, 1.828288,-0.748248;;, - 21;3; 0.194650, 1.828288,-0.748248;;, - 22;3; 0.194650, 1.828288,-0.748248;;, - 23;3; 0.194650, 1.828288,-0.748248;;, - 24;3; 0.194650, 1.828288,-0.748248;;, - 25;3; 0.194650, 1.828288,-0.748248;;, - 26;3; 0.194650, 1.828288,-0.748248;;, - 27;3; 0.194650, 1.828288,-0.748248;;, - 28;3; 0.194650, 1.828288,-0.748248;;, - 29;3; 0.194650, 1.828288,-0.748248;;, - 30;3; 0.194650, 1.828288,-0.748248;;, - 31;3; 0.194650, 1.828288,-0.748248;;, - 32;3; 0.194650, 1.828288,-0.748248;;, - 33;3; 0.194650, 1.828288,-0.748248;;, - 34;3; 0.194650, 1.828288,-0.748248;;, - 35;3; 0.194650, 1.828288,-0.748248;;, - 36;3; 0.194650, 1.828288,-0.748248;;, - 37;3; 0.194650, 1.828288,-0.748248;;, - 38;3; 0.194650, 1.828288,-0.748248;;, - 39;3; 0.194650, 1.828288,-0.748248;;, - 40;3; 0.194650, 1.828288,-0.748248;;, - 41;3; 0.194650, 1.828288,-0.748248;;, - 42;3; 0.194650, 1.828288,-0.748248;;, - 43;3; 0.194650, 1.828288,-0.748248;;, - 44;3; 0.194650, 1.828288,-0.748248;;, - 45;3; 0.194651, 1.828288,-0.748248;;, - 46;3; 0.194650, 1.828288,-0.748248;;, - 47;3; 0.194650, 1.828288,-0.748248;;, - 48;3; 0.194650, 1.828288,-0.748248;;, - 49;3; 0.194650, 1.828288,-0.748248;;, - 50;3; 0.194650, 1.828288,-0.748248;;, - 51;3; 0.194650, 1.828288,-0.748248;;, - 52;3; 0.194650, 1.828288,-0.748248;;, - 53;3; 0.194650, 1.828288,-0.748248;;, - 54;3; 0.194650, 1.828288,-0.748248;;, - 55;3; 0.194650, 1.828288,-0.748248;;, - 56;3; 0.194650, 1.828288,-0.748248;;, - 57;3; 0.194650, 1.828288,-0.748248;;, - 58;3; 0.194650, 1.828288,-0.748248;;, - 59;3; 0.194650, 1.828288,-0.748248;;, - 60;3; 0.194650, 1.828288,-0.748248;;, - 61;3; 0.194650, 1.828288,-0.748248;;, - 62;3; 0.194650, 1.828288,-0.748248;;, - 63;3; 0.194651, 1.828288,-0.748249;;, - 64;3; 0.194650, 1.828288,-0.748248;;, - 65;3; 0.194650, 1.828288,-0.748248;;, - 66;3; 0.194650, 1.828288,-0.748248;;, - 67;3; 0.194650, 1.828288,-0.748248;;, - 68;3; 0.194650, 1.828288,-0.748248;;, - 69;3; 0.194650, 1.828288,-0.748248;;, - 70;3; 0.194650, 1.828288,-0.748248;;, - 71;3; 0.193824, 1.826865,-0.718989;;, - 72;3; 0.191380, 1.822641,-0.632490;;, - 73;3; 0.187655, 1.816186,-0.500793;;, - 74;3; 0.183428, 1.808853,-0.351470;;, - 75;3; 0.179702, 1.802391,-0.219807;;, - 76;3; 0.177257, 1.798159,-0.133348;;, - 77;3; 0.176431, 1.796732,-0.104106;;, - 78;3; 0.176538, 1.796916,-0.107892;;, - 79;3; 0.176887, 1.797517,-0.120255;;, - 80;3; 0.177464, 1.798515,-0.140691;;, - 81;3; 0.178165, 1.799728,-0.165500;;, - 82;3; 0.178872, 1.800950,-0.190476;;, - 83;3; 0.179610, 1.802228,-0.216583;;, - 84;3; 0.180459, 1.803698,-0.246602;;, - 85;3; 0.181415, 1.805352,-0.280384;;, - 86;3; 0.182468, 1.807176,-0.317636;;, - 87;3; 0.183607, 1.809149,-0.357892;;, - 88;3; 0.184812, 1.811236,-0.400490;;, - 89;3; 0.186059, 1.813397,-0.444573;;, - 90;3; 0.187319, 1.815581,-0.489110;;, - 91;3; 0.188559, 1.817731,-0.532954;;, - 92;3; 0.189747, 1.819790,-0.574925;;, - 93;3; 0.190850, 1.821702,-0.613904;;, - 94;3; 0.191840, 1.823419,-0.648918;;, - 95;3; 0.192697, 1.824904,-0.679203;;, - 96;3; 0.193405, 1.826131,-0.704224;;, - 97;3; 0.193955, 1.827084,-0.723676;;, - 98;3; 0.194345, 1.827759,-0.737448;;, - 99;3; 0.194575, 1.828157,-0.745585;;, - 100;3; 0.194650, 1.828288,-0.748248;;, - 101;3; 0.194650, 1.828288,-0.748248;;, - 102;3; 0.194650, 1.828288,-0.748248;;, - 103;3; 0.194650, 1.828288,-0.748248;;, - 104;3; 0.194650, 1.828288,-0.748248;;, - 105;3; 0.194650, 1.828288,-0.748248;;, - 106;3; 0.194650, 1.828288,-0.748248;;, - 107;3; 0.194650, 1.828288,-0.748248;;, - 108;3; 0.194650, 1.828288,-0.748248;;, - 109;3; 0.194650, 1.828288,-0.748248;;, - 110;3; 0.194650, 1.828288,-0.748248;;, - 111;3; 0.194650, 1.828288,-0.748248;;, - 112;3; 0.194650, 1.828288,-0.748248;;, - 113;3; 0.194650, 1.828288,-0.748248;;, - 114;3; 0.194650, 1.828288,-0.748248;;, - 115;3; 0.194651, 1.828288,-0.748248;;, - 116;3; 0.194651, 1.828288,-0.748248;;, - 117;3; 0.194650, 1.828288,-0.748248;;, - 118;3; 0.194650, 1.828288,-0.748248;;, - 119;3; 0.194650, 1.828288,-0.748248;;, - 120;3; 0.194650, 1.828288,-0.748248;;, - 121;3; 0.194650, 1.828288,-0.748248;;, - 122;3; 0.194650, 1.828288,-0.748248;;, - 123;3; 0.194650, 1.828288,-0.748248;;, - 124;3; 0.194650, 1.828288,-0.748248;;, - 125;3; 0.194650, 1.828288,-0.748248;;, - 126;3; 0.194650, 1.828288,-0.748248;;, - 127;3; 0.194650, 1.828288,-0.748248;;, - 128;3; 0.194650, 1.828288,-0.748248;;, - 129;3; 0.194650, 1.828288,-0.748248;;, - 130;3; 0.194650, 1.828288,-0.748248;;, - 131;3; 0.194650, 1.828288,-0.748248;;, - 132;3; 0.194650, 1.828288,-0.748248;;, - 133;3; 0.194650, 1.828288,-0.748248;;, - 134;3; 0.194650, 1.828288,-0.748248;;, - 135;3; 0.194650, 1.828288,-0.748248;;; - } - AnimationKey { //Rotation - 0; - 136; - 0;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 1;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 2;4; -0.992483,-0.108459, 0.004226,-0.037868;;, - 3;4; -0.987374,-0.131655, 0.005069,-0.038267;;, - 4;4; -0.979333,-0.168163, 0.006395,-0.038895;;, - 5;4; -0.969538,-0.212625, 0.008010,-0.039660;;, - 6;4; -0.959745,-0.257081, 0.009625,-0.040425;;, - 7;4; -0.951705,-0.293573, 0.010950,-0.041053;;, - 8;4; -0.946598,-0.316754, 0.011792,-0.041453;;, - 9;4; -0.944887,-0.324521, 0.012074,-0.041586;;, - 10;4; -0.946901,-0.314574, 0.011713,-0.041409;;, - 11;4; -0.952859,-0.285148, 0.010644,-0.040884;;, - 12;4; -0.961938,-0.240314, 0.009015,-0.040084;;, - 13;4; -0.972235,-0.189461, 0.007168,-0.039177;;, - 14;4; -0.981313,-0.144627, 0.005539,-0.038377;;, - 15;4; -0.987272,-0.115201, 0.004470,-0.037852;;, - 16;4; -0.989286,-0.105254, 0.004109,-0.037675;;, - 17;4; -0.986277,-0.121439, 0.004697,-0.037973;;, - 18;4; -0.977802,-0.167028, 0.006353,-0.038813;;, - 19;4; -0.966921,-0.225564, 0.008480,-0.039892;;, - 20;4; -0.958446,-0.271154, 0.010136,-0.040732;;, - 21;4; -0.955437,-0.287339, 0.010724,-0.041030;;, - 22;4; -0.959701,-0.261762, 0.009795,-0.040541;;, - 23;4; -0.971097,-0.194805, 0.007362,-0.039270;;, - 24;4; -0.983146,-0.127683, 0.004923,-0.038018;;, - 25;4; -0.989057,-0.101707, 0.003979,-0.037578;;, - 26;4; -0.990877,-0.101289, 0.003965,-0.037632;;, - 27;4; -0.992338,-0.100979, 0.003954,-0.037676;;, - 28;4; -0.993349,-0.100790, 0.003947,-0.037707;;, - 29;4; -0.993913,-0.100706, 0.003944,-0.037725;;, - 30;4; -0.994145,-0.100686, 0.003944,-0.037732;;, - 31;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 32;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 33;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 34;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 35;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 36;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 37;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 38;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 39;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 40;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 41;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 42;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 43;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 44;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 45;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 46;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 47;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 48;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 49;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 50;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 51;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 52;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 53;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 54;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 55;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 56;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 57;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 58;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 59;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 60;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 61;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 62;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 63;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 64;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 65;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 66;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 67;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 68;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 69;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 70;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 71;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 72;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 73;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 74;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 75;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 76;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 77;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 78;4; -0.991164,-0.115356, 0.004477,-0.037994;;, - 79;4; -0.982629,-0.156671, 0.005978,-0.038725;;, - 80;4; -0.971671,-0.209714, 0.007904,-0.039663;;, - 81;4; -0.963137,-0.251026, 0.009405,-0.040394;;, - 82;4; -0.960107,-0.265695, 0.009938,-0.040654;;, - 83;4; -0.960339,-0.264571, 0.009897,-0.040634;;, - 84;4; -0.961041,-0.261174, 0.009774,-0.040574;;, - 85;4; -0.962213,-0.255501, 0.009568,-0.040474;;, - 86;4; -0.963842,-0.247611, 0.009281,-0.040334;;, - 87;4; -0.965901,-0.237644, 0.008919,-0.040158;;, - 88;4; -0.968341,-0.225834, 0.008490,-0.039949;;, - 89;4; -0.971092,-0.212518, 0.008006,-0.039713;;, - 90;4; -0.974064,-0.198131, 0.007484,-0.039458;;, - 91;4; -0.977151,-0.183188, 0.006941,-0.039194;;, - 92;4; -0.980238,-0.168245, 0.006398,-0.038930;;, - 93;4; -0.983210,-0.153859, 0.005875,-0.038675;;, - 94;4; -0.985961,-0.140543, 0.005392,-0.038439;;, - 95;4; -0.988400,-0.128734, 0.004963,-0.038230;;, - 96;4; -0.990459,-0.118768, 0.004601,-0.038054;;, - 97;4; -0.992089,-0.110879, 0.004314,-0.037915;;, - 98;4; -0.993261,-0.105206, 0.004108,-0.037814;;, - 99;4; -0.993963,-0.101810, 0.003985,-0.037754;;, - 100;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 101;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 102;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 103;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 104;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 105;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 106;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 107;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 108;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 109;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 110;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 111;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 112;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 113;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 114;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 115;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 116;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 117;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 118;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 119;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 120;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 121;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 122;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 123;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 124;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 125;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 126;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 127;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 128;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 129;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 130;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 131;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 132;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 133;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 134;4; -0.994195,-0.100686, 0.003944,-0.037734;;, - 135;4; -0.994195,-0.100686, 0.003944,-0.037734;;; - } - AnimationKey { //Scale - 1; - 136; - 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;;; - } - } - Animation { - {Cube} - AnimationKey { //Position - 2; - 136; - 0;3; 0.274003,-0.357581,11.859126;;, - 1;3; 0.274003,-0.357581,11.859126;;, - 2;3; 0.274003,-0.357581,11.859126;;, - 3;3; 0.274003,-0.357581,11.859126;;, - 4;3; 0.274003,-0.357581,11.859126;;, - 5;3; 0.274003,-0.357581,11.859126;;, - 6;3; 0.274003,-0.357581,11.859126;;, - 7;3; 0.274003,-0.357581,11.859126;;, - 8;3; 0.274003,-0.357581,11.859126;;, - 9;3; 0.274003,-0.357581,11.859126;;, - 10;3; 0.274003,-0.357581,11.859126;;, - 11;3; 0.274003,-0.357581,11.859126;;, - 12;3; 0.274003,-0.357581,11.859126;;, - 13;3; 0.274003,-0.357581,11.859126;;, - 14;3; 0.274003,-0.357581,11.859126;;, - 15;3; 0.274003,-0.357581,11.859126;;, - 16;3; 0.274003,-0.357581,11.859126;;, - 17;3; 0.274003,-0.357581,11.859126;;, - 18;3; 0.274003,-0.357581,11.859126;;, - 19;3; 0.274003,-0.357581,11.859126;;, - 20;3; 0.274003,-0.357581,11.859126;;, - 21;3; 0.274003,-0.357581,11.859126;;, - 22;3; 0.274003,-0.357581,11.859126;;, - 23;3; 0.274003,-0.357581,11.859126;;, - 24;3; 0.274003,-0.357581,11.859126;;, - 25;3; 0.274003,-0.357581,11.859126;;, - 26;3; 0.274003,-0.357581,11.859126;;, - 27;3; 0.274003,-0.357581,11.859126;;, - 28;3; 0.274003,-0.357581,11.859126;;, - 29;3; 0.274003,-0.357581,11.859126;;, - 30;3; 0.274003,-0.357581,11.859126;;, - 31;3; 0.274003,-0.357581,11.859126;;, - 32;3; 0.274003,-0.357581,11.859126;;, - 33;3; 0.274003,-0.357581,11.859126;;, - 34;3; 0.274003,-0.357581,11.859126;;, - 35;3; 0.274003,-0.357581,11.859126;;, - 36;3; 0.274003,-0.357581,11.859126;;, - 37;3; 0.274003,-0.357581,11.859126;;, - 38;3; 0.274003,-0.357581,11.859126;;, - 39;3; 0.274003,-0.357581,11.859126;;, - 40;3; 0.274003,-0.357581,11.859126;;, - 41;3; 0.274003,-0.357581,11.859126;;, - 42;3; 0.274003,-0.357581,11.859126;;, - 43;3; 0.274003,-0.357581,11.859126;;, - 44;3; 0.274003,-0.357581,11.859126;;, - 45;3; 0.274003,-0.357581,11.859126;;, - 46;3; 0.274003,-0.357581,11.859126;;, - 47;3; 0.274003,-0.357581,11.859126;;, - 48;3; 0.274003,-0.357581,11.859126;;, - 49;3; 0.274003,-0.357581,11.859126;;, - 50;3; 0.274003,-0.357581,11.859126;;, - 51;3; 0.274003,-0.357581,11.859126;;, - 52;3; 0.274003,-0.357581,11.859126;;, - 53;3; 0.274003,-0.357581,11.859126;;, - 54;3; 0.274003,-0.357581,11.859126;;, - 55;3; 0.274003,-0.357581,11.859126;;, - 56;3; 0.274003,-0.357581,11.859126;;, - 57;3; 0.274003,-0.357581,11.859126;;, - 58;3; 0.274003,-0.357581,11.859126;;, - 59;3; 0.274003,-0.357581,11.859126;;, - 60;3; 0.274003,-0.357581,11.859126;;, - 61;3; 0.274003,-0.357581,11.859126;;, - 62;3; 0.274003,-0.357581,11.859126;;, - 63;3; 0.274003,-0.357581,11.859126;;, - 64;3; 0.274003,-0.357581,11.859126;;, - 65;3; 0.274003,-0.357581,11.859126;;, - 66;3; 0.274003,-0.357581,11.859126;;, - 67;3; 0.274003,-0.357581,11.859126;;, - 68;3; 0.274003,-0.357581,11.859126;;, - 69;3; 0.274003,-0.357581,11.859126;;, - 70;3; 0.274003,-0.357581,11.859126;;, - 71;3; 0.274003,-0.357581,11.859126;;, - 72;3; 0.274003,-0.357581,11.859126;;, - 73;3; 0.274003,-0.357581,11.859126;;, - 74;3; 0.274003,-0.357581,11.859126;;, - 75;3; 0.274003,-0.357581,11.859126;;, - 76;3; 0.274003,-0.357581,11.859126;;, - 77;3; 0.274003,-0.357581,11.859126;;, - 78;3; 0.274003,-0.357581,11.859126;;, - 79;3; 0.274003,-0.357581,11.859126;;, - 80;3; 0.274003,-0.357581,11.859126;;, - 81;3; 0.274003,-0.357581,11.859126;;, - 82;3; 0.274003,-0.357581,11.859126;;, - 83;3; 0.274003,-0.357581,11.859126;;, - 84;3; 0.274003,-0.357581,11.859126;;, - 85;3; 0.274003,-0.357581,11.859126;;, - 86;3; 0.274003,-0.357581,11.859126;;, - 87;3; 0.274003,-0.357581,11.859126;;, - 88;3; 0.274003,-0.357581,11.859126;;, - 89;3; 0.274003,-0.357581,11.859126;;, - 90;3; 0.274003,-0.357581,11.859126;;, - 91;3; 0.274003,-0.357581,11.859126;;, - 92;3; 0.274003,-0.357581,11.859126;;, - 93;3; 0.274003,-0.357581,11.859126;;, - 94;3; 0.274003,-0.357581,11.859126;;, - 95;3; 0.274003,-0.357581,11.859126;;, - 96;3; 0.274003,-0.357581,11.859126;;, - 97;3; 0.274003,-0.357581,11.859126;;, - 98;3; 0.274003,-0.357581,11.859126;;, - 99;3; 0.274003,-0.357581,11.859126;;, - 100;3; 0.274003,-0.357581,11.859126;;, - 101;3; 0.274003,-0.357581,11.859126;;, - 102;3; 0.274003,-0.357581,11.859126;;, - 103;3; 0.274003,-0.357581,11.859126;;, - 104;3; 0.274003,-0.357581,11.859126;;, - 105;3; 0.274003,-0.357581,11.859126;;, - 106;3; 0.274003,-0.357581,11.859126;;, - 107;3; 0.274003,-0.357581,11.859126;;, - 108;3; 0.274003,-0.357581,11.859126;;, - 109;3; 0.274003,-0.357581,11.859126;;, - 110;3; 0.274003,-0.357581,11.859126;;, - 111;3; 0.274003,-0.357581,11.859126;;, - 112;3; 0.274003,-0.357581,11.859126;;, - 113;3; 0.274003,-0.357581,11.859126;;, - 114;3; 0.274003,-0.357581,11.859126;;, - 115;3; 0.274003,-0.357581,11.859126;;, - 116;3; 0.274003,-0.357581,11.859126;;, - 117;3; 0.274003,-0.357581,11.859126;;, - 118;3; 0.274003,-0.357581,11.859126;;, - 119;3; 0.274003,-0.357581,11.859126;;, - 120;3; 0.274003,-0.357581,11.859126;;, - 121;3; 0.274003,-0.357581,11.859126;;, - 122;3; 0.274003,-0.357581,11.859126;;, - 123;3; 0.274003,-0.357581,11.859126;;, - 124;3; 0.274003,-0.357581,11.859126;;, - 125;3; 0.274003,-0.357581,11.859126;;, - 126;3; 0.274003,-0.357581,11.859126;;, - 127;3; 0.274003,-0.357581,11.859126;;, - 128;3; 0.274003,-0.357581,11.859126;;, - 129;3; 0.274003,-0.357581,11.859126;;, - 130;3; 0.274003,-0.357581,11.859126;;, - 131;3; 0.274003,-0.357581,11.859126;;, - 132;3; 0.274003,-0.357581,11.859126;;, - 133;3; 0.274003,-0.357581,11.859126;;, - 134;3; 0.274003,-0.357581,11.859126;;, - 135;3; 0.274003,-0.357581,11.859126;;; - } - AnimationKey { //Rotation - 0; - 136; - 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;;; - } - AnimationKey { //Scale - 1; - 136; - 0;3; 3.749036, 3.749036, 3.749036;;, - 1;3; 3.749036, 3.749036, 3.749036;;, - 2;3; 3.749036, 3.749036, 3.749036;;, - 3;3; 3.749036, 3.749036, 3.749036;;, - 4;3; 3.749036, 3.749036, 3.749036;;, - 5;3; 3.749036, 3.749036, 3.749036;;, - 6;3; 3.749036, 3.749036, 3.749036;;, - 7;3; 3.749036, 3.749036, 3.749036;;, - 8;3; 3.749036, 3.749036, 3.749036;;, - 9;3; 3.749036, 3.749036, 3.749036;;, - 10;3; 3.749036, 3.749036, 3.749036;;, - 11;3; 3.749036, 3.749036, 3.749036;;, - 12;3; 3.749036, 3.749036, 3.749036;;, - 13;3; 3.749036, 3.749036, 3.749036;;, - 14;3; 3.749036, 3.749036, 3.749036;;, - 15;3; 3.749036, 3.749036, 3.749036;;, - 16;3; 3.749036, 3.749036, 3.749036;;, - 17;3; 3.749036, 3.749036, 3.749036;;, - 18;3; 3.749036, 3.749036, 3.749036;;, - 19;3; 3.749036, 3.749036, 3.749036;;, - 20;3; 3.749036, 3.749036, 3.749036;;, - 21;3; 3.749036, 3.749036, 3.749036;;, - 22;3; 3.749036, 3.749036, 3.749036;;, - 23;3; 3.749036, 3.749036, 3.749036;;, - 24;3; 3.749036, 3.749036, 3.749036;;, - 25;3; 3.749036, 3.749036, 3.749036;;, - 26;3; 3.749036, 3.749036, 3.749036;;, - 27;3; 3.749036, 3.749036, 3.749036;;, - 28;3; 3.749036, 3.749036, 3.749036;;, - 29;3; 3.749036, 3.749036, 3.749036;;, - 30;3; 3.749036, 3.749036, 3.749036;;, - 31;3; 3.749036, 3.749036, 3.749036;;, - 32;3; 3.749036, 3.749036, 3.749036;;, - 33;3; 3.749036, 3.749036, 3.749036;;, - 34;3; 3.749036, 3.749036, 3.749036;;, - 35;3; 3.749036, 3.749036, 3.749036;;, - 36;3; 3.749036, 3.749036, 3.749036;;, - 37;3; 3.749036, 3.749036, 3.749036;;, - 38;3; 3.749036, 3.749036, 3.749036;;, - 39;3; 3.749036, 3.749036, 3.749036;;, - 40;3; 3.749036, 3.749036, 3.749036;;, - 41;3; 3.749036, 3.749036, 3.749036;;, - 42;3; 3.749036, 3.749036, 3.749036;;, - 43;3; 3.749036, 3.749036, 3.749036;;, - 44;3; 3.749036, 3.749036, 3.749036;;, - 45;3; 3.749036, 3.749036, 3.749036;;, - 46;3; 3.749036, 3.749036, 3.749036;;, - 47;3; 3.749036, 3.749036, 3.749036;;, - 48;3; 3.749036, 3.749036, 3.749036;;, - 49;3; 3.749036, 3.749036, 3.749036;;, - 50;3; 3.749036, 3.749036, 3.749036;;, - 51;3; 3.749036, 3.749036, 3.749036;;, - 52;3; 3.749036, 3.749036, 3.749036;;, - 53;3; 3.749036, 3.749036, 3.749036;;, - 54;3; 3.749036, 3.749036, 3.749036;;, - 55;3; 3.749036, 3.749036, 3.749036;;, - 56;3; 3.749036, 3.749036, 3.749036;;, - 57;3; 3.749036, 3.749036, 3.749036;;, - 58;3; 3.749036, 3.749036, 3.749036;;, - 59;3; 3.749036, 3.749036, 3.749036;;, - 60;3; 3.749036, 3.749036, 3.749036;;, - 61;3; 3.749036, 3.749036, 3.749036;;, - 62;3; 3.749036, 3.749036, 3.749036;;, - 63;3; 3.749036, 3.749036, 3.749036;;, - 64;3; 3.749036, 3.749036, 3.749036;;, - 65;3; 3.749036, 3.749036, 3.749036;;, - 66;3; 3.749036, 3.749036, 3.749036;;, - 67;3; 3.749036, 3.749036, 3.749036;;, - 68;3; 3.749036, 3.749036, 3.749036;;, - 69;3; 3.749036, 3.749036, 3.749036;;, - 70;3; 3.749036, 3.749036, 3.749036;;, - 71;3; 3.749036, 3.749036, 3.749036;;, - 72;3; 3.749036, 3.749036, 3.749036;;, - 73;3; 3.749036, 3.749036, 3.749036;;, - 74;3; 3.749036, 3.749036, 3.749036;;, - 75;3; 3.749036, 3.749036, 3.749036;;, - 76;3; 3.749036, 3.749036, 3.749036;;, - 77;3; 3.749036, 3.749036, 3.749036;;, - 78;3; 3.749036, 3.749036, 3.749036;;, - 79;3; 3.749036, 3.749036, 3.749036;;, - 80;3; 3.749036, 3.749036, 3.749036;;, - 81;3; 3.749036, 3.749036, 3.749036;;, - 82;3; 3.749036, 3.749036, 3.749036;;, - 83;3; 3.749036, 3.749036, 3.749036;;, - 84;3; 3.749036, 3.749036, 3.749036;;, - 85;3; 3.749036, 3.749036, 3.749036;;, - 86;3; 3.749036, 3.749036, 3.749036;;, - 87;3; 3.749036, 3.749036, 3.749036;;, - 88;3; 3.749036, 3.749036, 3.749036;;, - 89;3; 3.749036, 3.749036, 3.749036;;, - 90;3; 3.749036, 3.749036, 3.749036;;, - 91;3; 3.749036, 3.749036, 3.749036;;, - 92;3; 3.749036, 3.749036, 3.749036;;, - 93;3; 3.749036, 3.749036, 3.749036;;, - 94;3; 3.749036, 3.749036, 3.749036;;, - 95;3; 3.749036, 3.749036, 3.749036;;, - 96;3; 3.749036, 3.749036, 3.749036;;, - 97;3; 3.749036, 3.749036, 3.749036;;, - 98;3; 3.749036, 3.749036, 3.749036;;, - 99;3; 3.749036, 3.749036, 3.749036;;, - 100;3; 3.749036, 3.749036, 3.749036;;, - 101;3; 3.749036, 3.749036, 3.749036;;, - 102;3; 3.749036, 3.749036, 3.749036;;, - 103;3; 3.749036, 3.749036, 3.749036;;, - 104;3; 3.749036, 3.749036, 3.749036;;, - 105;3; 3.749036, 3.749036, 3.749036;;, - 106;3; 3.749036, 3.749036, 3.749036;;, - 107;3; 3.749036, 3.749036, 3.749036;;, - 108;3; 3.749036, 3.749036, 3.749036;;, - 109;3; 3.749036, 3.749036, 3.749036;;, - 110;3; 3.749036, 3.749036, 3.749036;;, - 111;3; 3.749036, 3.749036, 3.749036;;, - 112;3; 3.749036, 3.749036, 3.749036;;, - 113;3; 3.749036, 3.749036, 3.749036;;, - 114;3; 3.749036, 3.749036, 3.749036;;, - 115;3; 3.749036, 3.749036, 3.749036;;, - 116;3; 3.749036, 3.749036, 3.749036;;, - 117;3; 3.749036, 3.749036, 3.749036;;, - 118;3; 3.749036, 3.749036, 3.749036;;, - 119;3; 3.749036, 3.749036, 3.749036;;, - 120;3; 3.749036, 3.749036, 3.749036;;, - 121;3; 3.749036, 3.749036, 3.749036;;, - 122;3; 3.749036, 3.749036, 3.749036;;, - 123;3; 3.749036, 3.749036, 3.749036;;, - 124;3; 3.749036, 3.749036, 3.749036;;, - 125;3; 3.749036, 3.749036, 3.749036;;, - 126;3; 3.749036, 3.749036, 3.749036;;, - 127;3; 3.749036, 3.749036, 3.749036;;, - 128;3; 3.749036, 3.749036, 3.749036;;, - 129;3; 3.749036, 3.749036, 3.749036;;, - 130;3; 3.749036, 3.749036, 3.749036;;, - 131;3; 3.749036, 3.749036, 3.749036;;, - 132;3; 3.749036, 3.749036, 3.749036;;, - 133;3; 3.749036, 3.749036, 3.749036;;, - 134;3; 3.749036, 3.749036, 3.749036;;, - 135;3; 3.749036, 3.749036, 3.749036;;; - } - } -} //End of AnimationSet +} // End of Root diff --git a/games/default/files/mobs_animal/pig.lua b/games/default/files/mobs_animal/pig.lua index 4ff67ccb7..85da18eea 100644 --- a/games/default/files/mobs_animal/pig.lua +++ b/games/default/files/mobs_animal/pig.lua @@ -1,5 +1,6 @@ -- Warthog(Boar) by KrupnoPavel (MIT) -- Changed to Boar and tweaked by Kaadmy (WTFPL) and MoNTE48 (LGPLv3) + mobs:register_mob("mobs_animal:pig", { type = "animal", passive = false, diff --git a/games/default/files/mobs_animal/textures/mobs_cow.png b/games/default/files/mobs_animal/textures/mobs_cow.png index 3e6ed5b82..0b7aeeb4b 100644 Binary files a/games/default/files/mobs_animal/textures/mobs_cow.png and b/games/default/files/mobs_animal/textures/mobs_cow.png differ diff --git a/games/default/files/mobs_animal/textures/mobs_cow2.png b/games/default/files/mobs_animal/textures/mobs_cow2.png index 8952befaf..920074425 100644 Binary files a/games/default/files/mobs_animal/textures/mobs_cow2.png and b/games/default/files/mobs_animal/textures/mobs_cow2.png differ diff --git a/games/default/files/mobs_animal/textures/mobs_cow3.png b/games/default/files/mobs_animal/textures/mobs_cow3.png new file mode 100644 index 000000000..7cd9b0daf Binary files /dev/null and b/games/default/files/mobs_animal/textures/mobs_cow3.png differ diff --git a/games/default/files/mobs_animal/textures/mobs_sheep_cyan.png b/games/default/files/mobs_animal/textures/mobs_sheep_cyan.png index cb8d40ee9..33c1e7063 100644 Binary files a/games/default/files/mobs_animal/textures/mobs_sheep_cyan.png and b/games/default/files/mobs_animal/textures/mobs_sheep_cyan.png differ diff --git a/games/default/files/mobs_monster/models/mobs_zombie.b3d b/games/default/files/mobs_monster/models/mobs_zombie.b3d index 6ccb9a114..2b0e909e3 100644 Binary files a/games/default/files/mobs_monster/models/mobs_zombie.b3d and b/games/default/files/mobs_monster/models/mobs_zombie.b3d differ diff --git a/games/default/files/mobs_monster/skeleton.lua b/games/default/files/mobs_monster/skeleton.lua index 0db7e088f..be77d2ff8 100644 --- a/games/default/files/mobs_monster/skeleton.lua +++ b/games/default/files/mobs_monster/skeleton.lua @@ -1,7 +1,7 @@ mobs:register_mob("mobs_monster:skeleton", { type = "monster", visual = "mesh", - mesh = "mobs_zombie.x", + mesh = "mobs_zombie.b3d", textures = { {"mobs_skeleton.png"}, }, @@ -39,6 +39,16 @@ mobs:register_mob("mobs_monster:skeleton", { {name = "default:bone", chance = 2, min = 1, max = 1}, {name = "default:bone", chance = 2, min = 1, max = 1} }, + after_activate = function(self, staticdata, def, dtime) + -- replace skeleton using the old directx model + if self.mesh == "mobs_zombie.x" then + local pos = self.object:get_pos() + if pos then + minetest.add_entity(pos, self.name) + self.object:remove() + end + end + end, }) mobs:spawn({ @@ -52,4 +62,4 @@ mobs:spawn({ }) -- compatibility -mobs:alias_mob("mobs:skeleton", "mobs_monster:skeleton") \ No newline at end of file +mobs:alias_mob("mobs:skeleton", "mobs_monster:skeleton") diff --git a/games/default/files/mobs_monster/spider.lua b/games/default/files/mobs_monster/spider.lua index 84916b17d..a5ed1334a 100644 --- a/games/default/files/mobs_monster/spider.lua +++ b/games/default/files/mobs_monster/spider.lua @@ -37,7 +37,7 @@ mobs:register_mob("mobs_monster:spider", { light_damage = 0, animation = { speed_normal = 15, - speed_run = 15, + speed_run = 20, stand_start = 0, stand_end = 0, walk_start = 1, @@ -101,7 +101,7 @@ mobs:register_mob("mobs_monster:small_spider", { light_damage = 0, animation = { speed_normal = 15, - speed_run = 15, + speed_run = 20, stand_start = 0, stand_end = 0, walk_start = 1, diff --git a/games/default/files/signs/textures/signs_inventory.png b/games/default/files/signs/textures/signs_inventory.png index 793283ca2..3643d39df 100644 Binary files a/games/default/files/signs/textures/signs_inventory.png and b/games/default/files/signs/textures/signs_inventory.png differ diff --git a/games/default/files/stairs/init.lua b/games/default/files/stairs/init.lua index 8b18884a0..695cda741 100644 --- a/games/default/files/stairs/init.lua +++ b/games/default/files/stairs/init.lua @@ -171,19 +171,19 @@ local grp = {} --= Default Minetest stairs.register_all("wood", "default:wood", - {choppy=2,oddly_breakable_by_hand=2,flammable=3}, + {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3}, {"default_wood.png"}, "Wooden", stairs.wood) stairs.register_all("junglewood", "default:junglewood", - {choppy=2,oddly_breakable_by_hand=2,flammable=3, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 2, flammable = 3, not_in_craft_guide=1}, {"default_junglewood.png"}, "Jungle Wood", stairs.wood) stairs.register_all("pine_wood", "default:pinewood", - {choppy=2,oddly_breakable_by_hand=1,flammable=3, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, not_in_craft_guide=1}, {"default_pine_wood.png"}, "Pine Wood", stairs.wood) @@ -255,7 +255,7 @@ stairs.register_all("sandstone", "default:sandstone", stairs.stone) stairs.register_all("glass", "default:glass", - {cracky=3,oddly_breakable_by_hand=3, not_in_craft_guide=1}, + {cracky=3, oddly_breakable_by_hand = 3, not_in_craft_guide=1}, {"default_glass.png"}, "Glass", stairs.glass) @@ -612,7 +612,7 @@ end if minetest.get_modpath("ethereal") then stairs.register_all("bamboo_floor", "ethereal:bamboo_floor", - {snappy = 3, choppy = 3 , flammable=2, not_in_craft_guide=1}, + {snappy = 3, choppy = 3 , flammable = 2, not_in_craft_guide=1}, {"bamboo_floor.png"}, "Bamboo", stairs.wood) @@ -645,55 +645,55 @@ stairs.register_all("dry_dirt", "ethereal:dry_dirt", stairs.dirt) stairs.register_all("mushroom_trunk", "ethereal:mushroom_trunk", - {choppy=2,oddly_breakable_by_hand=1,flammable=2, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_craft_guide=1}, {"mushroom_trunk.png"}, "Mushroom Trunk", stairs.wood) stairs.register_all("mushroom", "ethereal:mushroom", - {choppy=2,oddly_breakable_by_hand=1,flammable=2, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, not_in_craft_guide=1}, {"mushroom_block.png"}, "Mushroom Top", stairs.wood) stairs.register_all("frost_wood", "ethereal:frost_wood", - {choppy=2,oddly_breakable_by_hand=1,put_out_fire=1, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1,put_out_fire=1, not_in_craft_guide=1}, {"frost_wood.png"}, "Frost Wood", stairs.wood) stairs.register_all("yellow_wood", "ethereal:yellow_wood", - {choppy=2,oddly_breakable_by_hand=1,put_out_fire=1, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1,put_out_fire=1, not_in_craft_guide=1}, {"yellow_wood.png"}, "Healing Tree Wood", stairs.wood) stairs.register_all("palm_wood", "ethereal:palm_wood", - {choppy=2,oddly_breakable_by_hand=1,flammable=3, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, not_in_craft_guide=1}, {"moretrees_palm_wood.png"}, "Palm Wood", stairs.wood) stairs.register_all("banana_wood", "ethereal:banana_wood", - {choppy=2,oddly_breakable_by_hand=1,flammable=3, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, not_in_craft_guide=1}, {"banana_wood.png"}, "Banana Wood", stairs.wood) stairs.register_all("willow_wood", "ethereal:willow_wood", - {choppy=2,oddly_breakable_by_hand=1,flammable=3, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, not_in_craft_guide=1}, {"willow_wood.png"}, "Willow Wood", stairs.wood) stairs.register_all("redwood_wood", "ethereal:redwood_wood", - {choppy=2,oddly_breakable_by_hand=1,flammable=3, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, not_in_craft_guide=1}, {"redwood_wood.png"}, "Redwood Wood", stairs.wood) stairs.register_all("acacia_wood", "ethereal:acacia_wood", - {choppy=2,oddly_breakable_by_hand=1,flammable=3, not_in_craft_guide=1}, + {choppy = 2, oddly_breakable_by_hand = 1, flammable = 3, not_in_craft_guide=1}, {"moretrees_acacia_wood.png"}, "Acacia Wood", stairs.wood) diff --git a/games/default/files/throwing/textures/throwing_arrow_inv.png b/games/default/files/throwing/textures/throwing_arrow_inv.png index 2646ffcbd..4f9e81b6b 100644 Binary files a/games/default/files/throwing/textures/throwing_arrow_inv.png and b/games/default/files/throwing/textures/throwing_arrow_inv.png differ diff --git a/games/default/files/default/sounds/tnt_explode.ogg b/games/default/files/tnt/sounds/tnt_explode.ogg similarity index 100% rename from games/default/files/default/sounds/tnt_explode.ogg rename to games/default/files/tnt/sounds/tnt_explode.ogg diff --git a/games/default/files/default/textures/default_tnt_bottom.png b/games/default/files/tnt/textures/default_tnt_bottom.png similarity index 100% rename from games/default/files/default/textures/default_tnt_bottom.png rename to games/default/files/tnt/textures/default_tnt_bottom.png diff --git a/games/default/files/default/textures/default_tnt_side.png b/games/default/files/tnt/textures/default_tnt_side.png similarity index 100% rename from games/default/files/default/textures/default_tnt_side.png rename to games/default/files/tnt/textures/default_tnt_side.png diff --git a/games/default/files/default/textures/default_tnt_top.png b/games/default/files/tnt/textures/default_tnt_top.png similarity index 100% rename from games/default/files/default/textures/default_tnt_top.png rename to games/default/files/tnt/textures/default_tnt_top.png diff --git a/games/default/files/wallet/init.lua b/games/default/files/wallet/init.lua index 6347e3377..467455281 100644 --- a/games/default/files/wallet/init.lua +++ b/games/default/files/wallet/init.lua @@ -106,7 +106,7 @@ for i = 0, 15 do drawtype = "nodebox", tiles = {"default_cobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wall", node_box = { type = "fixed", @@ -123,7 +123,7 @@ minetest.register_node("wallet:wall_0", { }, tiles = {"default_cobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wall", node_box = { type = "fixed", @@ -139,7 +139,7 @@ minetest.register_node("wallet:wall_16", { }, tiles = {"default_cobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wall", node_box = { type = "fixed", @@ -155,7 +155,7 @@ minetest.register_node("wallet:wall_21", { }, tiles = {"default_cobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wall", node_box = { type = "fixed", @@ -165,10 +165,9 @@ minetest.register_node("wallet:wall_21", { minetest.register_node("wallet:wall", { description = "Cobblestone Wall", - paramtype = "light", + paramtype = "light", tiles = {"default_cobble.png"}, - inventory_image = "cobblestone_wallet.png", - stack_max = 64, + inventory_image = "cobblestone_wallet.png", groups = {building =1}, drawtype = "nodebox", node_box = { @@ -185,11 +184,11 @@ minetest.register_node("wallet:wall", { minetest.register_craft({ - output = 'wallet:wall 6', - recipe = { - {'default:cobble', 'default:cobble', 'default:cobble'}, + output = 'wallet:wall 6', + recipe = { + {'default:cobble', 'default:cobble', 'default:cobble'}, {'default:cobble', 'default:cobble', 'default:cobble'} - } + } }) -- Mossy wallet @@ -229,7 +228,7 @@ for i = 0, 15 do }, tiles = {"default_mossycobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wallmossy", node_box = { type = "fixed", @@ -246,7 +245,7 @@ minetest.register_node("wallet:wallmossy_0", { }, tiles = {"default_mossycobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wallmossy", node_box = { type = "fixed", @@ -262,7 +261,7 @@ minetest.register_node("wallet:wallmossy_16", { }, tiles = {"default_mossycobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wallmossy", node_box = { type = "fixed", @@ -278,7 +277,7 @@ minetest.register_node("wallet:wallmossy_21", { }, tiles = {"default_mossycobble.png"}, paramtype = "light", - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3,fences=1}, drop = "wallet:wallmossy", node_box = { type = "fixed", @@ -295,7 +294,6 @@ minetest.register_node("wallet:wallmossy", { }, tiles = {"default_mossycobble.png"}, inventory_image = "cobblestonemossy_wallet.png", - stack_max = 64, groups = {building = 1}, drawtype = "nodebox", node_box = { diff --git a/games/default/files/watch/textures/watch_10.png b/games/default/files/watch/textures/watch_10.png index 8306eb20a..1305e8070 100644 Binary files a/games/default/files/watch/textures/watch_10.png and b/games/default/files/watch/textures/watch_10.png differ diff --git a/games/default/files/watch/textures/watch_2.png b/games/default/files/watch/textures/watch_2.png index 470287bb2..b398c41e4 100644 Binary files a/games/default/files/watch/textures/watch_2.png and b/games/default/files/watch/textures/watch_2.png differ diff --git a/games/default/files/watch/textures/watch_3.png b/games/default/files/watch/textures/watch_3.png index 85442e093..234612497 100644 Binary files a/games/default/files/watch/textures/watch_3.png and b/games/default/files/watch/textures/watch_3.png differ diff --git a/games/default/files/watch/textures/watch_8.png b/games/default/files/watch/textures/watch_8.png index 20ddc7ede..ab43e1641 100644 Binary files a/games/default/files/watch/textures/watch_8.png and b/games/default/files/watch/textures/watch_8.png differ diff --git a/games/default/files/watch/textures/watch_9.png b/games/default/files/watch/textures/watch_9.png index 9c75c0763..9cf39c0ff 100644 Binary files a/games/default/files/watch/textures/watch_9.png and b/games/default/files/watch/textures/watch_9.png differ diff --git a/games/default/files/xpanes/init.lua b/games/default/files/xpanes/init.lua index 8fd047453..8dc763f70 100644 --- a/games/default/files/xpanes/init.lua +++ b/games/default/files/xpanes/init.lua @@ -80,7 +80,7 @@ function pane(node, desc, dropitem, recipeitem, color) tiles = {"xpanes_top_"..node..""..color..".png", "xpanes_top_"..node..""..color..".png", texture}, paramtype = "light", use_texture_alpha = true, - groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3, decorative = 1}, + groups = {snappy = 2, cracky=3, oddly_breakable_by_hand = 3, decorative = 1}, drop = dropitem, node_box = { type = "fixed", @@ -98,7 +98,6 @@ function pane(node, desc, dropitem, recipeitem, color) tiles = {"xpanes_pane_"..node..""..color..".png"}, inventory_image = "xpanes_pane_"..node..""..color..".png", paramtype = "light", - stack_max = 64, use_texture_alpha = true, wield_image = "xpanes_pane_"..node..""..color..".png", node_placement_prediction = "", diff --git a/textures/base/bg_local.png b/textures/base/bg_local.png index dca16eb6e..e296ba7ac 100644 Binary files a/textures/base/bg_local.png and b/textures/base/bg_local.png differ diff --git a/textures/base/close.png b/textures/base/close.png new file mode 100644 index 000000000..aee97290b Binary files /dev/null and b/textures/base/close.png differ diff --git a/textures/base/local_creative_true_btn.png b/textures/base/local_creative_true_btn.png index afc0933fe..591ec6d88 100644 Binary files a/textures/base/local_creative_true_btn.png and b/textures/base/local_creative_true_btn.png differ