From da66780a569712c23ae4f2996cfb4608a9f9d69d Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Fri, 1 Apr 2016 20:02:19 -0400 Subject: copy all standard Dreambuilder mods in from the old subgame (exactly as last supplied there, updates to these mods will follow later) --- ufos/README.txt | 8 + ufos/modpack.txt | 0 ufos/ufos/depends.txt | 1 + ufos/ufos/furnace.lua | 105 + ufos/ufos/init.lua | 255 +++ ufos/ufos/models/ufo.blend | Bin 0 -> 520668 bytes ufos/ufos/models/ufo.png | Bin 0 -> 5516 bytes ufos/ufos/models/ufo.x | 2252 ++++++++++++++++++++++ ufos/ufos/models/ufo_0.png | Bin 0 -> 5516 bytes ufos/ufos/models/ufo_1.png | Bin 0 -> 5524 bytes ufos/ufos/models/ufo_2.png | Bin 0 -> 5526 bytes ufos/ufos/models/ufo_3.png | Bin 0 -> 5526 bytes ufos/ufos/models/ufo_4.png | Bin 0 -> 5526 bytes ufos/ufos/models/ufo_5.png | Bin 0 -> 5526 bytes ufos/ufos/models/ufo_6.png | Bin 0 -> 5525 bytes ufos/ufos/models/ufo_7.png | Bin 0 -> 5522 bytes ufos/ufos/models/ufo_8.png | Bin 0 -> 5516 bytes ufos/ufos/textures/ufos_box.png | Bin 0 -> 12312 bytes ufos/ufos/textures/ufos_furnace_front.png | Bin 0 -> 216 bytes ufos/ufos/textures/ufos_furnace_front_active.png | Bin 0 -> 298 bytes ufos/ufos/textures/ufos_inventory.png | Bin 0 -> 53038 bytes 21 files changed, 2621 insertions(+) create mode 100644 ufos/README.txt create mode 100644 ufos/modpack.txt create mode 100644 ufos/ufos/depends.txt create mode 100644 ufos/ufos/furnace.lua create mode 100644 ufos/ufos/init.lua create mode 100644 ufos/ufos/models/ufo.blend create mode 100644 ufos/ufos/models/ufo.png create mode 100644 ufos/ufos/models/ufo.x create mode 100644 ufos/ufos/models/ufo_0.png create mode 100644 ufos/ufos/models/ufo_1.png create mode 100644 ufos/ufos/models/ufo_2.png create mode 100644 ufos/ufos/models/ufo_3.png create mode 100644 ufos/ufos/models/ufo_4.png create mode 100644 ufos/ufos/models/ufo_5.png create mode 100644 ufos/ufos/models/ufo_6.png create mode 100644 ufos/ufos/models/ufo_7.png create mode 100644 ufos/ufos/models/ufo_8.png create mode 100644 ufos/ufos/textures/ufos_box.png create mode 100644 ufos/ufos/textures/ufos_furnace_front.png create mode 100644 ufos/ufos/textures/ufos_furnace_front_active.png create mode 100644 ufos/ufos/textures/ufos_inventory.png (limited to 'ufos') diff --git a/ufos/README.txt b/ufos/README.txt new file mode 100644 index 0000000..74eb515 --- /dev/null +++ b/ufos/README.txt @@ -0,0 +1,8 @@ +minetest-ufos +============= + +UFOs mod for minetest +License: WTFPL +Credits: + - Zeg9 for code + - Melkor for model and texture diff --git a/ufos/modpack.txt b/ufos/modpack.txt new file mode 100644 index 0000000..e69de29 diff --git a/ufos/ufos/depends.txt b/ufos/ufos/depends.txt new file mode 100644 index 0000000..4ad96d5 --- /dev/null +++ b/ufos/ufos/depends.txt @@ -0,0 +1 @@ +default diff --git a/ufos/ufos/furnace.lua b/ufos/ufos/furnace.lua new file mode 100644 index 0000000..6e3d2a1 --- /dev/null +++ b/ufos/ufos/furnace.lua @@ -0,0 +1,105 @@ + +ufos.fuel = "default:obsidian_shard" +ufos.fuel_time = 10 + +ufos.furnace_inactive_formspec = + "size[8,5.5]".. + "list[current_name;fuel;3.5,0;1,1;]".. + "list[current_player;main;0,1.5;8,4;]".. + "label[4.5,0;Fuel needed: "..ufos.fuel.."]".. + "label[0,1;Press run (E) inside your UFO.]".. + "label[4,1;You need to park it next to this.]" + + +minetest.register_node("ufos:furnace", { + description = "UFO charging device", + tiles = {"default_steel_block.png", "default_steel_block.png", "default_steel_block.png", + "default_steel_block.png", "default_steel_block.png", "default_steel_block.png^ufos_furnace_front.png"}, + paramtype2 = "facedir", + groups = {cracky=2}, + legacy_facedir_simple = true, + sounds = default.node_sound_stone_defaults(), + on_construct = function(pos) + local meta = minetest.env:get_meta(pos) + meta:set_string("formspec", ufos.furnace_inactive_formspec) + meta:set_string("infotext", "UFO charging device") + local inv = meta:get_inventory() + inv:set_size("fuel", 1) + end, + can_dig = function(pos,player) + local meta = minetest.env:get_meta(pos); + local inv = meta:get_inventory() + if not inv:is_empty("fuel") then + return false + end + return true + end, +}) + +minetest.register_node("ufos:furnace_active", { + description = "UFO charging device", + tiles = {"default_steel_block.png", "default_steel_block.png", "default_steel_block.png", + "default_steel_block.png", "default_steel_block.png", "default_steel_block.png^ufos_furnace_front.png^ufos_furnace_front_active.png"}, + paramtype2 = "facedir", + light_source = 8, + drop = "ufos:furnace", + groups = {cracky=2, not_in_creative_inventory=1}, + legacy_facedir_simple = true, + sounds = default.node_sound_stone_defaults(), + on_construct = function(pos) + local meta = minetest.env:get_meta(pos) + meta:set_string("formspec", ufos.furnace_inactive_formspec) + meta:set_string("infotext", "UFO charging device") + local inv = meta:get_inventory() + inv:set_size("fuel", 1) + end, + can_dig = function(pos,player) + local meta = minetest.env:get_meta(pos); + local inv = meta:get_inventory() + if not inv:is_empty("fuel") then + return false + end + return true + end, +}) + +function hacky_swap_node(pos,name) + local node = minetest.env:get_node(pos) + local meta = minetest.env:get_meta(pos) + local meta0 = meta:to_table() + if node.name == name then + return + end + node.name = name + local meta0 = meta:to_table() + minetest.env:set_node(pos,node) + meta = minetest.env:get_meta(pos) + meta:from_table(meta0) +end + +minetest.register_abm({ + nodenames = {"ufos:furnace","ufos:furnace_active"}, + interval = .25, + chance = 1, + action = function(pos, node, active_object_count, active_object_count_wider) + local meta = minetest.env:get_meta(pos) + local inv = meta:get_inventory() + local stack = inv:get_stack("fuel",1) + if stack:get_name() == ufos.fuel then + inv:remove_item("fuel",ItemStack(ufos.fuel)) + meta:set_int("charge",meta:get_int("charge")+1) + meta:set_string("formspec", ufos.furnace_inactive_formspec + .. "label[0,0;Charge: "..meta:get_int("charge")) + end + end, +}) + +minetest.register_craft( { + output = 'ufos:furnace', + recipe = { + { "default:steel_ingot", "default:obsidian", "default:steel_ingot"}, + { "default:obsidian", "default:furnace", "default:obsidian"}, + { "default:steel_ingot", "default:obsidian", "default:steel_ingot"}, + }, +}) + diff --git a/ufos/ufos/init.lua b/ufos/ufos/init.lua new file mode 100644 index 0000000..cb68e65 --- /dev/null +++ b/ufos/ufos/init.lua @@ -0,0 +1,255 @@ + +ufos = {} + +local floor_pos = function(pos) + return {x=math.floor(pos.x),y=math.floor(pos.y),z=math.floor(pos.z)} +end + +local UFO_SPEED = 1 +local UFO_TURN_SPEED = 2 +local UFO_MAX_SPEED = 10 +local UFO_FUEL_USE = .01 + +ufos.fuel_from_wear = function(wear) + local fuel + if wear == 0 then + fuel = 0 + else + fuel = (65535-(wear-1))*100/65535 + end + return fuel +end + +ufos.wear_from_fuel = function(fuel) + local wear = (100-(fuel))*65535/100+1 + if wear > 65535 then wear = 0 end + return wear +end + +ufos.get_fuel = function(self) + return self.fuel +end + +ufos.set_fuel = function(self,fuel,object) + self.fuel = fuel +end + +ufos.ufo_to_item = function(self) + local wear = ufos.wear_from_fuel(ufos.get_fuel(self)) + return {name="ufos:ufo",wear=wear} +end + +ufos.ufo_from_item = function(itemstack,placer,pointed_thing) + -- set owner + ufos.next_owner = placer:get_player_name() + -- restore the fuel inside the item + local wear = itemstack:get_wear() + ufos.set_fuel(ufos.ufo,ufos.fuel_from_wear(wear)) + -- add the entity + e = minetest.env:add_entity(pointed_thing.above, "ufos:ufo") + -- remove the item + itemstack:take_item() + -- reset owner for next ufo + ufos.next_owner = "" +end + +ufos.check_owner = function(self, clicker) + if self.owner_name ~= "" and clicker:get_player_name() ~= self.owner_name then + minetest.chat_send_player(clicker:get_player_name(), "This UFO is owned by "..self.owner_name.." !") + return false + elseif self.owner_name == "" then + minetest.chat_send_player(clicker:get_player_name(), "This UFO was not protected, you are now its owner !") + self.owner_name = clicker:get_player_name() + end + return true +end + + +ufos.next_owner = "" +ufos.ufo = { + physical = true, + collisionbox = {-1.5,-.5,-1.5, 1.5,2,1.5}, + visual = "mesh", + mesh = "ufo.x", + textures = {"ufo_0.png"}, + + driver = nil, + owner_name = "", + v = 0, + fuel = 0, + fueli = 0 +} +function ufos.ufo:on_rightclick (clicker) + if not clicker or not clicker:is_player() then + return + end + if self.driver and clicker == self.driver then + self.driver = nil + clicker:set_detach() + elseif not self.driver then + if ufos.check_owner(self,clicker) then + self.driver = clicker + clicker:set_attach(self.object, "", {x=0,y=7.5,z=0}, {x=0,y=0,z=0}) + end + end +end + +function ufos.ufo:on_activate (staticdata, dtime_s) + if ufos.next_owner ~= "" then + self.owner_name = ufos.next_owner + ufos.next_owner = "" + else + local data = staticdata:split(';') + if data and data[1] and data[2] then + self.owner_name = data[1] + self.fuel = tonumber(data[2]) + end + end + self.object:set_armor_groups({immortal=1}) +end + +function ufos.ufo:on_punch (puncher, time_from_last_punch, tool_capabilities, direction) + if puncher and puncher:is_player() then + if ufos.check_owner(self,puncher) then + puncher:get_inventory():add_item("main", ufos.ufo_to_item(self)) + self.object:remove() + end + end +end + +function ufos.ufo:on_step (dtime) + local fuel = ufos.get_fuel(self) + if self.driver then + local ctrl = self.driver:get_player_control() + local vel = self.object:getvelocity() + if fuel == nil then fuel = 0 end + if fuel > 0 and ctrl.up then + vel.x = vel.x + math.cos(self.object:getyaw()+math.pi/2)*UFO_SPEED + vel.z = vel.z + math.sin(self.object:getyaw()+math.pi/2)*UFO_SPEED + fuel = fuel - UFO_FUEL_USE + else + vel.x = vel.x*.99 + vel.z = vel.z*.99 + end + if ctrl.down then + vel.x = vel.x*.9 + vel.z = vel.z*.9 + end + if fuel > 0 and ctrl.jump then + vel.y = vel.y+UFO_SPEED + fuel = fuel - UFO_FUEL_USE + elseif fuel > 0 and ctrl.sneak then + vel.y = vel.y-UFO_SPEED + fuel = fuel - UFO_FUEL_USE + else + vel.y = vel.y*.9 + end + if vel.x > UFO_MAX_SPEED then vel.x = UFO_MAX_SPEED end + if vel.x < -UFO_MAX_SPEED then vel.x = -UFO_MAX_SPEED end + if vel.y > UFO_MAX_SPEED then vel.y = UFO_MAX_SPEED end + if vel.y < -UFO_MAX_SPEED then vel.y = -UFO_MAX_SPEED end + if vel.z > UFO_MAX_SPEED then vel.z = UFO_MAX_SPEED end + if vel.z < -UFO_MAX_SPEED then vel.z = -UFO_MAX_SPEED end + self.object:setvelocity(vel) + if ctrl.left then + self.object:setyaw(self.object:getyaw()+math.pi/120*UFO_TURN_SPEED) + end + if ctrl.right then + self.object:setyaw(self.object:getyaw()-math.pi/120*UFO_TURN_SPEED) + end + if ctrl.aux1 then + local pos = self.object:getpos() + local t = {{x=2,z=0},{x=-2,z=0},{x=0,z=2},{x=0,z=-2}} + for _, i in ipairs(t) do + pos.x = pos.x + i.x; pos.z = pos.z + i.z; + if minetest.env:get_node(pos).name == "ufos:furnace" then + meta = minetest.env:get_meta(pos) + if fuel < 100 and meta:get_int("charge") > 0 then + fuel = fuel + 1 + meta:set_int("charge",meta:get_int("charge")-1) + meta:set_string("formspec", ufos.furnace_inactive_formspec + .. "label[0,0;Charge: "..meta:get_int("charge")) + end + end + pos.x = pos.x - i.x; pos.z = pos.z - i.z; + end + end + end + + if fuel < 0 then fuel = 0 end + if fuel > 100 then fuel = 100 end + if self.fueli ~= math.floor(fuel*8/100) then + self.fueli = math.floor(fuel*8/100) + print(self.fueli) + self.textures = {"ufo_"..self.fueli..".png"} + self.object:set_properties(self) + end + ufos.set_fuel(self,fuel) +end + +function ufos.ufo:get_staticdata() + return self.owner_name..";"..tostring(self.fuel) +end + +minetest.register_entity("ufos:ufo", ufos.ufo) + + +minetest.register_tool("ufos:ufo", { + description = "ufo", + inventory_image = "ufos_inventory.png", + wield_image = "ufos_inventory.png", + tool_capabilities = {load=0,max_drop_level=0, groupcaps={fleshy={times={}, uses=100, maxlevel=0}}}, + + on_place = function(itemstack, placer, pointed_thing) + if pointed_thing.type ~= "node" then + return + end + + -- Call on_rightclick if the pointed node defines it + if placer and not placer:get_player_control().sneak then + local n = minetest.get_node(pointed_thing.under) + local nn = n.name + if minetest.registered_nodes[nn] and minetest.registered_nodes[nn].on_rightclick then + return minetest.registered_nodes[nn].on_rightclick(pointed_thing.under, n, placer, itemstack) or itemstack + end + end + + ufos.ufo_from_item(itemstack,placer,pointed_thing) + return itemstack + end, +}) + +minetest.register_craft( { + output = 'ufos:ufo', + recipe = { + { "", "default:glass", ""}, + { "default:mese_crystal_fragment", "", "default:mese_crystal_fragment"}, + { "default:steelblock", "default:mese", "default:steelblock"}, + }, +}) + + +-- ufos box kept for compatibility only +minetest.register_node("ufos:box", { + description = "UFO BOX (you hacker you!)", + tiles = {"ufos_box.png"}, + groups = {not_in_creative_inventory=1}, + on_rightclick = function(pos, node, clicker, itemstack) + meta = minetest.env:get_meta(pos) + if meta:get_string("owner") == clicker:get_player_name() then + -- set owner + ufos.next_owner = meta:get_string("owner") + -- restore the fuel inside the node + ufos.set_fuel(ufos.ufo,meta:get_int("fuel")) + -- add the entity + e = minetest.env:add_entity(pos, "ufos:ufo") + -- remove the node + minetest.env:remove_node(pos) + -- reset owner for next ufo + ufos.next_owner = "" + end + end, +}) + +dofile(minetest.get_modpath("ufos").."/furnace.lua") + diff --git a/ufos/ufos/models/ufo.blend b/ufos/ufos/models/ufo.blend new file mode 100644 index 0000000..fe187c3 Binary files /dev/null and b/ufos/ufos/models/ufo.blend differ diff --git a/ufos/ufos/models/ufo.png b/ufos/ufos/models/ufo.png new file mode 100644 index 0000000..82689fe Binary files /dev/null and b/ufos/ufos/models/ufo.png differ diff --git a/ufos/ufos/models/ufo.x b/ufos/ufos/models/ufo.x new file mode 100644 index 0000000..e360d91 --- /dev/null +++ b/ufos/ufos/models/ufo.x @@ -0,0 +1,2252 @@ +xof 0303txt 0032 + +Frame Root { + FrameTransformMatrix { + 1.000000, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000, 1.000000, 0.000000, + 0.000000, 1.000000,-0.000000, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Frame Cube_002 { + FrameTransformMatrix { + 0.000000,-10.171859, 0.000000, 0.000000, + 10.171859, 0.000000, 0.000000, 0.000000, + 0.000000, 0.000000,10.171859, 0.000000, + 0.000000, 0.000000, 0.000000, 1.000000;; + } + Mesh { //Cube_000 Mesh + 632; + 1.125000; 0.500000; 0.125000;, + 1.125000;-0.500000; 0.125000;, + 1.125000;-0.500000; 0.312500;, + 1.125000; 0.500000; 0.312500;, + 0.500000; 0.500000; 0.125000;, + 1.125000; 0.500000; 0.125000;, + 1.125000; 0.500000; 0.312500;, + 0.500000; 0.500000; 0.312500;, + 1.125000; 0.500000; 0.687500;, + 1.125000;-0.500000; 0.687500;, + 1.125000;-0.500000; 1.000000;, + 1.125000; 0.500000; 1.000000;, + 1.500000; 0.500000; 0.312500;, + 1.500000; 0.500000; 0.687500;, + 1.125000; 0.500000; 0.687500;, + 1.125000; 0.500000; 0.312500;, + 1.500000; 0.500000; 0.312500;, + 1.500000;-0.500000; 0.312500;, + 1.500000;-0.500000; 0.687500;, + 1.500000; 0.500000; 0.687500;, + 1.500000; 0.500000; 0.687500;, + 1.500000;-0.500000; 0.687500;, + 1.125000;-0.500000; 0.687500;, + 1.125000; 0.500000; 0.687500;, + 1.500000;-0.500000; 0.687500;, + 1.500000;-0.500000; 0.312500;, + 1.125000;-0.500000; 0.312500;, + 1.125000;-0.500000; 0.687500;, + 1.500000;-0.500000; 0.312500;, + 1.500000; 0.500000; 0.312500;, + 1.125000; 0.500000; 0.312500;, + 1.125000;-0.500000; 0.312500;, + -1.125000;-0.500000; 0.125000;, + -1.125000; 0.500000; 0.125000;, + -1.125000; 0.500000; 0.312500;, + -1.125000;-0.500000; 0.312500;, + -0.500000;-0.500000; 0.125000;, + -1.125000;-0.500000; 0.125000;, + -1.125000;-0.500000; 0.312500;, + -0.500000;-0.500000; 0.312500;, + -0.500000;-0.500000; 0.125000;, + -0.500000; 0.500000; 0.125000;, + -1.125000; 0.500000; 0.125000;, + -1.125000;-0.500000; 0.125000;, + -1.125000;-0.500000; 0.687500;, + -1.125000; 0.500000; 0.687500;, + -1.125000; 0.500000; 1.000000;, + -1.125000;-0.500000; 1.000000;, + -1.500000;-0.500000; 0.312500;, + -1.500000;-0.500000; 0.687500;, + -1.125000;-0.500000; 0.687500;, + -1.125000;-0.500000; 0.312500;, + -0.500000;-0.500000; 0.687500;, + -1.125000;-0.500000; 0.687500;, + -1.125000;-0.500000; 1.000000;, + -0.500000;-0.500000; 1.000000;, + -1.500000;-0.500000; 0.312500;, + -1.500000; 0.500000; 0.312500;, + -1.500000; 0.500000; 0.687500;, + -1.500000;-0.500000; 0.687500;, + -1.500000;-0.500000; 0.687500;, + -1.500000; 0.500000; 0.687500;, + -1.125000; 0.500000; 0.687500;, + -1.125000;-0.500000; 0.687500;, + -1.500000; 0.500000; 0.687500;, + -1.500000; 0.500000; 0.312500;, + -1.125000; 0.500000; 0.312500;, + -1.125000; 0.500000; 0.687500;, + -1.500000; 0.500000; 0.312500;, + -1.500000;-0.500000; 0.312500;, + -1.125000;-0.500000; 0.312500;, + -1.125000; 0.500000; 0.312500;, + 0.500000;-1.125000; 0.125000;, + -0.500000;-1.125000; 0.125000;, + -0.500000;-1.125000; 0.312500;, + 0.500000;-1.125000; 0.312500;, + 0.500000;-0.500000; 0.125000;, + 0.500000;-1.125000; 0.125000;, + 0.500000;-1.125000; 0.312500;, + 0.500000;-0.500000; 0.312500;, + 0.500000;-1.125000; 0.687500;, + -0.500000;-1.125000; 0.687500;, + -0.500000;-1.125000; 1.000000;, + 0.500000;-1.125000; 1.000000;, + 0.500000;-1.500000; 0.312500;, + 0.500000;-1.500000; 0.687500;, + 0.500000;-1.125000; 0.687500;, + 0.500000;-1.125000; 0.312500;, + 0.500000;-0.500000; 0.687500;, + 0.500000;-1.125000; 0.687500;, + 0.500000;-1.125000; 1.000000;, + 0.500000;-0.500000; 1.000000;, + 0.500000;-1.500000; 0.312500;, + -0.500000;-1.500000; 0.312500;, + -0.500000;-1.500000; 0.687500;, + 0.500000;-1.500000; 0.687500;, + 0.500000;-1.500000; 0.687500;, + -0.500000;-1.500000; 0.687500;, + -0.500000;-1.125000; 0.687500;, + 0.500000;-1.125000; 0.687500;, + -0.500000;-1.500000; 0.687500;, + -0.500000;-1.500000; 0.312500;, + -0.500000;-1.125000; 0.312500;, + -0.500000;-1.125000; 0.687500;, + -0.500000;-1.500000; 0.312500;, + 0.500000;-1.500000; 0.312500;, + 0.500000;-1.125000; 0.312500;, + -0.500000;-1.125000; 0.312500;, + -0.500000; 1.125000; 0.125000;, + 0.500000; 1.125000; 0.125000;, + 0.500000; 1.125000; 0.312500;, + -0.500000; 1.125000; 0.312500;, + -0.500000; 1.125000; 0.687500;, + 0.500000; 1.125000; 0.687500;, + 0.500000; 1.125000; 1.000000;, + -0.500000; 1.125000; 1.000000;, + -0.500000; 1.500000; 0.312500;, + -0.500000; 1.500000; 0.687500;, + -0.500000; 1.125000; 0.687500;, + -0.500000; 1.125000; 0.312500;, + -0.500000; 1.500000; 0.312500;, + 0.500000; 1.500000; 0.312500;, + 0.500000; 1.500000; 0.687500;, + -0.500000; 1.500000; 0.687500;, + -0.500000; 1.500000; 0.687500;, + 0.500000; 1.500000; 0.687500;, + 0.500000; 1.125000; 0.687500;, + -0.500000; 1.125000; 0.687500;, + 0.500000; 1.500000; 0.687500;, + 0.500000; 1.500000; 0.312500;, + 0.500000; 1.125000; 0.312500;, + 0.500000; 1.125000; 0.687500;, + 0.500000; 1.500000; 0.312500;, + -0.500000; 1.500000; 0.312500;, + -0.500000; 1.125000; 0.312500;, + 0.500000; 1.125000; 0.312500;, + -1.125000;-0.500000; 0.687500;, + -1.125000;-1.125000; 0.687500;, + -1.125000;-1.125000; 0.312500;, + -1.125000;-0.500000; 0.312500;, + -1.125000;-1.125000; 0.687500;, + -0.500000;-1.125000; 0.687500;, + -0.500000;-1.125000; 0.312500;, + -1.125000;-1.125000; 0.312500;, + -1.125000; 1.125000; 0.312500;, + -1.125000; 1.125000; 0.687500;, + -1.125000; 0.500000; 0.687500;, + -1.125000; 0.500000; 0.312500;, + -1.125000; 1.125000; 0.687500;, + -1.125000; 1.125000; 0.312500;, + -0.500000; 1.125000; 0.312500;, + -0.500000; 1.125000; 0.687500;, + 1.125000; 1.125000; 0.312500;, + 1.125000; 1.125000; 0.687500;, + 0.500000; 1.125000; 0.687500;, + 0.500000; 1.125000; 0.312500;, + 1.125000; 1.125000; 0.687500;, + 1.125000; 1.125000; 0.312500;, + 1.125000; 0.500000; 0.312500;, + 1.125000; 0.500000; 0.687500;, + 1.125000;-1.125000; 0.312500;, + 1.125000;-1.125000; 0.687500;, + 1.125000;-0.500000; 0.687500;, + 1.125000;-0.500000; 0.312500;, + 0.500000;-1.125000; 0.687500;, + 1.125000;-1.125000; 0.687500;, + 1.125000;-1.125000; 0.312500;, + 0.500000;-1.125000; 0.312500;, + 1.125000;-0.500000; 0.125000;, + 0.500000;-0.500000; 0.125000;, + 0.500000;-0.500000; 0.312500;, + 1.125000;-0.500000; 0.312500;, + 0.500000;-0.500000; 0.125000;, + 0.500000; 0.500000; 0.125000;, + 0.500000; 0.500000; 0.312500;, + 0.500000;-0.500000; 0.312500;, + 0.500000; 0.500000; 0.125000;, + 0.500000;-0.500000; 0.125000;, + 1.125000;-0.500000; 0.125000;, + 1.125000; 0.500000; 0.125000;, + 1.125000; 0.500000; 1.000000;, + 1.125000;-0.500000; 1.000000;, + 0.500000;-0.500000; 1.000000;, + 0.500000; 0.500000; 1.000000;, + 1.125000;-0.500000; 0.687500;, + 0.500000;-0.500000; 0.687500;, + 0.500000;-0.500000; 1.000000;, + 1.125000;-0.500000; 1.000000;, + 0.500000;-0.500000; 0.687500;, + 0.500000; 0.500000; 0.687500;, + 0.500000; 0.500000; 1.000000;, + 0.500000;-0.500000; 1.000000;, + 0.500000;-0.500000; 0.312500;, + 0.500000; 0.500000; 0.312500;, + 0.500000; 0.500000; 0.687500;, + 0.500000;-0.500000; 0.687500;, + 0.500000; 0.500000; 0.687500;, + 1.125000; 0.500000; 0.687500;, + 1.125000; 0.500000; 1.000000;, + 0.500000; 0.500000; 1.000000;, + -1.125000; 0.500000; 0.125000;, + -0.500000; 0.500000; 0.125000;, + -0.500000; 0.500000; 0.312500;, + -1.125000; 0.500000; 0.312500;, + -0.500000; 0.500000; 0.125000;, + -0.500000;-0.500000; 0.125000;, + -0.500000;-0.500000; 0.312500;, + -0.500000; 0.500000; 0.312500;, + -1.125000;-0.500000; 1.000000;, + -1.125000; 0.500000; 1.000000;, + -0.500000; 0.500000; 1.000000;, + -0.500000;-0.500000; 1.000000;, + -1.125000; 0.500000; 0.687500;, + -0.500000; 0.500000; 0.687500;, + -0.500000; 0.500000; 1.000000;, + -1.125000; 0.500000; 1.000000;, + -0.500000; 0.500000; 0.687500;, + -0.500000;-0.500000; 0.687500;, + -0.500000;-0.500000; 1.000000;, + -0.500000; 0.500000; 1.000000;, + -0.500000; 0.500000; 0.312500;, + -0.500000;-0.500000; 0.312500;, + -0.500000;-0.500000; 0.687500;, + -0.500000; 0.500000; 0.687500;, + -0.500000;-1.125000; 0.125000;, + -0.500000;-0.500000; 0.125000;, + -0.500000;-0.500000; 0.312500;, + -0.500000;-1.125000; 0.312500;, + -0.500000;-0.500000; 0.125000;, + 0.500000;-0.500000; 0.125000;, + 0.500000;-0.500000; 0.312500;, + -0.500000;-0.500000; 0.312500;, + 0.500000;-0.500000; 0.125000;, + -0.500000;-0.500000; 0.125000;, + -0.500000;-1.125000; 0.125000;, + 0.500000;-1.125000; 0.125000;, + 0.500000;-1.125000; 1.000000;, + -0.500000;-1.125000; 1.000000;, + -0.500000;-0.500000; 1.000000;, + 0.500000;-0.500000; 1.000000;, + -0.500000;-1.125000; 0.687500;, + -0.500000;-0.500000; 0.687500;, + -0.500000;-0.500000; 1.000000;, + -0.500000;-1.125000; 1.000000;, + -0.500000;-0.500000; 0.687500;, + 0.500000;-0.500000; 0.687500;, + 0.500000;-0.500000; 1.000000;, + -0.500000;-0.500000; 1.000000;, + -0.500000;-0.500000; 0.312500;, + 0.500000;-0.500000; 0.312500;, + 0.500000;-0.500000; 0.687500;, + -0.500000;-0.500000; 0.687500;, + 0.500000; 1.125000; 0.125000;, + 0.500000; 0.500000; 0.125000;, + 0.500000; 0.500000; 0.312500;, + 0.500000; 1.125000; 0.312500;, + 0.500000; 0.500000; 0.125000;, + -0.500000; 0.500000; 0.125000;, + -0.500000; 0.500000; 0.312500;, + 0.500000; 0.500000; 0.312500;, + -0.500000; 0.500000; 0.125000;, + -0.500000; 1.125000; 0.125000;, + -0.500000; 1.125000; 0.312500;, + -0.500000; 0.500000; 0.312500;, + -0.500000; 0.500000; 0.125000;, + 0.500000; 0.500000; 0.125000;, + 0.500000; 1.125000; 0.125000;, + -0.500000; 1.125000; 0.125000;, + -0.500000; 1.125000; 1.000000;, + 0.500000; 1.125000; 1.000000;, + 0.500000; 0.500000; 1.000000;, + -0.500000; 0.500000; 1.000000;, + 0.500000; 1.125000; 0.687500;, + 0.500000; 0.500000; 0.687500;, + 0.500000; 0.500000; 1.000000;, + 0.500000; 1.125000; 1.000000;, + 0.500000; 0.500000; 0.687500;, + -0.500000; 0.500000; 0.687500;, + -0.500000; 0.500000; 1.000000;, + 0.500000; 0.500000; 1.000000;, + 0.500000; 0.500000; 0.312500;, + -0.500000; 0.500000; 0.312500;, + -0.500000; 0.500000; 0.687500;, + 0.500000; 0.500000; 0.687500;, + -0.500000; 0.500000; 0.687500;, + -0.500000; 1.125000; 0.687500;, + -0.500000; 1.125000; 1.000000;, + -0.500000; 0.500000; 1.000000;, + -1.125000; 0.500000; 0.687500;, + -1.125000; 1.125000; 0.687500;, + -0.500000; 1.125000; 0.687500;, + -0.500000; 0.500000; 0.687500;, + -1.125000;-0.500000; 0.687500;, + -0.500000;-0.500000; 0.687500;, + -0.500000;-1.125000; 0.687500;, + -1.125000;-1.125000; 0.687500;, + 0.500000;-0.500000; 0.687500;, + 1.125000;-0.500000; 0.687500;, + 1.125000;-1.125000; 0.687500;, + 0.500000;-1.125000; 0.687500;, + 0.500000; 1.125000; 0.687500;, + 1.125000; 1.125000; 0.687500;, + 1.125000; 0.500000; 0.687500;, + 0.500000; 0.500000; 0.687500;, + 0.500000; 1.125000; 0.312500;, + 0.500000; 0.500000; 0.312500;, + 1.125000; 0.500000; 0.312500;, + 1.125000; 1.125000; 0.312500;, + -1.125000; 0.500000; 0.312500;, + -0.500000; 0.500000; 0.312500;, + -0.500000; 1.125000; 0.312500;, + -1.125000; 1.125000; 0.312500;, + -0.500000;-1.125000; 0.312500;, + -0.500000;-0.500000; 0.312500;, + -1.125000;-0.500000; 0.312500;, + -1.125000;-1.125000; 0.312500;, + 1.125000;-0.500000; 0.312500;, + 0.500000;-0.500000; 0.312500;, + 0.500000;-1.125000; 0.312500;, + 1.125000;-1.125000; 0.312500;, + -0.500000;-0.500000; 1.000000;, + -0.500000;-0.500000; 1.687500;, + 0.500000;-0.500000; 1.687500;, + 0.500000;-0.500000; 1.000000;, + 0.500000;-0.500000; 1.000000;, + 0.500000;-0.500000; 1.687500;, + 0.500000; 0.500000; 1.687500;, + 0.500000; 0.500000; 1.000000;, + -0.500000; 0.500000; 1.000000;, + -0.500000; 0.500000; 1.687500;, + -0.500000;-0.500000; 1.687500;, + -0.500000;-0.500000; 1.000000;, + 0.500000; 0.500000; 1.000000;, + 0.500000; 0.500000; 1.687500;, + -0.500000; 0.500000; 1.687500;, + -0.500000; 0.500000; 1.000000;, + -0.500000;-0.500000; 1.687500;, + -0.375000;-0.375000; 1.687500;, + 0.375000;-0.375000; 1.687500;, + 0.500000;-0.500000; 1.687500;, + 0.500000; 0.500000; 1.687500;, + 0.375000; 0.375000; 1.687500;, + -0.375000; 0.375000; 1.687500;, + -0.500000; 0.500000; 1.687500;, + 0.500000;-0.500000; 1.687500;, + 0.375000;-0.375000; 1.687500;, + 0.375000; 0.375000; 1.687500;, + 0.500000; 0.500000; 1.687500;, + -0.500000; 0.500000; 1.687500;, + -0.375000; 0.375000; 1.687500;, + -0.375000;-0.375000; 1.687500;, + -0.500000;-0.500000; 1.687500;, + -0.375000;-0.375000; 1.687500;, + -0.375000;-0.375000; 1.875000;, + 0.375000;-0.375000; 1.875000;, + 0.375000;-0.375000; 1.687500;, + 0.375000; 0.375000; 1.687500;, + 0.375000; 0.375000; 1.875000;, + -0.375000; 0.375000; 1.875000;, + -0.375000; 0.375000; 1.687500;, + 0.375000;-0.375000; 1.687500;, + 0.375000;-0.375000; 1.875000;, + 0.375000; 0.375000; 1.875000;, + 0.375000; 0.375000; 1.687500;, + -0.375000; 0.375000; 1.687500;, + -0.375000; 0.375000; 1.875000;, + -0.375000;-0.375000; 1.875000;, + -0.375000;-0.375000; 1.687500;, + -0.375000; 0.375000; 1.875000;, + -0.250000; 0.250000; 1.875000;, + -0.250000;-0.250000; 1.875000;, + -0.375000;-0.375000; 1.875000;, + -0.375000;-0.375000; 1.875000;, + -0.250000;-0.250000; 1.875000;, + 0.250000;-0.250000; 1.875000;, + 0.375000;-0.375000; 1.875000;, + 0.375000; 0.375000; 1.875000;, + 0.250000; 0.250000; 1.875000;, + -0.250000; 0.250000; 1.875000;, + -0.375000; 0.375000; 1.875000;, + 0.375000;-0.375000; 1.875000;, + 0.250000;-0.250000; 1.875000;, + 0.250000; 0.250000; 1.875000;, + 0.375000; 0.375000; 1.875000;, + 0.250000;-0.250000; 1.875000;, + 0.250000;-0.250000; 2.000000;, + 0.250000; 0.250000; 2.000000;, + 0.250000; 0.250000; 1.875000;, + -0.250000; 0.250000; 1.875000;, + -0.250000; 0.250000; 2.000000;, + -0.250000;-0.250000; 2.000000;, + -0.250000;-0.250000; 1.875000;, + -0.250000;-0.250000; 1.875000;, + -0.250000;-0.250000; 2.000000;, + 0.250000;-0.250000; 2.000000;, + 0.250000;-0.250000; 1.875000;, + 0.250000; 0.250000; 1.875000;, + 0.250000; 0.250000; 2.000000;, + -0.250000; 0.250000; 2.000000;, + -0.250000; 0.250000; 1.875000;, + -0.250000;-0.250000; 2.000000;, + -0.250000; 0.250000; 2.000000;, + 0.250000; 0.250000; 2.000000;, + 0.250000;-0.250000; 2.000000;, + 0.437500;-0.312500; 1.187500;, + 0.187500;-0.312500; 1.187500;, + 0.187500; 0.312500; 1.187500;, + 0.437500; 0.312500; 1.187500;, + -0.187500;-0.312500; 0.625000;, + -0.187500; 0.312500; 0.625000;, + 0.187500; 0.312500; 0.625000;, + 0.187500;-0.312500; 0.625000;, + 0.187500;-0.312500; 0.625000;, + 0.187500; 0.312500; 0.625000;, + 0.187500; 0.312500; 1.187500;, + 0.187500;-0.312500; 1.187500;, + 0.437500;-0.312500; 0.625000;, + 0.187500;-0.312500; 0.625000;, + 0.187500;-0.312500; 1.187500;, + 0.437500;-0.312500; 1.187500;, + 0.187500; 0.312500; 0.625000;, + 0.437500; 0.312500; 0.625000;, + 0.437500; 0.312500; 1.187500;, + 0.187500; 0.312500; 1.187500;, + 0.437500; 0.312500; 0.625000;, + 0.437500;-0.312500; 0.625000;, + 0.437500;-0.312500; 1.187500;, + 0.437500; 0.312500; 1.187500;, + 0.437500;-0.312500; 0.562500;, + 0.187500;-0.312500; 0.562500;, + 0.187500;-0.312500; 0.625000;, + 0.437500;-0.312500; 0.625000;, + 0.187500; 0.312500; 0.562500;, + 0.437500; 0.312500; 0.562500;, + 0.437500; 0.312500; 0.625000;, + 0.187500; 0.312500; 0.625000;, + -0.187500;-0.312500; 0.562500;, + -0.187500; 0.312500; 0.562500;, + -0.187500; 0.312500; 0.625000;, + -0.187500;-0.312500; 0.625000;, + -0.187500; 0.312500; 0.625000;, + -0.187500; 0.312500; 0.562500;, + 0.187500; 0.312500; 0.562500;, + 0.187500; 0.312500; 0.625000;, + -0.187500;-0.312500; 0.562500;, + -0.187500;-0.312500; 0.625000;, + 0.187500;-0.312500; 0.625000;, + 0.187500;-0.312500; 0.562500;, + -0.312500;-0.312500; 1.062500;, + -0.500000;-0.312500; 1.062500;, + -0.500000; 0.312500; 1.062500;, + -0.312500; 0.312500; 1.062500;, + -0.500000;-0.312500; 0.812500;, + -0.500000; 0.312500; 0.812500;, + -0.500000; 0.312500; 1.062500;, + -0.500000;-0.312500; 1.062500;, + -0.312500;-0.312500; 0.812500;, + -0.500000;-0.312500; 0.812500;, + -0.500000;-0.312500; 1.062500;, + -0.312500;-0.312500; 1.062500;, + -0.500000; 0.312500; 0.812500;, + -0.312500; 0.312500; 0.812500;, + -0.312500; 0.312500; 1.062500;, + -0.500000; 0.312500; 1.062500;, + -0.312500; 0.312500; 0.812500;, + -0.312500;-0.312500; 0.812500;, + -0.312500;-0.312500; 1.062500;, + -0.312500; 0.312500; 1.062500;, + -0.250000; 0.187500; 1.187500;, + -0.312500; 0.187500; 1.187500;, + -0.312500; 0.250000; 1.187500;, + -0.250000; 0.250000; 1.187500;, + -0.312500; 0.187500; 0.812500;, + -0.312500; 0.250000; 0.812500;, + -0.312500; 0.250000; 1.187500;, + -0.312500; 0.187500; 1.187500;, + -0.250000; 0.187500; 0.812500;, + -0.312500; 0.187500; 0.812500;, + -0.312500; 0.187500; 1.187500;, + -0.250000; 0.187500; 1.187500;, + -0.312500; 0.250000; 0.812500;, + -0.250000; 0.250000; 0.812500;, + -0.250000; 0.250000; 1.187500;, + -0.312500; 0.250000; 1.187500;, + -0.250000; 0.250000; 0.812500;, + -0.250000; 0.187500; 0.812500;, + -0.250000; 0.187500; 1.187500;, + -0.250000; 0.250000; 1.187500;, + -0.312500; 0.187500; 0.812500;, + -0.250000; 0.187500; 0.812500;, + -0.250000; 0.250000; 0.812500;, + -0.312500; 0.250000; 0.812500;, + -0.250000;-0.250000; 1.187500;, + -0.312500;-0.250000; 1.187500;, + -0.312500;-0.187500; 1.187500;, + -0.250000;-0.187500; 1.187500;, + -0.312500;-0.250000; 0.812500;, + -0.312500;-0.187500; 0.812500;, + -0.312500;-0.187500; 1.187500;, + -0.312500;-0.250000; 1.187500;, + -0.250000;-0.250000; 0.812500;, + -0.312500;-0.250000; 0.812500;, + -0.312500;-0.250000; 1.187500;, + -0.250000;-0.250000; 1.187500;, + -0.312500;-0.187500; 0.812500;, + -0.250000;-0.187500; 0.812500;, + -0.250000;-0.187500; 1.187500;, + -0.312500;-0.187500; 1.187500;, + -0.250000;-0.187500; 0.812500;, + -0.250000;-0.250000; 0.812500;, + -0.250000;-0.250000; 1.187500;, + -0.250000;-0.187500; 1.187500;, + -0.312500;-0.250000; 0.812500;, + -0.250000;-0.250000; 0.812500;, + -0.250000;-0.187500; 0.812500;, + -0.312500;-0.187500; 0.812500;, + -0.500000;-0.500000; 0.000000;, + -0.500000; 0.500000; 0.000000;, + -0.500000; 0.500000; 0.125000;, + -0.500000;-0.500000; 0.125000;, + 0.937500; 0.687500; 0.312500;, + 0.687500; 0.687500; 0.312500;, + 0.687500; 0.937500; 0.312500;, + 0.937500; 0.937500; 0.312500;, + 0.937500;-0.937500; 0.312500;, + 0.687500;-0.937500; 0.312500;, + 0.687500;-0.687500; 0.312500;, + 0.937500;-0.687500; 0.312500;, + -0.687500; 0.687500; 0.312500;, + -0.937500; 0.687500; 0.312500;, + -0.937500; 0.937500; 0.312500;, + -0.687500; 0.937500; 0.312500;, + -0.687500;-0.937500; 0.312500;, + -0.937500;-0.937500; 0.312500;, + -0.937500;-0.687500; 0.312500;, + -0.687500;-0.687500; 0.312500;, + 0.687500; 0.937500; 0.250000;, + 0.687500; 0.687500; 0.250000;, + 0.937500; 0.687500; 0.250000;, + 0.937500; 0.937500; 0.250000;, + 0.687500;-0.687500; 0.250000;, + 0.687500;-0.937500; 0.250000;, + 0.937500;-0.937500; 0.250000;, + 0.937500;-0.687500; 0.250000;, + -0.937500; 0.937500; 0.250000;, + -0.937500; 0.687500; 0.250000;, + -0.687500; 0.687500; 0.250000;, + -0.687500; 0.937500; 0.250000;, + -0.937500;-0.687500; 0.250000;, + -0.937500;-0.937500; 0.250000;, + -0.687500;-0.937500; 0.250000;, + -0.687500;-0.687500; 0.250000;, + -0.937500;-0.687500; 0.250000;, + -0.687500;-0.687500; 0.250000;, + -0.687500;-0.687500; 0.312500;, + -0.937500;-0.687500; 0.312500;, + 0.687500;-0.937500; 0.250000;, + 0.687500;-0.687500; 0.250000;, + 0.687500;-0.687500; 0.312500;, + 0.687500;-0.937500; 0.312500;, + 0.687500; 0.937500; 0.250000;, + 0.937500; 0.937500; 0.250000;, + 0.937500; 0.937500; 0.312500;, + 0.687500; 0.937500; 0.312500;, + -0.687500;-0.687500; 0.250000;, + -0.687500;-0.937500; 0.250000;, + -0.687500;-0.937500; 0.312500;, + -0.687500;-0.687500; 0.312500;, + -0.687500; 0.687500; 0.250000;, + -0.937500; 0.687500; 0.250000;, + -0.937500; 0.687500; 0.312500;, + -0.687500; 0.687500; 0.312500;, + 0.937500; 0.937500; 0.250000;, + 0.937500; 0.687500; 0.250000;, + 0.937500; 0.687500; 0.312500;, + 0.937500; 0.937500; 0.312500;, + -0.937500;-0.937500; 0.250000;, + -0.937500;-0.687500; 0.250000;, + -0.937500;-0.687500; 0.312500;, + -0.937500;-0.937500; 0.312500;, + -0.937500; 0.937500; 0.250000;, + -0.687500; 0.937500; 0.250000;, + -0.687500; 0.937500; 0.312500;, + -0.937500; 0.937500; 0.312500;, + 0.687500; 0.687500; 0.250000;, + 0.687500; 0.937500; 0.250000;, + 0.687500; 0.937500; 0.312500;, + 0.687500; 0.687500; 0.312500;, + -0.687500; 0.937500; 0.250000;, + -0.687500; 0.687500; 0.250000;, + -0.687500; 0.687500; 0.312500;, + -0.687500; 0.937500; 0.312500;, + 0.937500;-0.937500; 0.250000;, + 0.687500;-0.937500; 0.250000;, + 0.687500;-0.937500; 0.312500;, + 0.937500;-0.937500; 0.312500;, + -0.937500; 0.687500; 0.250000;, + -0.937500; 0.937500; 0.250000;, + -0.937500; 0.937500; 0.312500;, + -0.937500; 0.687500; 0.312500;, + 0.687500;-0.687500; 0.250000;, + 0.937500;-0.687500; 0.250000;, + 0.937500;-0.687500; 0.312500;, + 0.687500;-0.687500; 0.312500;, + -0.687500;-0.937500; 0.250000;, + -0.937500;-0.937500; 0.250000;, + -0.937500;-0.937500; 0.312500;, + -0.687500;-0.937500; 0.312500;, + 0.937500;-0.687500; 0.250000;, + 0.937500;-0.937500; 0.250000;, + 0.937500;-0.937500; 0.312500;, + 0.937500;-0.687500; 0.312500;, + 0.937500; 0.687500; 0.250000;, + 0.687500; 0.687500; 0.250000;, + 0.687500; 0.687500; 0.312500;, + 0.937500; 0.687500; 0.312500;, + -0.500000; 0.500000; 0.000000;, + -0.500000;-0.500000; 0.000000;, + 0.500000;-0.500000; 0.000000;, + 0.500000; 0.500000; 0.000000;, + 0.500000;-0.500000; 0.000000;, + -0.500000;-0.500000; 0.000000;, + -0.500000;-0.500000; 0.125000;, + 0.500000;-0.500000; 0.125000;, + 0.500000; 0.500000; 0.000000;, + 0.500000;-0.500000; 0.000000;, + 0.500000;-0.500000; 0.125000;, + 0.500000; 0.500000; 0.125000;, + -0.500000; 0.500000; 0.000000;, + 0.500000; 0.500000; 0.000000;, + 0.500000; 0.500000; 0.125000;, + -0.500000; 0.500000; 0.125000;; + 158; + 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;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;; + MeshNormals { //Cube_000 Normals + 632; + 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;, + 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;-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;, + -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;, + -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; 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;, + 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;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000; 0.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;, + -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;, + 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.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;, + 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; 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;, + -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;, + -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;, + -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;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -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; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 0.000000; 0.000000; 1.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 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;, + 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; 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;, + 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;, + -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; 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; 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;, + 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;, + -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;, + -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;, + -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;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + -1.000000;-0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -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.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; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000; 0.000000;-1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + 0.000000;-0.000000; 1.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + 0.000000;-1.000000; 0.000000;, + -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.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; 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;, + -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;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + 1.000000; 0.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + 0.000000; 1.000000;-0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + -1.000000; 0.000000; 0.000000;, + 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;, + 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.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;, + -0.000000; 1.000000; 0.000000;; + 158; + 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;, + 4;464;465;466;467;, + 4;468;469;470;471;, + 4;472;473;474;475;, + 4;476;477;478;479;, + 4;480;481;482;483;, + 4;484;485;486;487;, + 4;488;489;490;491;, + 4;492;493;494;495;, + 4;496;497;498;499;, + 4;500;501;502;503;, + 4;504;505;506;507;, + 4;508;509;510;511;, + 4;512;513;514;515;, + 4;516;517;518;519;, + 4;520;521;522;523;, + 4;524;525;526;527;, + 4;528;529;530;531;, + 4;532;533;534;535;, + 4;536;537;538;539;, + 4;540;541;542;543;, + 4;544;545;546;547;, + 4;548;549;550;551;, + 4;552;553;554;555;, + 4;556;557;558;559;, + 4;560;561;562;563;, + 4;564;565;566;567;, + 4;568;569;570;571;, + 4;572;573;574;575;, + 4;576;577;578;579;, + 4;580;581;582;583;, + 4;584;585;586;587;, + 4;588;589;590;591;, + 4;592;593;594;595;, + 4;596;597;598;599;, + 4;600;601;602;603;, + 4;604;605;606;607;, + 4;608;609;610;611;, + 4;612;613;614;615;, + 4;616;617;618;619;, + 4;620;621;622;623;, + 4;624;625;626;627;, + 4;628;629;630;631;; + } //End of Cube_000 Normals + MeshMaterialList { //Cube_000 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 Cube_000 Material List + MeshTextureCoords { //Cube_000 UV Coordinates + 632; + 0.250000; 0.968750;, + 0.500000; 0.968750;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.500000; 0.968750;, + 0.656250; 0.968750;, + 0.656250; 0.921875;, + 0.500000; 0.921875;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.750000;, + 0.250000; 0.750000;, + 0.750000; 0.921875;, + 0.750000; 0.828125;, + 0.656250; 0.828125;, + 0.656250; 0.921875;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.000000;, + 0.500000; 0.000000;, + 0.500000; 0.093750;, + 0.250000; 0.093750;, + 0.750000; 0.828125;, + 0.750000; 0.921875;, + 0.656250; 0.921875;, + 0.656250; 0.828125;, + 0.500000; 0.000000;, + 0.250000; 0.000000;, + 0.250000; 0.093750;, + 0.500000; 0.093750;, + 0.500000; 0.968750;, + 0.250000; 0.968750;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.250000; 0.968750;, + 0.093750; 0.968750;, + 0.093750; 0.921875;, + 0.250000; 0.921875;, + 0.500000; 0.500000;, + 0.250000; 0.500000;, + 0.250000; 0.656250;, + 0.500000; 0.656250;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.750000;, + 0.500000; 0.750000;, + 0.000000; 0.921875;, + 0.000000; 0.828125;, + 0.093750; 0.828125;, + 0.093750; 0.921875;, + 0.250000; 0.828125;, + 0.093750; 0.828125;, + 0.093750; 0.750000;, + 0.250000; 0.750000;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.750000;, + 0.250000; 0.750000;, + 0.250000; 0.656250;, + 0.500000; 0.656250;, + 0.000000; 0.828125;, + 0.000000; 0.921875;, + 0.093750; 0.921875;, + 0.093750; 0.828125;, + 0.250000; 0.750000;, + 0.500000; 0.750000;, + 0.500000; 0.656250;, + 0.250000; 0.656250;, + 0.500000; 0.968750;, + 0.250000; 0.968750;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.500000; 0.968750;, + 0.656250; 0.968750;, + 0.656250; 0.921875;, + 0.500000; 0.921875;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.750000;, + 0.500000; 0.750000;, + 0.750000; 0.921875;, + 0.750000; 0.828125;, + 0.656250; 0.828125;, + 0.656250; 0.921875;, + 0.500000; 0.828125;, + 0.656250; 0.828125;, + 0.656250; 0.750000;, + 0.500000; 0.750000;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.750000; 0.250000;, + 0.750000; 0.500000;, + 0.656250; 0.500000;, + 0.656250; 0.250000;, + 0.750000; 0.828125;, + 0.750000; 0.921875;, + 0.656250; 0.921875;, + 0.656250; 0.828125;, + 0.750000; 0.500000;, + 0.750000; 0.250000;, + 0.656250; 0.250000;, + 0.656250; 0.500000;, + 0.250000; 0.968750;, + 0.500000; 0.968750;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.750000;, + 0.250000; 0.750000;, + 0.000000; 0.921875;, + 0.000000; 0.828125;, + 0.093750; 0.828125;, + 0.093750; 0.921875;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.000000; 0.500000;, + 0.000000; 0.250000;, + 0.093750; 0.250000;, + 0.093750; 0.500000;, + 0.000000; 0.828125;, + 0.000000; 0.921875;, + 0.093750; 0.921875;, + 0.093750; 0.828125;, + 0.000000; 0.250000;, + 0.000000; 0.500000;, + 0.093750; 0.500000;, + 0.093750; 0.250000;, + 0.500000; 0.828125;, + 0.656250; 0.828125;, + 0.656250; 0.921875;, + 0.500000; 0.921875;, + 0.093750; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.921875;, + 0.093750; 0.921875;, + 0.093750; 0.921875;, + 0.093750; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.921875;, + 0.093750; 0.828125;, + 0.093750; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.828125;, + 0.656250; 0.921875;, + 0.656250; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.921875;, + 0.093750; 0.828125;, + 0.093750; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.828125;, + 0.656250; 0.921875;, + 0.656250; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.921875;, + 0.500000; 0.828125;, + 0.656250; 0.828125;, + 0.656250; 0.921875;, + 0.500000; 0.921875;, + 0.656250; 0.968750;, + 0.500000; 0.968750;, + 0.500000; 0.921875;, + 0.656250; 0.921875;, + 0.500000; 0.968750;, + 0.250000; 0.968750;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.250000; 0.250000;, + 0.500000; 0.250000;, + 0.500000; 0.093750;, + 0.250000; 0.093750;, + 0.250000; 0.093750;, + 0.500000; 0.093750;, + 0.500000; 0.250000;, + 0.250000; 0.250000;, + 0.656250; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.750000;, + 0.656250; 0.750000;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.750000;, + 0.500000; 0.750000;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.828125;, + 0.656250; 0.828125;, + 0.656250; 0.750000;, + 0.500000; 0.750000;, + 0.093750; 0.968750;, + 0.250000; 0.968750;, + 0.250000; 0.921875;, + 0.093750; 0.921875;, + 0.250000; 0.968750;, + 0.500000; 0.968750;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.500000; 0.656250;, + 0.250000; 0.656250;, + 0.250000; 0.500000;, + 0.500000; 0.500000;, + 0.093750; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.750000;, + 0.093750; 0.750000;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.750000;, + 0.250000; 0.750000;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.656250; 0.968750;, + 0.500000; 0.968750;, + 0.500000; 0.921875;, + 0.656250; 0.921875;, + 0.250000; 0.968750;, + 0.500000; 0.968750;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.500000; 0.250000;, + 0.500000; 0.500000;, + 0.656250; 0.500000;, + 0.656250; 0.250000;, + 0.656250; 0.250000;, + 0.656250; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.250000;, + 0.656250; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.750000;, + 0.656250; 0.750000;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.500000; 0.750000;, + 0.250000; 0.750000;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.093750; 0.968750;, + 0.250000; 0.968750;, + 0.250000; 0.921875;, + 0.093750; 0.921875;, + 0.500000; 0.968750;, + 0.250000; 0.968750;, + 0.250000; 0.921875;, + 0.500000; 0.921875;, + 0.250000; 0.968750;, + 0.093750; 0.968750;, + 0.093750; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.500000;, + 0.250000; 0.250000;, + 0.093750; 0.250000;, + 0.093750; 0.500000;, + 0.093750; 0.500000;, + 0.093750; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.500000;, + 0.093750; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.750000;, + 0.093750; 0.750000;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.250000; 0.750000;, + 0.500000; 0.750000;, + 0.500000; 0.921875;, + 0.250000; 0.921875;, + 0.250000; 0.828125;, + 0.500000; 0.828125;, + 0.250000; 0.828125;, + 0.093750; 0.828125;, + 0.093750; 0.750000;, + 0.250000; 0.750000;, + 0.250000; 0.656250;, + 0.093750; 0.656250;, + 0.093750; 0.500000;, + 0.250000; 0.500000;, + 0.500000; 0.656250;, + 0.500000; 0.500000;, + 0.656250; 0.500000;, + 0.656250; 0.656250;, + 0.500000; 0.250000;, + 0.500000; 0.093750;, + 0.656250; 0.093750;, + 0.656250; 0.250000;, + 0.093750; 0.250000;, + 0.093750; 0.093750;, + 0.250000; 0.093750;, + 0.250000; 0.250000;, + 0.093750; 0.250000;, + 0.250000; 0.250000;, + 0.250000; 0.093750;, + 0.093750; 0.093750;, + 0.250000; 0.656250;, + 0.250000; 0.500000;, + 0.093750; 0.500000;, + 0.093750; 0.656250;, + 0.656250; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.656250;, + 0.656250; 0.656250;, + 0.500000; 0.093750;, + 0.500000; 0.250000;, + 0.656250; 0.250000;, + 0.656250; 0.093750;, + 0.750000; 0.250000;, + 0.750000; 0.078125;, + 1.000000; 0.078125;, + 1.000000; 0.250000;, + 1.000000; 0.250000;, + 1.000000; 0.078125;, + 0.750000; 0.078125;, + 0.750000; 0.250000;, + 0.750000; 0.250000;, + 0.750000; 0.078125;, + 1.000000; 0.078125;, + 1.000000; 0.250000;, + 1.000000; 0.250000;, + 1.000000; 0.078125;, + 0.750000; 0.078125;, + 0.750000; 0.250000;, + 1.000000; 0.500000;, + 0.968750; 0.468750;, + 0.968750; 0.281250;, + 1.000000; 0.250000;, + 0.750000; 0.250000;, + 0.781250; 0.281250;, + 0.781250; 0.468750;, + 0.750000; 0.500000;, + 1.000000; 0.250000;, + 0.968750; 0.281250;, + 0.781250; 0.281250;, + 0.750000; 0.250000;, + 0.750000; 0.500000;, + 0.781250; 0.468750;, + 0.968750; 0.468750;, + 1.000000; 0.500000;, + 0.781250; 0.078125;, + 0.781250; 0.031250;, + 0.968750; 0.031250;, + 0.968750; 0.078125;, + 0.968750; 0.078125;, + 0.968750; 0.031250;, + 0.781250; 0.031250;, + 0.781250; 0.078125;, + 0.968750; 0.078125;, + 0.968750; 0.031250;, + 0.781250; 0.031250;, + 0.781250; 0.078125;, + 0.781250; 0.078125;, + 0.781250; 0.031250;, + 0.968750; 0.031250;, + 0.968750; 0.078125;, + 0.781250; 0.468750;, + 0.812500; 0.437500;, + 0.937500; 0.437500;, + 0.968750; 0.468750;, + 0.968750; 0.468750;, + 0.937500; 0.437500;, + 0.937500; 0.312500;, + 0.968750; 0.281250;, + 0.781250; 0.281250;, + 0.812500; 0.312500;, + 0.812500; 0.437500;, + 0.781250; 0.468750;, + 0.968750; 0.281250;, + 0.937500; 0.312500;, + 0.812500; 0.312500;, + 0.781250; 0.281250;, + 0.937500; 0.031250;, + 0.937500; 0.000000;, + 0.812500; 0.000000;, + 0.812500; 0.031250;, + 0.812500; 0.031250;, + 0.812500; 0.000000;, + 0.937500; 0.000000;, + 0.937500; 0.031250;, + 0.812500; 0.031250;, + 0.812500; 0.000000;, + 0.937500; 0.000000;, + 0.937500; 0.031250;, + 0.937500; 0.031250;, + 0.937500; 0.000000;, + 0.812500; 0.000000;, + 0.812500; 0.031250;, + 0.937500; 0.437500;, + 0.812500; 0.437500;, + 0.812500; 0.312500;, + 0.937500; 0.312500;, + 1.000000; 0.515625;, + 1.000000; 0.578125;, + 0.843750; 0.578125;, + 0.843750; 0.515625;, + 1.000000; 0.671875;, + 0.843750; 0.671875;, + 0.843750; 0.578125;, + 1.000000; 0.578125;, + 0.843750; 0.812500;, + 0.687500; 0.812500;, + 0.687500; 0.671875;, + 0.843750; 0.671875;, + 1.000000; 0.812500;, + 0.937500; 0.812500;, + 0.937500; 0.671875;, + 1.000000; 0.671875;, + 0.937500; 0.812500;, + 1.000000; 0.812500;, + 1.000000; 0.671875;, + 0.937500; 0.671875;, + 0.843750; 0.812500;, + 0.687500; 0.812500;, + 0.687500; 0.671875;, + 0.843750; 0.671875;, + 1.000000; 0.828125;, + 0.937500; 0.828125;, + 0.937500; 0.812500;, + 1.000000; 0.812500;, + 0.937500; 0.828125;, + 1.000000; 0.828125;, + 1.000000; 0.812500;, + 0.937500; 0.812500;, + 0.843750; 0.828125;, + 0.687500; 0.828125;, + 0.687500; 0.812500;, + 0.843750; 0.812500;, + 0.843750; 0.812500;, + 0.843750; 0.828125;, + 0.937500; 0.828125;, + 0.937500; 0.812500;, + 0.843750; 0.828125;, + 0.843750; 0.812500;, + 0.937500; 0.812500;, + 0.937500; 0.828125;, + 0.921875; 0.843750;, + 0.921875; 0.890625;, + 0.765625; 0.890625;, + 0.765625; 0.843750;, + 0.921875; 0.953125;, + 0.765625; 0.953125;, + 0.765625; 0.890625;, + 0.921875; 0.890625;, + 0.921875; 0.890625;, + 0.921875; 0.843750;, + 0.984375; 0.843750;, + 0.984375; 0.890625;, + 0.921875; 0.843750;, + 0.921875; 0.890625;, + 0.984375; 0.890625;, + 0.984375; 0.843750;, + 0.765625; 0.953125;, + 0.921875; 0.953125;, + 0.921875; 0.890625;, + 0.765625; 0.890625;, + 0.875000; 0.968750;, + 0.875000; 0.984375;, + 0.859375; 0.984375;, + 0.859375; 0.968750;, + 0.765625; 0.984375;, + 0.765625; 0.968750;, + 0.859375; 0.968750;, + 0.859375; 0.984375;, + 0.765625; 0.984375;, + 0.765625; 0.968750;, + 0.859375; 0.968750;, + 0.859375; 0.984375;, + 0.765625; 0.968750;, + 0.765625; 0.984375;, + 0.859375; 0.984375;, + 0.859375; 0.968750;, + 0.765625; 0.968750;, + 0.765625; 0.984375;, + 0.859375; 0.984375;, + 0.859375; 0.968750;, + 0.875000; 0.984375;, + 0.875000; 0.968750;, + 0.859375; 0.968750;, + 0.859375; 0.984375;, + 0.875000; 0.968750;, + 0.875000; 0.984375;, + 0.859375; 0.984375;, + 0.859375; 0.968750;, + 0.765625; 0.984375;, + 0.765625; 0.968750;, + 0.859375; 0.968750;, + 0.859375; 0.984375;, + 0.765625; 0.984375;, + 0.765625; 0.968750;, + 0.859375; 0.968750;, + 0.859375; 0.984375;, + 0.765625; 0.968750;, + 0.765625; 0.984375;, + 0.859375; 0.984375;, + 0.859375; 0.968750;, + 0.765625; 0.968750;, + 0.765625; 0.984375;, + 0.859375; 0.984375;, + 0.859375; 0.968750;, + 0.875000; 0.984375;, + 0.875000; 0.968750;, + 0.859375; 0.968750;, + 0.859375; 0.984375;, + 0.500000; 1.000000;, + 0.250000; 1.000000;, + 0.250000; 0.968750;, + 0.500000; 0.968750;, + 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.687500; 0.609375;, + 0.750000; 0.609375;, + 0.750000; 0.546875;, + 0.687500; 0.546875;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.750000; 0.546875;, + 0.687500; 0.546875;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.750000; 0.546875;, + 0.687500; 0.546875;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.750000; 0.546875;, + 0.687500; 0.546875;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.687500; 0.625000;, + 0.750000; 0.625000;, + 0.750000; 0.609375;, + 0.687500; 0.609375;, + 0.750000; 0.625000;, + 0.687500; 0.625000;, + 0.687500; 0.609375;, + 0.750000; 0.609375;, + 0.250000; 0.500000;, + 0.500000; 0.500000;, + 0.500000; 0.250000;, + 0.250000; 0.250000;, + 0.500000; 1.000000;, + 0.250000; 1.000000;, + 0.250000; 0.968750;, + 0.500000; 0.968750;, + 0.250000; 1.000000;, + 0.500000; 1.000000;, + 0.500000; 0.968750;, + 0.250000; 0.968750;, + 0.250000; 1.000000;, + 0.500000; 1.000000;, + 0.500000; 0.968750;, + 0.250000; 0.968750;; + } //End of Cube_000 UV Coordinates + } //End of Cube_000 Mesh + } //End of Cube_002 +} //End of Root Frame diff --git a/ufos/ufos/models/ufo_0.png b/ufos/ufos/models/ufo_0.png new file mode 100644 index 0000000..1c3adc1 Binary files /dev/null and b/ufos/ufos/models/ufo_0.png differ diff --git a/ufos/ufos/models/ufo_1.png b/ufos/ufos/models/ufo_1.png new file mode 100644 index 0000000..12fbf48 Binary files /dev/null and b/ufos/ufos/models/ufo_1.png differ diff --git a/ufos/ufos/models/ufo_2.png b/ufos/ufos/models/ufo_2.png new file mode 100644 index 0000000..698e76d Binary files /dev/null and b/ufos/ufos/models/ufo_2.png differ diff --git a/ufos/ufos/models/ufo_3.png b/ufos/ufos/models/ufo_3.png new file mode 100644 index 0000000..adc46c7 Binary files /dev/null and b/ufos/ufos/models/ufo_3.png differ diff --git a/ufos/ufos/models/ufo_4.png b/ufos/ufos/models/ufo_4.png new file mode 100644 index 0000000..ea9fcb9 Binary files /dev/null and b/ufos/ufos/models/ufo_4.png differ diff --git a/ufos/ufos/models/ufo_5.png b/ufos/ufos/models/ufo_5.png new file mode 100644 index 0000000..5d6132f Binary files /dev/null and b/ufos/ufos/models/ufo_5.png differ diff --git a/ufos/ufos/models/ufo_6.png b/ufos/ufos/models/ufo_6.png new file mode 100644 index 0000000..c9d6c17 Binary files /dev/null and b/ufos/ufos/models/ufo_6.png differ diff --git a/ufos/ufos/models/ufo_7.png b/ufos/ufos/models/ufo_7.png new file mode 100644 index 0000000..ba0a606 Binary files /dev/null and b/ufos/ufos/models/ufo_7.png differ diff --git a/ufos/ufos/models/ufo_8.png b/ufos/ufos/models/ufo_8.png new file mode 100644 index 0000000..747412d Binary files /dev/null and b/ufos/ufos/models/ufo_8.png differ diff --git a/ufos/ufos/textures/ufos_box.png b/ufos/ufos/textures/ufos_box.png new file mode 100644 index 0000000..22390d9 Binary files /dev/null and b/ufos/ufos/textures/ufos_box.png differ diff --git a/ufos/ufos/textures/ufos_furnace_front.png b/ufos/ufos/textures/ufos_furnace_front.png new file mode 100644 index 0000000..3c931e3 Binary files /dev/null and b/ufos/ufos/textures/ufos_furnace_front.png differ diff --git a/ufos/ufos/textures/ufos_furnace_front_active.png b/ufos/ufos/textures/ufos_furnace_front_active.png new file mode 100644 index 0000000..dd288fb Binary files /dev/null and b/ufos/ufos/textures/ufos_furnace_front_active.png differ diff --git a/ufos/ufos/textures/ufos_inventory.png b/ufos/ufos/textures/ufos_inventory.png new file mode 100644 index 0000000..e7f46bc Binary files /dev/null and b/ufos/ufos/textures/ufos_inventory.png differ -- cgit v1.2.3